-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.23 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
{
"name": "wecodemore/wp-package-assets-publisher",
"description": "A Composer plugin that publishes assets for packages where WordPress can find them.",
"type": "composer-plugin",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://raw.githubusercontent.com/inpsyde/wp-stubs/main",
"only": [
"inpsyde/wp-stubs-versions"
]
}
],
"require": {
"php": ">=7.4",
"composer-plugin-api": "^2.3"
},
"require-dev": {
"composer/composer": "^2.3",
"inpsyde/php-coding-standards": "^1.0.0",
"inpsyde/wp-stubs-versions": "dev-latest",
"vimeo/psalm": "^5.7.5",
"phpunit/phpunit": "^9.6.3",
"mockery/mockery": "^1.5.1"
},
"autoload" : {
"files": [
"./inc/includes.php"
],
"psr-4": {
"WeCodeMore\\WpPackageAssetsPublisher\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"WeCodeMore\\WpPackageAssetsPublisher\\Tests\\": [
"tests/src/",
"tests/unit/"
]
}
},
"extra": {
"class": "WeCodeMore\\WpPackageAssetsPublisher\\Plugin"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-suggestions --find-unused-psalm-suppress --no-diff --no-cache --no-file-cache",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --testsuite=unit --no-coverage",
"tests:all": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"tests:int": "@php ./vendor/phpunit/phpunit/phpunit --testsuite=integration --no-coverage",
"tests:cov": "@php ./vendor/phpunit/phpunit/phpunit --coverage-clover coverage.xml",
"qa": [
"@cs",
"@psalm",
"@tests:all"
]
}
}