-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 2.09 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": "synolia/sylius-admin-oauth-plugin",
"type": "sylius-plugin",
"description": "Oauth plugin for Sylius admin.",
"keywords": [
"sylius",
"sylius-plugin"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.1",
"knpuniversity/oauth2-client-bundle": "^2.15",
"league/oauth2-google": "^4.0",
"sylius/sylius": "^1.10",
"thenetworg/oauth2-azure": "^2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.46.0",
"friendsoftwig/twigcs": "6.4.0",
"j13k/yaml-lint": "1.1.5",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phpmd/phpmd": "2.15.0",
"phpro/grumphp": "2.4.0",
"phpstan/extension-installer": "1.3.1",
"phpstan/phpstan": "1.10.52",
"phpstan/phpstan-doctrine": "1.3.53",
"phpstan/phpstan-phpunit": "1.3.15",
"phpstan/phpstan-strict-rules": "1.5.2",
"phpstan/phpstan-webmozart-assert": "1.2.4",
"phpunit/phpunit": "10.5.5",
"povils/phpmnd": "3.3.0",
"rector/rector": "0.18.13",
"seld/jsonlint": "1.10.1",
"squizlabs/php_codesniffer": "3.8.0",
"sylius-labs/coding-standard": "4.3.1",
"symfony/browser-kit": "6.4.0",
"symfony/debug-bundle": "6.4.0",
"symfony/dotenv": "6.4.2",
"webmozart/assert": "1.11.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/thanks": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Synolia\\SyliusAdminOauthPlugin\\": "src/",
"Synolia\\Tests\\SyliusAdminOauthPlugin\\": "tests/"
}
},
"prefer-stable": true,
"scripts": {
"fix": "php-cs-fixer fix --config=dev/.php-cs-fixer.php",
"grumphp": "grumphp run --ansi",
"phpstan": "phpstan analyse -c dev/phpstan.neon --ansi",
"phpunit": "composer phpunit"
}
}