forked from roots/acorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 2.45 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "roots/acorn",
"license": "MIT",
"description": "Framework for Roots WordPress projects built with Laravel components.",
"homepage": "https://roots.io/acorn/",
"authors": [
{
"name": "QWp6t",
"email": "[email protected]"
},
{
"name": "Brandon Nifong",
"email": "[email protected]"
}
],
"keywords": [
"wordpress",
"sage"
],
"bin": [
"bin/acorn"
],
"support": {
"issues": "https://github.com/roots/acorn/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"psr-4": {
"Roots\\": "src/Roots/",
"Illuminate\\": "src/Illuminate/"
},
"files": [
"src/Roots/helpers.php",
"src/Roots/globals.php"
]
},
"autoload-dev": {
"psr-4": {
"Roots\\Acorn\\Tests\\": "tests"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"illuminate/cache": "^9.0",
"illuminate/config": "^9.0",
"illuminate/console": "^9.0",
"illuminate/container": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/events": "^9.0",
"illuminate/filesystem": "^9.0",
"illuminate/http": "^9.0",
"illuminate/log": "^9.0",
"illuminate/support": "^9.0",
"illuminate/view": "^9.0",
"league/flysystem": "^3.0",
"ramsey/uuid": "^4.2.2",
"roots/support": "^1.0",
"symfony/error-handler": "^6.0",
"symfony/var-dumper": "^6.0",
"vlucas/phpdotenv": "^5.4.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"filp/whoops": "^2.9",
"pestphp/pest": "^1.0",
"pestphp/pest-plugin-mock": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"roave/security-advisories": "dev-master",
"spatie/pest-plugin-snapshots": "^1.0",
"spatie/temporary-directory": "^2.0",
"squizlabs/php_codesniffer": "^3.5",
"tmarsteel/mockery-callable-mock": "^2.1",
"wp-cli/wp-cli": "^2.5"
},
"suggest": {
"filp/whoops": "Required for friendly error pages in development (^2.9)."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "phpcs",
"lint:fix": "phpcbf",
"test": "pest",
"coverage": "XDEBUG_MODE=coverage pest --coverage --coverage-html=coverage",
"production": "composer install --no-dev --optimize-autoloader"
}
}