Skip to content

Commit ae74d0d

Browse files
committed
Init commit
0 parents  commit ae74d0d

File tree

5 files changed

+1471
-0
lines changed

5 files changed

+1471
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea/
2+
vendor/
3+
.DS_Store

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "mcmatters/laravel-route-commands",
3+
"license": "MIT",
4+
"authors": [
5+
{
6+
"name": "Dmitry Borzyonok",
7+
"email": "dima.matters@gmail.com"
8+
}
9+
],
10+
"require": {
11+
"illuminate/support": "5.*",
12+
"illuminate/routing": "5.*",
13+
"illuminate/console": "5.*"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"McMatters\\LaravelRouteCommands\\": "src/"
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)