-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.77 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
{
"name": "shopsys/administration",
"type": "library",
"description": "Administration interface for the Shopsys Platform",
"keywords": ["Shopsys Platform", "SSFW", "admin", "administration", "admin panel"],
"license": "proprietary",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"autoload": {
"psr-4": {
"Shopsys\\AdministrationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\AdministrationBundle\\": "tests/"
}
},
"require": {
"php": "^8.3",
"shopsys/form-types-bundle": "dev-mg-admin-package as 15.0.x-dev",
"shopsys/framework": "dev-mg-admin-package as 15.0.x-dev",
"shopsys/migrations": "dev-mg-admin-package as 15.0.x-dev",
"shopsys/plugin-interface": "dev-mg-admin-package as 15.0.x-dev",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/form": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/routing": "^5.4",
"symfony/translation": "^5.4",
"twig/twig": "^3.5.0"
},
"require-dev": {
"phpstan/phpstan": "^1.6.8",
"phpstan/phpstan-doctrine": "^1.3.4",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-symfony": "^1.1.8",
"phpunit/phpunit": "^9.5.20",
"shopsys/coding-standards": "dev-mg-admin-package as 15.0.x-dev"
},
"extra": {
"symfony": {
"require": "^5.4",
"docker": false
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}