-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.47 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.47 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "wardvisual/warvilphp",
"description": "A lightweight PHP framework inspired by Laravel",
"type": "project",
"version": "0.1.0-alpha",
"license": "MIT",
"authors": [
{
"name": "Edward Fernandez",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"app\\": "app/"
},
"files": [
"app/core/utils/Helpers.php"
],
"classmap": [
"app/controllers/",
"app/database/sql/"
]
},
"require": {
"php": "^8.0",
"ext-pdo": "*",
"ext-json": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"post-create-project-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"php -r \"file_exists('warvil.json') || copy('warvil.json.example', 'warvil.json');\"",
"php bin/install"
],
"post-install-cmd": [
"php -r \"chmod('warvil', 0755);\""
],
"serve": "php warvil serve",
"warvil": "php warvil",
"setup": "php bin/install",
"release": "php release.php",
"release:patch": "php release.php patch",
"release:minor": "php release.php minor",
"release:major": "php release.php major",
"release:help": "php release.php help"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"warvil"
],
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 0,
"allow-plugins": {
"phpunit/phpunit": true
}
}
}