Skip to content

Commit e2d8f35

Browse files
Init a blank project
0 parents  commit e2d8f35

File tree

3 files changed

+5600
-0
lines changed

3 files changed

+5600
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "plin-code/laravel-clean-architecture",
3+
"description": "Laravel package for generating Clean Architecture structure",
4+
"type": "library",
5+
"require": {
6+
"laravel/framework": "^12.0",
7+
"illuminate/console": "*"
8+
},
9+
"license": "MIT",
10+
"autoload": {
11+
"psr-4": {
12+
"PlinCode\\LaravelCleanArchitecture\\": "src/"
13+
}
14+
},
15+
"authors": [
16+
{
17+
"name": "Daniele Barbaro",
18+
"email": "barbaro.daniele@gmail.com"
19+
}
20+
],
21+
"minimum-stability": "dev"
22+
}

0 commit comments

Comments
 (0)