This repository has been archived by the owner on Jul 18, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
62 lines (62 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
60
61
62
{
"name": "overtrue/yaf-skeleton",
"description": "The Yaf skeleton.",
"authors": [
{
"name": "overtrue",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"": "app/facades",
"App\\Commands\\": "app/commands",
"App\\Services\\": "app/services",
"App\\Presenters\\": "app/presenters",
"App\\Traits\\": "app/traits",
"App\\Exceptions\\": "app/exceptions",
"App\\Support\\": "app/support"
},
"files": [
"app/helpers.php",
"app/support/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"./tests"
]
},
"require": {
"php": ">=7.0",
"ext-yaf": "*",
"psr/http-message": "~1.0",
"symfony/console": "3.*",
"monolog/monolog": "~1.0",
"psr/container": "^1.0"
},
"require-dev": {
"mockery/mockery": "~1.0",
"symfony/var-dumper": "~3.0",
"filp/whoops": "~2.1@stable",
"friendsofphp/php-cs-fixer": "~1.8@stable",
"squizlabs/php_codesniffer": "3.0.x-dev",
"phpmd/phpmd": "~2.6@stable",
"sebastian/phpcpd": "~2.0@stable",
"sebastian/phpdcd": "~1.0@stable",
"overtrue/phplint": "dev-master",
"phpunit/phpunit": "~6.0"
},
"config": {
"optimize-autoload": true,
"preferred-install": {
"*": "dist"
}
},
"suggest": {
"league/plates": "Plates is a native PHP template system that's fast, easy to use and easy to extend.",
"illuminate/database": "The best PHP ORM Engine from Laravel.",
"illuminate/validation": "The form validation component from Laravel."
},
"license": "MIT"
}