-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
62 lines (62 loc) · 1.75 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
{
"name": "brain/assets",
"description": "WordPress assets helpers.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://raw.githubusercontent.com/inpsyde/wp-stubs/main",
"only": [
"inpsyde/wp-stubs-versions"
]
}
],
"require": {
"php": ">= 8.0 < 8.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6.16",
"brain/monkey": "^2.6.1",
"inpsyde/php-coding-standards": "^2@dev",
"phpcompatibility/php-compatibility": "^10@dev",
"vimeo/psalm": "^5.22.0",
"inpsyde/wp-stubs-versions": "dev-latest"
},
"autoload": {
"psr-4": {
"Brain\\Assets\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brain\\Assets\\Tests\\": "tests/src/",
"Brain\\Assets\\Tests\\Unit\\": "tests/unit/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-suggestions --report-show-info=false --find-unused-psalm-suppress --no-diff --no-cache --no-file-cache --output-format=compact",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"qa": [
"@cs",
"@psalm",
"@tests"
]
}
}