-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
90 lines (90 loc) · 2.73 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
{
"name": "bitexpert/sylius-force-login-plugin",
"description": "Sylius Force Login Plugin",
"type": "sylius-plugin",
"license": "MIT",
"authors": [
{
"name": "Stephan Hochdörfer",
"email": "S.Hochdoerfer@bitExpert.de",
"homepage": "http://www.bitExpert.de"
}
],
"require": {
"php": "^8.2",
"sylius/sylius": "^2.0"
},
"require-dev": {
"captainhook/captainhook": "^5.19",
"captainhook/plugin-composer": "^5.3",
"madewithlove/license-checker": "^1.6",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^11.5",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"sylius-labs/coding-standard": "^4.2",
"symfony/browser-kit": "^7.0",
"symfony/debug-bundle": "^7.0",
"symfony/dotenv": "^7.0",
"symfony/flex": "^2.2.2",
"symfony/intl": "^7.0",
"symfony/web-profiler-bundle": "^7.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"captainhook/plugin-composer": true,
"dealerdirect/phpcodesniffer-composer-installer": false,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"symfony/flex": true
}
},
"extra": {
"symfony": {
"require": "^7.0"
}
},
"autoload": {
"psr-4": {
"BitExpert\\SyliusForceCustomerLoginPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\BitExpert\\SyliusForceCustomerLoginPlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"scripts": {
"post-install-cmd": [
"php bin/create_node_symlink.php"
],
"post-update-cmd": [
"php bin/create_node_symlink.php"
],
"post-create-project-cmd": [
"php bin/create_node_symlink.php"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script"
},
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/ecs check",
"cs-fix": "vendor/bin/ecs check --fix",
"check-license": "vendor/bin/license-checker check",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
}
}