-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.56 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
{
"name": "paulaodev/khan-core",
"description": "Core khan framework",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "PaulaoDev",
"email": "jskhanframework@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"catfan/Medoo": "^1.4",
"twig/twig": "^1.3",
"nesbot/carbon": "^1.22|^2.0",
"vlucas/phpdotenv": "^2.4",
"phpmailer/phpmailer": "^6.0",
"symfony/console": "^4.0",
"ralouphie/mimey": "^2.0",
"goaop/parser-reflection": "^1.4"
},
"require-dev": {
"nochso/sami-theme": "^0.2.0",
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Command\\": "src/Khan/KhanCli/"
},
"files": [
"src/Khan/Component/Dotenv/Dotenv.php",
"src/Khan/Component/Router/Router/Router.php"
]
},
"autoload-dev": {
"psr-4": {
"MyApp\\": "app/",
"Middlewares\\": "app/http/middlewares/",
"Controllers\\": "app/http/controllers/",
"StrategysAuth\\": "config/strategy/",
"Models\\": "app/models/"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"server": "@php khan server",
"teste": "vendor/bin/phpunit --coverage-html coverage"
},
"bin": [
"khan"
]
}