forked from lazervel/lazervel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (66 loc) · 1.83 KB
/
composer.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "lazervel/lazervel",
"description": "The fast web skeleton application for the Lazervel framework.",
"type": "project",
"keywords": ["lazervel", "framework", "php"],
"license": "MIT",
"autoload": {
"files": [
"helpers/classmap.php",
"helpers/helpers.php"
],
"psr-4": {
"App\\": "app/",
"CrateDB\\Seeders\\": "cratedb/seeders/",
"Database\\Seeders\\": "database/seeders/"
}
},
"require": {
},
"authors": [
{
"name": "Shahzada Modassir",
"email": "[email protected]",
"homepage": "https://github.com/shahzadamodassir"
},
{
"name": "Shahzadi Afsara",
"email": "[email protected]",
"homepage": "https://github.com/lazervel"
}
],
"funding": [
{
"type": "Opencollective",
"url": "https://opencollective.com/shahzadamodassir"
},
{
"type": "Github",
"url": "https://github.com/shahzadamodassir"
},
{
"type": "Patreon",
"url": "https://patreon.com/shahzadamodassir"
}
],
"extra": {
"lazervel": {
"dont-discover": []
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"is_dir('database/export') || mkdir('database/export');\"",
"@php -r \"file_exists('database/export/export.sql') || touch('database/export/export.sql');\""
],
"post-create-project-cmd": [
"@php lazervel key:generate --force",
"@php -r \"is_dir('database/export') || mkdir('database/export');\"",
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php -r \"file_exists('database/export/export.sql') || touch('database/export/export.sql');\""
]
},
"minimum-stability": "stable",
"prefer-stable": true
}