-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.65 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
{
"name": "mmz-srf/srf-polis-bundle",
"type": "symfony-bundle",
"description": "API client for SRG SSR Polis API",
"license": "MIT",
"authors": [
{
"name": "Pascal von Büren",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/mmz-srf/srf-polis-bundle/issues"
},
"require": {
"php": ">=8.3",
"benjaminfavre/oauth2-http-client": "^3.0",
"symfony/framework-bundle": "^7.1",
"symfony/http-client": "^7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"SRF\\PolisBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SRF\\PolisBundle\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.3"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"cs-fix": [
"vendor/bin/php-cs-fixer fix --verbose"
],
"analyse": [
"vendor/bin/phpstan analyse --memory-limit=-1 --configuration phpstan.neon"
],
"check": [
"@cs-fix",
"@analyse"
]
}
}