-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 989 Bytes
/
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
{
"name": "dan-mathews/travis-phpstorm-inspector",
"description": "Package for running PhpStorm's inspections in travis",
"keywords": ["travis", "phpstorm", "inspector", "inspection", "code quality"],
"license": "MIT",
"authors": [
{
"name": "Dan Mathews",
"homepage": "https://github.com/dan-mathews"
}
],
"autoload": {
"psr-4": {
"TravisPhpstormInspector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BehatTests\\": "tests/behat/features",
"PhpUnitTests\\": "tests/phpunit"
}
},
"require": {
"php": "~7.3",
"ext-json": "*",
"ext-xmlreader": "*",
"symfony/console": "^5.3",
"ext-posix": "*",
"symfony/filesystem": "^5.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"behat/behat": "^3.8",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.7",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^0.12.90",
"phpspec/prophecy": "~1.0"
}
}