-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
67 lines (67 loc) · 1.4 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": "nigaphp/niga",
"description": "Niga framework",
"type": "project",
"keywords": [
"framework",
"niga",
"mvc"
],
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"config/functions.php"
]
},
"authors": [
{
"name": "Abass Dev",
"email": "[email protected]",
"role": "Lead Developer",
"homepage": "https://abassdev.com"
}
],
"require": {
"php": "^7.4|^8.0",
"niga/framework": "2.x-dev"
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.94",
"filp/whoops": "^2.14",
"fakerphp/faker": "^1.15"
},
"scripts": {
"dev-server": "php -S localhost:8000 -t public/",
"post-root-package-install": [
"@php -r \"file_exists('.env') || @copy('.env.example', '.env');\"",
"chmod +x ./niga"
],
"pre-update-cmd": [
"@php -r \"file_exists('.env') || @copy('.env.example', '.env');\"",
"chmod +x ./niga"
],
"pre-install-cmd": [
"@php -r \"file_exists('.env') || @copy('.env.example', '.env');\"",
"chmod +x ./niga"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}