-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 966 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
{
"name": "x3tech/laravel-shipper",
"description": "Integrate Docker into your Laravel development workflow",
"version": "0.5.0",
"type": "library",
"keywords": [ "laravel", "artisan", "docker" ],
"homepage": "https://github.com/3onyc/laravel-shipper",
"time": "2015-06-12",
"license": "MIT",
"authors": [{
"name": "3ony",
"email": "[email protected]",
"homepage": "https://github.com/3onyc",
"role": "Developer"
}],
"require": {
"php": ">=5.3.0",
"symfony/yaml": "~2.3",
"symfony/process": "~2.3",
"illuminate/support": "~4.0 | ~5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"x3tech\\LaravelShipper\\": "src/",
"x3tech\\LaravelShipper\\Test\\": "test/unit/"
},
"files": [
"src/init.php"
]
}
}