-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
54 lines (54 loc) · 1.35 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
{
"name": "codeinwp/templates-patterns-collection",
"description": "Templates and Patterns Collection Plugin",
"version": "1.2.19",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/Codeinwp/templates-patterns-collection",
"authors": [
{
"name": "Themeisle team",
"email": "[email protected]",
"homepage": "https://themeisle.com/"
}
],
"autoload": {
"psr-4": {
"TIOB\\": "includes/"
},
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform-check": false,
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-disable": "true"
},
"require-dev": {
"codeinwp/phpcs-ruleset": "dev-main",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"php-stubs/wp-cli-stubs": "^2.8"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml",
"phpstan": "phpstan analyse --memory-limit=2G"
},
"support": {
"issues": "https://github.com/Codeinwp/templates-patterns-collection/issues"
},
"require": {
"codeinwp/themeisle-sdk": "^3.2"
}
}