-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.28 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
{
"name": "shopware/release-schedule",
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"composer-runtime-api": "*",
"async-aws/s3": "^2.2",
"knplabs/github-api": "^3.0",
"nyholm/psr7": "^1.8",
"symfony/console": "*",
"symfony/http-client": "7.*",
"symfony/process": "*"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Shopware\\ReleaseSchedule\\": "src/"
}
},
"scripts": {
"build-phar": [
"wget -q -O box.phar \"$(curl -s https://api.github.com/repos/box-project/box/releases/latest | jq '.assets[] | select(.name == \"box.phar\") | .browser_download_url' -r)\"",
"@php box.phar compile",
"rm box.phar"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.*"
}
}
}