-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.37 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "windpress/windpress",
"description": "Tailwind CSS for WordPress",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"WindPress\\WindPress\\": "src/"
},
"files": [
"constant.php"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"complete-check": [
"@check-ecs",
"@phpstan",
"phpunit"
],
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify",
"rector": "vendor/bin/rector process --ansi",
"check-ecs": "vendor/bin/ecs check --ansi",
"fix-ecs": "vendor/bin/ecs check --fix --ansi"
},
"require": {
"php": ">=7.4",
"hidehalo/nanoid-php": "^1.1",
"masterminds/html5": "^2.9",
"rosua/edd-sl-plugin-updater": "@dev",
"symfony/finder": "^5.4",
"symfony/property-access": "^5.4",
"symfony/stopwatch": "^5.4"
},
"require-dev": {
"rector/rector": "^1.2",
"symplify/easy-coding-standard": "^12.3"
}
}