-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.99 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.99 KB
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
{
"name": "shopsys/maker",
"type": "library",
"description": "Set of Symfony makers for generating code within Shopsys Platform projects",
"keywords": [
"Shopsys Platform",
"SSFW",
"maker",
"code generator"
],
"license": "proprietary",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"autoload": {
"psr-4": {
"Shopsys\\MakerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\MakerBundle\\": "tests/"
}
},
"require": {
"php": "^8.5",
"doctrine/collections": "^2.6",
"doctrine/data-fixtures": "^2.2",
"doctrine/dbal": "^4.4",
"doctrine/orm": "^3.6",
"doctrine/persistence": "^4.1",
"prezent/doctrine-translatable": "^5.0",
"ramsey/uuid": "^4.3.1",
"shopsys/form-types-bundle": "19.0.x-dev",
"shopsys/framework": "19.0.x-dev",
"shopsys/migrations": "19.0.x-dev",
"shopsys/plugin-interface": "19.0.x-dev",
"symfony/console": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/filesystem": "^7.4",
"symfony/framework-bundle": "^7.4",
"symfony/http-kernel": "^7.4",
"symfony/maker-bundle": "^1.62",
"symfony/process": "^7.4",
"symfony/service-contracts": "^3.5",
"symfony/yaml": "^7.4"
},
"require-dev": {
"phpstan/phpstan": "^2.1.16",
"phpstan/phpstan-doctrine": "^2.0.3",
"phpstan/phpstan-phpunit": "^2.0.6",
"phpstan/phpstan-symfony": "^2.0.6",
"phpunit/phpunit": "^12.5",
"shopsys/coding-standards": "19.0.x-dev"
},
"extra": {
"symfony": {
"require": "^7.4",
"docker": false
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}