-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.62 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
{
"name": "boogiebaeren/contao-google-sso-bundle",
"description": "",
"homepage": "https://boogie-baeren.de",
"type": "contao-bundle",
"license": "MIT",
"authors": [
{
"name": "Felix Schnabel",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4",
"google/apiclient": "^2.15",
"ext-json": "*"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"contao/easy-coding-standard": "^4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"BoogieBaeren\\ContaoGoogleSsoBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "BoogieBaeren\\ContaoGoogleSsoBundle\\ContaoManager\\Plugin",
"google/apiclient-services": [
"Oauth2"
]
},
"archive": {
"exclude": [
"vendor",
".idea",
".env.local",
"ecs.php"
]
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao/manager-plugin": true
},
"archive-format": "zip"
},
"scripts": {
"pre-autoload-dump": "Google\\Task\\Composer::cleanup",
"cs-fixer": "vendor/bin/ecs check src/ --fix",
"zip": "composer archive",
"check-style": "vendor/bin/ecs check src --no-interaction --ansi",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit"
}
}