forked from roots/acorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
104 lines (104 loc) · 2.74 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
97
98
99
100
101
102
103
104
{
"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": [
"laravel",
"livewire",
"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.1",
"ext-json": "*",
"ext-mbstring": "*",
"illuminate/cache": "^10.33",
"illuminate/config": "^10.33",
"illuminate/console": "^10.33",
"illuminate/container": "^10.33",
"illuminate/contracts": "^10.33",
"illuminate/database": "^10.33",
"illuminate/encryption": "^10.33",
"illuminate/events": "^10.33",
"illuminate/filesystem": "^10.33",
"illuminate/http": "^10.33",
"illuminate/log": "^10.33",
"illuminate/queue": "^10.33",
"illuminate/routing": "^10.33",
"illuminate/support": "^10.33",
"illuminate/validation": "^10.33",
"illuminate/view": "^10.33",
"laravel/prompts": "^0.1.7",
"laravel/serializable-closure": "^1.3",
"league/flysystem": "^3.8",
"ramsey/uuid": "^4.7",
"roots/support": "^1.0",
"symfony/error-handler": "^6.2",
"symfony/var-dumper": "^6.2",
"vlucas/phpdotenv": "^5.4.1"
},
"require-dev": {
"laravel/pint": "^1.13",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.25",
"phpcompatibility/php-compatibility": "^9.3",
"roave/security-advisories": "dev-master",
"spatie/laravel-ignition": "^2.1",
"spatie/pest-plugin-snapshots": "^2.1",
"spatie/temporary-directory": "^2.0",
"tmarsteel/mockery-callable-mock": "^2.1",
"wp-cli/wp-cli": "^2.5"
},
"suggest": {
"roots/acorn-prettify": "A collection of modules to apply theme-agnostic front-end modifications (^1.0).",
"spatie/laravel-ignition": "A beautiful error page for development (^1.6)."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "pint --test",
"lint:fix": "pint",
"test": "pest",
"coverage": "XDEBUG_MODE=coverage pest --coverage --coverage-html=coverage"
}
}