forked from ouun/stage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.09 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
{
"name": "ouun/stage",
"type": "wordpress-theme",
"license": "MIT",
"description": "WordPress Theme Framework based on Roots Sage",
"homepage": "https://ouun.io/stage/",
"authors": [
{
"name": "Philipp Wellmer",
"email": "philipp@ouun.io",
"homepage": "https://ouun.io"
}
],
"keywords": [
"wordpress"
],
"support": {
"issues": "https://github.com/ouun/stage/issues"
},
"autoload": {
"psr-4": {
"Stage\\": "app/"
}
},
"require": {
"php": "^7.2.5",
"kirki-framework/compatibility": "dev-master",
"kirki-framework/control-checkbox": "^0.1",
"kirki-framework/control-react-color": "^1.0",
"kirki-framework/field-multicolor": "dev-master",
"kirki-framework/field-typography": "^0.3",
"kirki-framework/module-css": "dev-master",
"kirki-framework/module-editor-styles": "dev-master",
"kirki-framework/module-field-dependencies": "^1.0",
"kirki-framework/module-panels": "dev-master",
"kirki-framework/module-postmessage": "^1.0",
"kirki-framework/module-sections": "^1.0",
"kirki-framework/module-selective-refresh": "^1.0",
"kirki-framework/module-webfonts": "^1.0",
"log1x/navi": "^1.0",
"log1x/sage-directives": "^1.1",
"log1x/sage-svg": "^1.0",
"ouun/kirki-module-fonts_upload": "^1.0",
"ouun/kirki-module-sync_controls": "^1.0",
"ouun/stage-laravel-tailwind-config": "^1.0",
"ouun/stage-woocommerce": "^1.0",
"roots/acorn": "^1.1"
},
"require-dev": {
"filp/whoops": "^2.5",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": [
"phpcs --colors --ignore=index.php,vendor,resources,storage,dist --extensions=php --standard=PSR12 ."
],
"fix": [
"phpcbf -q --ignore=index.php,vendor,resources,storage,dist --extensions=php --standard=PSR12 . && composer lint"
],
"post-autoload-dump": [
"Roots\\Acorn\\ComposerScripts::postAutoloadDump"
]
}
}