-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
56 lines (56 loc) · 1.36 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
{
"name": "shopware/psh",
"description": "A build tool written in PHP utilizing sh scripts",
"type": "application",
"bin": ["psh"],
"autoload": {
"psr-4": {
"Shopware\\Psh\\": "src"
},
"files": [
"resource/version.php"
]
},
"autoload-dev": {
"psr-4": {
"Shopware\\Psh\\Test\\": "tests"
}
},
"require": {
"php": "^7.2|^8.0",
"ext-dom": "*",
"symfony/finder": "^4.4|^5.0",
"symfony/process": "^4.4|^5.0",
"symfony/filesystem": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0",
"league/climate": "^3.6",
"khill/php-duration": "^1.0",
"vlucas/phpdotenv": "^5.2",
"symfony/config": "^4.4|^5.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^2",
"phpunit/phpunit": "^8 || ^9",
"bamarni/composer-bin-plugin": "^1.4"
},
"license": "MIT",
"authors": [
{
"name": "Jan Pietrzyk",
"email": "[email protected]"
}
],
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.2.0"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
},
"minimum-stability": "stable"
}