-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.93 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.93 KB
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
{
"name": "10up/wp-framework",
"description": "A PHP package designed to simplify the development of WordPress themes and plugins by centralizing shared functionality.",
"type": "library",
"homepage": "https://github.com/10up/wp-framework",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Daryll Doyle",
"email": "daryll.doyle@10up.com",
"homepage": "https://enshrined.co.uk/",
"role": "Developer"
},
{
"name": "10up",
"email": "opensource@10up.com",
"homepage": "https://10up.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"TenupFramework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TenupFrameworkTests\\": "tests/",
"TenupFrameworkTestClasses\\": "fixtures/classes/"
}
},
"require": {
"php": ">=8.2",
"spatie/php-structure-discoverer": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"yoast/phpunit-polyfills": "^2.0",
"brain/monkey": "^2.6",
"szepeviktor/phpstan-wordpress": "^2.0",
"php-stubs/wp-cli-stubs": "^2.11",
"phpstan/phpstan-deprecation-rules": "^2.0",
"10up/phpcs-composer": "^3.0",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99",
"phpunit/php-code-coverage": "^9.2",
"slevomat/coding-standard": "^8.15"
},
"scripts": {
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit",
"lint": "./vendor/bin/phpcs --standard=./phpcs.xml",
"lint-fix": "./vendor/bin/phpcbf --standard=./phpcs.xml",
"static": [
"Composer\\Config::disableProcessTimeout",
"phpstan --memory-limit=1G"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}