-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 986 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 986 Bytes
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
{
"name": "shopsys/cli",
"type": "project",
"description": "Shopsys CLI - Command-line tool for configuring new Shopsys Platform projects",
"license": "MIT",
"bin": ["bin/shopsys"],
"autoload": {
"psr-4": {
"Shopsys\\Cli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Cli\\": "tests/"
}
},
"require": {
"php": "^8.5",
"commerceguys/intl": "^2.0",
"symfony/config": "^7.4",
"symfony/console": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/filesystem": "^7.4",
"symfony/finder": "^7.4",
"symfony/process": "^7.4",
"symfony/yaml": "^7.4",
"twig/twig": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5",
"phpstan/phpstan": "^2.1"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
}
}