-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
73 lines (73 loc) · 2.18 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
{
"name": "inpsyde/assets",
"description": "Package to manage assets in WordPress.",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Inpsyde",
"email": "[email protected]",
"homepage": "https://inpsyde.com",
"role": "Company"
},
{
"name": "Christian Leucht",
"email": "[email protected]",
"homepage": "https://www.chrico.info",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-dom": "*",
"inpsyde/wp-context": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^8.5.14 || ^9.0",
"brain/monkey": "^2.5.0",
"mikey179/vfsstream": "^1.6.8",
"inpsyde/php-coding-standards": "^1",
"vimeo/psalm": "@stable",
"php-stubs/wordpress-stubs": ">=6.0@stable",
"johnpbloch/wordpress-core": ">=6.0"
},
"autoload": {
"psr-4": {
"Inpsyde\\Assets\\": "src/"
},
"files": [
"inc/functions.php",
"inc/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\Assets\\Tests\\Unit\\": "tests/phpunit/Unit/",
"Inpsyde\\Assets\\Tests\\Integration\\": "tests/phpunit/Integration/"
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/bin/psalm --output-format=compact --no-cache",
"tests": "@php ./vendor/phpunit/phpunit/phpunit",
"tests:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"tests:codecov": "@php ./vendor/phpunit/phpunit/phpunit --coverage-clover coverage.xml",
"qa": [
"@cs",
"@tests:no-cov"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"wordpress-install-dir": "vendor/wordpress/wordpress"
}
}