-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
112 lines (110 loc) · 3.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "shapecode/fut-api",
"description": "FIFA WebApp API",
"keywords": [
"fut",
"fifa",
"api",
"fifa20"
],
"type": "library",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/shapecode/fut-api",
"support": {
"email": "[email protected]",
"issues": "https://github.com/shapecode/fut-api/issues",
"source": "https://github.com/shapecode/fut-api/releases",
"wiki": "https://github.com/shapecode/fut-api/wiki"
},
"authors": [
{
"name": "Shapecode",
"homepage": "https://shapecode.de",
"email": "[email protected]"
}
],
"require": {
"php": "~7.3",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/yaml": "^3.4|^4.0",
"symfony/translation": "^3.4|^4.0",
"symfony/stopwatch": "^3.4|^4.0",
"symfony/options-resolver": "^3.4|^4.0",
"webmozart/assert": "^1.5",
"nesbot/carbon": "^2.25",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"php-http/logger-plugin": "^1.0",
"php-http/stopwatch-plugin": "^1.0",
"php-http/discovery": "^1.4",
"php-http/client-common": "^2.0",
"php-http/message": "^1.7",
"php-http/httplug": "^2.0",
"php-http/promise": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/guzzle6-adapter": "^2.0",
"guzzlehttp/psr7": "^1.6",
"guzzlehttp/promises": "^1.3",
"guzzlehttp/guzzle": "^6.4",
"nyholm/psr7": "^1.2"
},
"require-dev": {
"doctrine/coding-standard": "^6.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "^0.11.16",
"phpstan/phpstan-deprecation-rules": "^0.11.2",
"phpstan/phpstan-phpunit": "^0.11.2",
"phpstan/phpstan-strict-rules": "^0.11.1",
"maglnet/composer-require-checker": "^2.0",
"phpunit/phpunit": "^8.4",
"symfony/var-dumper": "^4.3",
"symfony/dotenv": "^4.3",
"icanhazstring/composer-unused": "^0.6.2"
},
"autoload": {
"psr-4": {
"Shapecode\\FUT\\Client\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Shapecode\\FUT\\Client\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@crc",
"@cs-fix",
"@cs-check",
"@phpstan",
"@phpunit"
],
"check-build": [
"@crc",
"@cs-check",
"@phpstan",
"@phpunit"
],
"phpstan": "./vendor/bin/phpstan analyse ./src",
"crc": "./vendor/bin/composer-require-checker --config-file=./composer-require-checker.json",
"phpunit": "./vendor/bin/phpunit",
"cs-fix": "./vendor/bin/phpcbf",
"cs-check": "./vendor/bin/phpcs -s"
},
"extra": {
"branch-alias": {
"dev-master": "20.0-dev"
},
"unused": [
"nyholm/psr7"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}