-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.28 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
{
"name": "evolvephp/evolvephp",
"description": "Evolve is short for evolution which is a php framework for smart developers.",
"type": "project",
"homepage": "https://github.com/josiahking/evolvephp",
"license": "BSD-3-Clause",
"keywords": [
"framework",
"php framework",
"evolvephp",
"elvovephp framework",
"evolve php",
"evolution php",
"evolvephp skeleton"
],
"authors": [
{
"name": "Josiah King",
"email": "[email protected]",
"homepage": "https://github.com/josiahking"
},
{
"name": "Evolvephp Community"
}
],
"version": "1.0",
"require": {
"php": ">=7.1",
"karelwintersky/monolog-pdo-handler": "^0.2.0",
"monolog/monolog": "^2.0",
"apache/log4php": "^2.3",
"whichbrowser/parser": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "8"
},
"autoload": {
"psr-4": {
"EvolvePhpCore\\": "core/",
"EvolvePhpComponent\\": "components/",
"EvolvePhpHelper\\": "helpers/"
}
},
"autoload-dev": {
},
"scripts": {
"serve": "php -S 0.0.0.0:8800 -t /index.php",
"test": "phpunit"
}
}