-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
68 lines (68 loc) · 1.85 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
{
"name": "inpsyde/wp-app-container",
"type": "library",
"description": "DI Container and related tools to be used at website level.",
"license": "gpl-2.0-or-later",
"authors": [
{
"name": "Inpsyde GmbH",
"homepage": "https://inpsyde.com/",
"email": "[email protected]",
"role": "Company"
},
{
"name": "Giuseppe Mazzapica",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.5 < 9",
"ext-json": "*",
"inpsyde/wp-context": "^1.2.0",
"pimple/pimple": "^3"
},
"require-dev": {
"phpunit/phpunit": "^8.5.22",
"inpsyde/php-coding-standards": "^1",
"vimeo/psalm": "^4.26.0",
"brain/monkey": "^2.6.1",
"inpsyde/wp-stubs": "dev-main"
},
"autoload": {
"psr-4": {
"Inpsyde\\App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\App\\Tests\\": "tests/phpunit/"
}
},
"minimum-stability": "stable",
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-cache --output-format=compact",
"tests": "@php ./vendor/phpunit/phpunit/phpunit",
"tests:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"qa": [
"@cs",
"@psalm",
"@tests:no-cov"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev",
"dev-1.x": "1.x-dev",
"dev-2.x": "2.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/*": true,
"inpsyde/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}