-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
47 lines (47 loc) · 995 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "crazycodes/zframework",
"description": "The Zero Framework.",
"keywords": [
"framework",
"zframework"
],
"license": "MIT",
"homepage": "https://zframework.fastrun.cn",
"support": {
"issues": "https://github.com/CrazyCodes/z_framework/issues",
"source": "https://github.com/CrazyCodes/z_framework"
},
"authors": [
{
"name": "CrazyCodes",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"ext-mbstring": "*",
"ext-openssl": "*",
"nette/finder": "^3.0@dev",
"symfony/yaml": "^4.3@dev",
"symfony/var-dumper": "^4.1",
"symfony/http-foundation": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"guzzlehttp/guzzle": "~6.0"
},
"autoload": {
"psr-4": {
"Zero\\": "src/Zero"
},
"files": [
"src/Zero/Foundation/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Zero\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}