forked from Kunstmaan/spaceport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 887 Bytes
/
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
{
"name": "kunstmaan/spaceport",
"description": "Commandline tool to manage the Kunstmaan Docker development environment",
"keywords": ["kunstmaan", "docker", "cli", "php"],
"license": "MIT",
"authors": [
{
"name": "Kunstmaan Team",
"homepage": "http://labs.kunstmaan.be"
}
],
"autoload": {
"psr-4": { "Spaceport\\": "src/Spaceport/" }
},
"require": {
"php": ">=8.0",
"symfony/console": "^5.0",
"twig/twig": "^3.0",
"twig/extra-bundle": "*",
"symfony/yaml": "^5.0",
"symfony/process": "^5.0",
"symfony/debug-bundle": "5.4.*",
"ext-posix": "*"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"bin": [
"spaceport"
],
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}