-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.02 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "luxid/framework",
"description": "Starter project for Luxid Framework",
"type": "project",
"license": "MIT",
"keywords": [
"framework",
"starter",
"luxid",
"php"
],
"require": {
"php": "^8.0",
"luxid/engine": "^0.7.1",
"luxid/nova": "^0.1.1",
"luxid/rocket": "^0.1.8",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Luxid\\Framework\\": "config/"
}
},
"extra": {
"luxid": {
"providers": [
"Luxid\\Haven\\Providers\\HavenServiceProvider"
],
"commands": {
"haven:install": "Luxid\\Haven\\Console\\InstallCommand"
}
}
},
"authors": [
{
"name": "Jhay",
"email": "jhay@luxid.dev"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-create-project-cmd": [
"php -r \"if (file_exists('.env.example') && !file_exists('.env')) copy('.env.example', '.env');\"",
"Luxid\\Framework\\Kernel::postCreateProject"
]
}
}