-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.34 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "inpsyde/assets",
"description": "Package to manage assets in WordPress.",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Syde GmbH",
"homepage": "https://syde.com/",
"email": "hello@syde.com",
"role": "Company"
},
{
"name": "Christian Leucht",
"email": "c.leucht@syde.com",
"homepage": "https://www.chrico.info",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"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",
"syde/phpcs": "^1.0.0",
"phpstan/phpstan": "^2.1.1",
"phpstan/phpstan-mockery": "^2.0.0",
"phpstan/phpstan-phpunit": "^2.0.4",
"szepeviktor/phpstan-wordpress": "^2",
"swissspidy/phpstan-no-private": "^v1.0.0",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"php-stubs/wordpress-stubs": ">=6.2@stable",
"johnpbloch/wordpress-core": ">=6.7"
},
"autoload": {
"psr-4": {
"Inpsyde\\Assets\\": "src/"
},
"files": [
"inc/functions.php",
"inc/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\Assets\\Tests\\Unit\\": "tests/phpunit/Unit/"
}
},
"scripts": {
"phpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"phpstan": "@php ./vendor/bin/phpstan analyse --memory-limit=1G",
"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": [
"@phpcs",
"@phpstan",
"@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"
}
}