-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.31 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
{
"name": "ipunkt/rancherize",
"description": "rancherize your development workflow",
"keywords": ["rancher", "docker"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sven Speckmaier",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Rancherize\\": "app/",
"RancherizeTest\\": "tests/"
}
},
"bin": ["rancherize"],
"require": {
"symfony/console": "^3.1",
"symfony/event-dispatcher": "^3.1",
"symfony/yaml": "^3.1",
"pimple/pimple": "^3.0",
"symfony/process": "^3.1",
"ipunkt/rancherize-php53": "^1.4.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.6",
"mockery/mockery": "^0.9.9"
},
"suggest": {
"ipunkt/rancherize-publish-traefik-rancher": "Set rancher labels for the traefik rancher backend",
"ipunkt/rancherize-ecr": "Publish docker images to an Amazon ECR repository",
"ipunkt/rancherize-blueprint-php-cli": "PHP command line interface blueprint with cron labels and shell execution",
"ipunkt/rancherize-backup-storagebox": "Adding backup commands for use with a Hetzner Storagebox service",
"ipunkt/rancherize-php72": "Enable php version 7.2"
}
}