-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 1.86 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
{
"name": "syntatis/codex",
"description": "The extension codebase for WordPress®",
"keywords": [
"wordpress",
"helpers",
"functions",
"facades",
"service-container",
"extensions",
"framework"
],
"homepage": "https://github.com/syntatis/codex",
"authors": [
{
"name": "Thoriq Firdaus",
"email": "2067467+tfirdaus@users.noreply.github.com",
"homepage": "https://github.com/tfirdaus",
"role": "Developer"
}
],
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"Codex\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Codex\\Tests\\": [
"tests/app/",
"tests/phpunit/"
]
}
},
"require": {
"php": "^7.4 || ^8.0",
"adbario/php-dot-notation": "^3.3",
"pimple/pimple": "^3.5"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.6",
"roots/wordpress": "^6.7",
"symfony/var-dumper": "^5.4",
"syntatis/coding-standard": "^1.5",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-phpunit/wp-phpunit": "^6.7",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
"phpcs:fix": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan --memory-limit=512M",
"phpunit:coverage": "vendor/bin/phpunit",
"phpunit": "vendor/bin/phpunit --no-coverage",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"roots/wordpress-core-installer": true,
"bamarni/composer-bin-plugin": false,
"syntatis/composer-project-plugin": false
}
},
"prefer-stable": true,
"minimum-stability": "stable"
}