-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
35 lines (35 loc) · 910 Bytes
/
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
{
"name": "paulao-dev/khan",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Khan PHP framework",
"email": "jskhanframework@gmail.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"paulaodev/khan-core": "dev-master"
},
"require-dev": {
"phpunit/phpunit" : "*"
},
"autoload": {
"psr-4": {
"Controllers\\": "app/http/controllers/",
"Middlewares\\": "app/http/middlewares/",
"Models\\": "app/models/",
"StrategysAuth\\": "config/strategy/"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"post-install-cmd": "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"server": "@php khan server",
"test": " vendor/bin/phpunit"
}
}