Skip to content

Commit 11202c5

Browse files
committed
update composer.json
1 parent acdaa53 commit 11202c5

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

composer.json

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,37 @@
11
{
22
"name": "daverdalas/laravel-post-deploy-commands",
3+
"description": "Create command files that will be run once so that you don't have to remember about it.",
4+
"keywords": [
5+
"deploy",
6+
"continuous-delivery",
7+
"commands",
8+
"migrations",
9+
"laravel"
10+
],
11+
"license": "MIT",
312
"authors": [
413
{
514
"name": "Piotr Suchanek",
615
"email": "hunterdaver@gmail.com"
716
}
817
],
9-
"minimum-stability": "dev",
10-
"require": {},
18+
"require": {
19+
"php": ">=5.5",
20+
"illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*",
21+
"illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*"
22+
},
23+
"autoload": {
24+
"psr-4": {
25+
"DaverDalas\\LaravelPostDeployCommands\\": "src"
26+
}
27+
},
1128
"extra": {
1229
"laravel": {
1330
"providers": [
1431
"DaverDalas\\LaravelPostDeployCommands\\ServiceProvider"
1532
]
1633
}
17-
}
34+
},
35+
"minimum-stability": "dev",
36+
"prefer-stable": true
1837
}

0 commit comments

Comments
 (0)