-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.33 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.33 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
79
80
{
"name": "inpsyde/wp-app-container",
"type": "library",
"description": "Website-level DI container and related tools.",
"license": "gpl-2.0-or-later",
"authors": [
{
"name": "Inpsyde GmbH",
"homepage": "https://inpsyde.com/",
"email": "hello@inpsyde.com",
"role": "Company"
}
],
"repositories": [
{
"type": "composer",
"url": "https://raw.githubusercontent.com/inpsyde/wp-stubs/main",
"only": ["inpsyde/wp-stubs-versions"]
}
],
"require": {
"php": ">=7.2.5 < 9",
"ext-json": "*",
"inpsyde/modularity": "^1.4.0",
"inpsyde/wp-context": "^1.3.1",
"psr/container": "^2"
},
"require-dev": {
"brain/monkey": "^2.6.1",
"inpsyde/php-coding-standards": "^1",
"inpsyde/wp-stubs-versions": "dev-latest",
"phpunit/phpunit": "^8.5.22",
"roots/wordpress-no-content": ">= 6.1.1",
"vimeo/psalm": "^4.26.0"
},
"autoload": {
"psr-4": {
"Inpsyde\\App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\App\\Tests\\": [
"tests/src/",
"tests/unit/"
]
}
},
"minimum-stability": "stable",
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"fix:cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"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",
"tests:example-project": "composer -d tests/example -q install && composer -d tests/example tests",
"qa": [
"@cs",
"@psalm",
"@tests:no-cov",
"@tests:example-project"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev",
"dev-1.x": "1.x-dev",
"dev-2.x": "2.x-dev",
"dev-3.x": "3.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/*": true,
"inpsyde/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}