Skip to content

Commit 5e5f513

Browse files
committed
feat: add ActionTrait and update autoload paths in composer.json
1 parent 63d117e commit 5e5f513

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
"minimum-stability": "stable",
66
"autoload": {
77
"psr-4": {
8-
"CodeFusion\\": "_bkp_src/"
8+
"CodeFusion\\": "src/"
99
}
1010
},
1111
"autoload-dev": {
1212
"psr-4": {
1313
"CodeFusion\\Tests\\": "tests/",
14-
"Database\\Factories\\": "_bkp_database/factories",
14+
"Database\\Factories\\": "database/factories",
1515
"App\\": "app"
1616
}
1717
},
@@ -44,7 +44,7 @@
4444
"lint": "pint",
4545
"test:refactor": "rector --dry-run",
4646
"test:lint": "pint --test",
47-
"test:types": "phpstan analyse --ansi _bkp_src/",
47+
"test:types": "phpstan analyse --ansi src/",
4848
"test:unit": "pest --colors=always --coverage --min=100 --compact",
4949
"test:debug": "laradumps check --dir=src,tests --text=dump,dd",
5050
"test": [

database/factories/.gitignore

Whitespace-only changes.

src/Controller/Traits/ActionTrait.php

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
trait ActionTrait {}

0 commit comments

Comments
 (0)