This repository has been archived by the owner on Dec 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
74 lines (74 loc) · 2.13 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
73
74
{
"name": "bitexpert/magerun2-list-api-endpoints",
"description": "Plugin for netz98 Magerun2 to list all API endpoints",
"keywords": [
"n98-magerun2", "magerun2"
],
"prefer-stable": true,
"homepage": "https://github.com/bitExpert/magerun2-list-api-endpoints",
"license": "Apache-2.0",
"abandoned": "hivecommerce/magerun2-list-api-endpoints",
"authors": [
{
"name": "Philipp Sander",
"email": "p.sander@bitexpert.de",
"homepage": "http://www.bitexpert.de",
"role": "Developer"
},
{
"name": "Stephan Hochdörfer",
"email": "S.Hochdoerfer@bitExpert.de",
"homepage": "http://www.bitExpert.de"
}
],
"require": {
"php": "^7.4",
"magento/module-webapi": "^100.4.2",
"magento/framework": "102.0.6|103.0.0|103.0.1|103.0.2|103.0.2-p1"
},
"require-dev": {
"n98/magerun2": "^4.5.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^0.12.81",
"captainhook/captainhook": "^5.4",
"captainhook/plugin-composer": "^5.2",
"bitexpert/phpstan-magento": "^0.9.0",
"phpstan/extension-installer": "^1.1",
"roave/security-advisories": "dev-latest",
"infection/infection": "^0.21.0",
"bitexpert/captainhook-infection": "^0.5.0",
"phpstan/phpstan-strict-rules": "^0.12.9"
},
"repositories": [
{
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz"
}
],
"autoload": {
"psr-4": {
"BitExpert\\Magento\\ListApiEndpoints\\": "src/BitExpert/Magento/ListApiEndpoints"
}
},
"autoload-dev": {
"psr-4": {
"BitExpert\\Magento\\ListApiEndpoints\\": "tests/BitExpert/Magento/ListApiEndpoints"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/phpcs --standard=PSR2 ./src ./tests",
"cs-fix": "vendor/bin/phpcbf",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit",
"infection": "vendor/bin/infection -j4 --ignore-msi-with-no-mutations --only-covered",
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
},
"config": {
"sort-packages": true
}
}