-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
66 lines (66 loc) · 1.57 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "barryvanveen/lastfm",
"type": "library",
"description": "Last.fm API client for PHP 7+",
"keywords": [
"lastfm",
"last.fm",
"api",
"client",
"php7",
"laravel",
"laravel5",
"service provider"
],
"homepage": "https://github.com/barryvanveen/lastfm",
"license": "MIT",
"authors": [
{
"name": "Barry van Veen",
"email": "barryvanveen@gmail.com",
"homepage": "https://barryvanveen.nl",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"fig/http-message-util": "^1.1",
"guzzlehttp/guzzle": "^6.5.6 || ^7.4.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8.0",
"phpunit/phpunit": "^9.0",
"rregeer/phpunit-coverage-check": "^0.3.1"
},
"autoload": {
"psr-4": {
"Barryvanveen\\Lastfm\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "vendor/bin/php-cs-fixer fix --dry-run",
"fix-style": "vendor/bin/php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Barryvanveen\\Lastfm\\LastfmServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"support": {
"issues": "https://github.com/barryvanveen/lastfm/issues"
}
}