-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
composer.json
59 lines (59 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
{
"name": "jikan-me/jikan",
"description": "Jikan is an unofficial MyAnimeList API",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Irfan",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jikan\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"JikanTest\\": [
"test/JikanTest"
]
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"fabpot/goutte": "^4.0"
},
"require-dev": {
"brianium/paratest": "^6.4.1",
"doctrine/collections": "^1.5",
"friendsofphp/php-cs-fixer": "^3.8",
"php-parallel-lint/php-parallel-lint": "^1.3",
"jikan-me/jikan-fixtures": "dev-master",
"phpro/grumphp": "^1.7.0",
"phpunit/phpunit": "~9.0",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"link-fixtures": [
"git clone https://github.com/jikan-me/jikan-fixtures.git ../jikan-fixtures || git -C ../jikan-fixtures reset --hard origin/master",
"rm -rf vendor/jikan-me/jikan-fixtures",
"composer config repositories.fixtures path ../jikan-fixtures",
"composer update jikan-me/jikan-fixtures",
"composer config repositories.fixtures --unset"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true
}
},
"repositories": {
}
}