We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit e2d8f35Copy full SHA for e2d8f35
.gitignore
@@ -0,0 +1 @@
1
+/vendor/
composer.json
@@ -0,0 +1,22 @@
+{
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