-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 762 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 762 Bytes
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
{
"name": "sprak3000/anime-news-network-data-api",
"description": "A PHP client library for Anime News Network data",
"authors": [
{
"name": "Luis Cruz",
"email": "sprak3000+github@gmail.com"
}
],
"require": {
"php": "^8.3",
"guzzlehttp/guzzle": "7.9.3",
"guzzlehttp/guzzle-services": "1.4.2"
},
"require-dev": {
"ergebnis/composer-normalize": "2.47.0",
"phpunit/phpunit": "12.5.22",
"squizlabs/php_codesniffer": "3.7.2",
"phpstan/phpstan": "2.1.20"
},
"autoload": {
"psr-4": {
"sprak3000\\AnimeNewsNetworkDataAPI\\": "src",
"sprak3000\\AnimeNewsNetworkDataAPI\\Test\\": "test"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}