Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit 3f349a2

Browse files
committed
chore: update packages
1 parent 5f8e5ba commit 3f349a2

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

composer.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
}
2121
],
2222
"require": {
23-
"leafs/aloe": "*",
23+
"leafs/aloe": "dev-master",
2424
"illuminate/console": "^8.75",
2525
"leafs/blade": "*",
26-
"leafs/mvc-core": "*",
26+
"leafs/mvc-core": "dev-main",
2727
"leafs/leaf": "^3.3",
2828
"leafs/logger": "*",
2929
"leafs/cors": "*",
@@ -37,31 +37,45 @@
3737
"psr-4": {
3838
"Lib\\": "lib/",
3939
"App\\": "app/",
40+
"Tests\\": "tests/",
4041
"Config\\": "config/",
4142
"App\\Http\\": "app/http/",
4243
"App\\Jobs\\": "app/jobs/",
44+
"App\\Lang\\": "app/lang/",
45+
"App\\Mail\\": "app/mail/",
4346
"App\\Views\\": "app/views/",
4447
"App\\Utils\\": "app/utils/",
48+
"App\\Events\\": "app/events/",
4549
"App\\Models\\": "app/models/",
4650
"App\\Workers\\": "app/workers/",
4751
"App\\Console\\": "app/console/",
4852
"App\\Scripts\\": "app/scripts/",
4953
"App\\Helpers\\": "app/helpers/",
54+
"App\\Channels\\": "app/channels/",
5055
"App\\Services\\": "app/services/",
56+
"App\\Middleware\\": "app/middleware/",
57+
"App\\Components\\": "app/components/",
5158
"App\\Controllers\\": "app/controllers/",
59+
"App\\Notifications\\": "app/notifications/",
5260
"App\\Database\\Seeds\\": "app/database/seeds/",
5361
"App\\Database\\Schema\\": "app/database/schema/",
5462
"App\\Database\\Factories\\": "app/database/factories/"
5563
}
5664
},
5765
"config": {
5866
"optimize-autoloader": true,
59-
"sort-packages": false
67+
"sort-packages": false,
68+
"allow-plugins": {
69+
"pestphp/pest-plugin": true
70+
}
6071
},
6172
"scripts": {
6273
"post-root-package-install": [
6374
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
6475
"@php -r \"unlink('README.MD'); rename('README2.MD', 'README.MD');\""
76+
],
77+
"post-create-project-cmd": [
78+
"@php leaf key:generate"
6579
]
6680
},
6781
"minimum-stability": "dev",

0 commit comments

Comments
 (0)