-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.19 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
{
"name": "fkeloks/bds_framework",
"description": "A simple framework, by Florian B.",
"type": "project",
"keywords": ["framework", "bds"],
"license": "MIT",
"version": "v1.0",
"authors": [
{
"name": "fkeloks",
"email": "[email protected]",
"role": "Developer"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability" : "stable",
"require": {
"php": "^7.0 || ^7.1",
"filp/whoops": "^2.1",
"guzzlehttp/psr7": "^1.4",
"monolog/monolog": "^1.23",
"nikic/fast-route": "^1.2",
"twig/twig": "~2.0",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"symfony/console": "^3.3"
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": "phpunit"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"BDSCore\\": "core/Framework",
"BDSHelpers\\": "core/Helpers",
"BDSConsole\\": "bin/commands"
}
}
}