-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.15 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
{
"name": "darkorsa/cordo-gateway",
"description": "Gateway for API calls",
"license": "MIT",
"require": {
"ext-redis": "^5.0",
"cache/redis-adapter": "^1.1",
"cache/taggable-cache": "^1.1",
"filp/whoops": "^2.3",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/psr7": "^1.7",
"hassankhan/config": "^2.0",
"http-interop/http-factory-guzzle": "^1.0",
"laminas/laminas-mail": "^2.10",
"los/los-rate-limit": "^3.1",
"middlewares/client-ip": "^2.0",
"middlewares/filesystem": "^2.0",
"middlewares/image-manipulation": "^2.0",
"monolog/monolog": "^2.1",
"myclabs/php-enum": "^1.7",
"nikic/fast-route": "^1.3",
"php-di/php-di": "^6.2",
"php-http/cache-plugin": "1.7.2",
"php-http/curl-client": "^2.1",
"php-http/discovery": "^1.7",
"php-middleware/log-http-messages": "^4.0",
"psr/http-server-middleware": "^1.0",
"relay/relay": "^2.1",
"rollbar/rollbar": "^2.1",
"symfony/dotenv": "^5.0",
"tuupola/cors-middleware": "^1.1"
},
"require-dev": {
"nunomaduro/phpinsights": "^1.7",
"phpstan/phpstan": "^0.12.94",
"symfony/var-dumper": "^4.2"
},
"autoload": {
"psr-4": {
"App\\": "app",
"Cordo\\Gateway\\Core\\": "core"
},
"files": [
"helpers/paths.php",
"helpers/files.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse -l max -c phpstan.neon app core",
"insights": "phpinsights -v",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 app/",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 app/"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4"
}
}
}