forked from roots/acorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 1.89 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "roots/acorn",
"license": "MIT",
"description": "Lazy-loaded framework for Roots WordPress projects.",
"homepage": "https://roots.io/acorn/",
"authors": [
{
"name": "QWp6t",
"email": "hi@qwp6t.me"
},
{
"name": "Brandon Nifong",
"email": "brandon@tendency.me"
}
],
"keywords": [
"wordpress",
"sage"
],
"support": {
"issues": "https://github.com/roots/acorn/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"psr-4": {
"Roots\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Roots\\Acorn\\Tests\\": "tests"
}
},
"require": {
"php": "^7.2.5",
"ext-json": "*",
"illuminate/cache": "^7.0",
"illuminate/config": "^7.0",
"illuminate/console": "^7.0",
"illuminate/container": "^7.0",
"illuminate/contracts": "^7.0",
"illuminate/events": "^7.0",
"illuminate/filesystem": "^7.0",
"illuminate/http": "^7.12",
"illuminate/log": "^7.0",
"illuminate/support": "^7.0",
"illuminate/view": "^7.0",
"league/flysystem": "^1.0",
"roots/support": "dev-master",
"symfony/error-handler": "^5.0",
"symfony/var-dumper": "^5.0"
},
"require-dev": {
"filp/whoops": "^2.7",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5"
},
"suggest": {
"filp/whoops": "Required for friendly error pages in development (^2.0)."
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": [
"phpcs --ignore=vendor,tests --extensions=php --standard=PSR12 ."
],
"test": [
"phpunit"
],
"coverage": [
"phpunit --coverage-html coverage"
]
}
}