-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
53 lines (53 loc) · 1.29 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
{
"name": "ravorona/sage",
"version": "4.4.0",
"description": "Wordpress theme based on Sage starter theme using Vite",
"license": "MIT",
"authors": [
{
"name": "яαvoroηα",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/ravorona/sage/issues"
},
"keywords": [
"wordpress"
],
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"laravel/pint": "^1.13",
"squizlabs/php_codesniffer": "3.7.1"
},
"suggest": {
"log1x/sage-directives": "A collection of useful Blade directives for WordPress and Sage (^1.0).",
"log1x/sage-svg": "A useful SVG directive for inlining SVG's within Blade views (^1.0)."
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": [
"phpcs --extensions=php --standard=PSR12 app"
]
},
"extra": {
"acorn": {
"providers": [
"App\\Providers\\ThemeServiceProvider"
]
}
}
}