-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.54 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
{
"name": "winter/cli",
"description": "A command-line helper tool for managing Winter CMS installations.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Ben Thomson",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.0",
"symfony/console": "^5.4.14",
"symfony/process": "^5.4.14",
"guzzlehttp/guzzle": "^7.5.0",
"http-interop/http-factory-guzzle": "^1.2.0",
"knplabs/github-api": "^3.8.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.1",
"jetbrains/phpstorm-stubs": "dev-master"
},
"autoload": {
"psr-4": {
"Winter\\Cli\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"composer bin box config minimum-stability dev",
"composer bin box config prefer-stable true",
"composer bin box config platform.php 8.0.0",
"composer bin box require --dev --no-progress humbug/box"
],
"post-update-cmd": [
"composer bin box config minimum-stability dev",
"composer bin box config prefer-stable true",
"composer bin box config platform.php 8.0.0",
"composer bin box require --dev --no-progress humbug/box"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"platform": {
"php": "8.0.0"
}
}
}