-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 940 Bytes
/
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
{
"name": "animenl/api-client",
"description": "PHP API Client for animecon nl",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4|^8.0",
"guzzlehttp/guzzle": "^7.0",
"psr/cache": "^1.0@dev",
"symfony/cache": "^5.2",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"AnimeCon\\Api\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AnimeCon\\Api\\Client\\Test\\": "test/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"nikic/php-parser": "^4.6",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpmd/phpmd": "^2.10",
"phpro/grumphp": "^1.4",
"phpstan/phpstan": "^0.12.94",
"phpunit/phpunit": "^9.2"
}
}