Skip to content

Commit 28189f2

Browse files
committed
init
1 parent 0439b82 commit 28189f2

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
composer.phar
2+
composer.lock
3+
/vendor/
4+
/.idea/
5+
.phpunit.result.cache

composer.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "lextira/larvel-formrequest-singleton",
3+
"description": "Use Laravel's excellent FormRequest as Singleton.",
4+
"license": "MIT",
5+
"require": {
6+
"php" : "^7.0",
7+
"laravel/framework": "^6.0"
8+
},
9+
"autoload": {
10+
"psr-4" : {
11+
"Lextira\\FormRequestSingleton\\" : "src/"
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)