-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.1 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
{
"name": "fcpl/psalm-pimple-container-plugin",
"description": "Psalm plugin to resolve return type for Pimple Container (ArrayAccess)",
"type": "psalm-plugin",
"require": {
"php": ">=7.3",
"ext-simplexml": "*",
"pimple/pimple": ">=3.2",
"vimeo/psalm": ">=4.30"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Fcpl\\Psalm\\Pimple\\Container\\Plugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fcpl\\Psalm\\Pimple\\Container\\Plugin\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Franklin C. Perrony de Liz",
"email": "[email protected]"
}
],
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": ">=v1.0.0",
"friendsofphp/php-cs-fixer": ">=v2.19.3",
"nunomaduro/phpinsights": ">=v1.14.1",
"pheromone/phpcs-security-audit": ">=2.0.1",
"phpcompatibility/php-compatibility": ">=9.3.5",
"phpmd/phpmd": ">=2.15.0",
"phpmetrics/phpmetrics": ">=v2.8.2",
"phpstan/phpstan": ">=1.12.7",
"phpstan/phpstan-phpunit": ">=1.4.0",
"phpunit/phpunit": ">=9.6.21",
"psalm/plugin-phpunit": ">=0.18.4",
"slevomat/coding-standard": ">=6.3.10",
"squizlabs/php_codesniffer": ">=3.10.3",
"weirdan/codeception-psalm-module": ">=0.13.1"
},
"scripts": {
"phpcs": "./vendor/bin/phpcs --standard=ruleset-quality.xml",
"phpmd": "./vendor/bin/phpmd ./src,./tests ansi rulesets.xml",
"phpmetrics": "./vendor/bin/phpmetrics --config=\"php-metrics-config.yml\" --junit=\"var/junit.xml\"",
"phpstan": "./vendor/bin/phpstan --no-ansi --configuration=phpstan.neon",
"psalm": "./vendor/bin/psalm --config=psalm.xml",
"phpinsights": "./vendor/bin/phpinsights --no-interaction --config-path=phpinsights.php",
"tests": "./vendor/bin/phpunit --configuration phpunit.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"psalm": {
"pluginClass": "Fcpl\\Psalm\\Pimple\\Container\\Plugin\\PimpleContainerPlugin"
}
}
}