-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
composer.json
105 lines (105 loc) · 2.73 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
105
{
"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.2",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.8",
"illuminate/cache": "^11.0",
"illuminate/config": "^11.0",
"illuminate/console": "^11.0",
"illuminate/container": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/database": "^11.0",
"illuminate/encryption": "^11.0",
"illuminate/events": "^11.0",
"illuminate/filesystem": "^11.0",
"illuminate/http": "^11.0",
"illuminate/log": "^11.0",
"illuminate/queue": "^11.0",
"illuminate/routing": "^11.0",
"illuminate/support": "^11.0",
"illuminate/testing": "^11.0",
"illuminate/validation": "^11.0",
"illuminate/view": "^11.0",
"laravel/prompts": "^0.1.17",
"laravel/serializable-closure": "^1.3",
"league/flysystem": "^3.26",
"ramsey/uuid": "^4.7",
"roots/support": "^1.0",
"symfony/error-handler": "^7.0",
"symfony/var-dumper": "^7.0",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"laravel/pint": "^1.15",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.34",
"phpcompatibility/php-compatibility": "^9.3",
"roave/security-advisories": "dev-master",
"spatie/laravel-ignition": "^2.5",
"spatie/pest-plugin-snapshots": "^2.1",
"spatie/temporary-directory": "^2.2",
"tmarsteel/mockery-callable-mock": "^2.1",
"wp-cli/wp-cli": "^2.10"
},
"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 (^2.0)."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": 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"
}
}