forked from philsturgeon/phparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.11 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "phpversions/phparse",
"require-dev": {
"php-vcr/php-vcr": "~1.2",
"crysalead/kahlan": "~1.2",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "^0.10.8"
},
"authors": [
{
"name": "Phil Sturgeon",
"email": "phil@philsturgeon.co.uk"
},
{
"name": "Matt Trask",
"email": "mjftrask@gmail.com"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"PhpVersions\\PHParse\\": "src"
}
},
"require": {
"php": ">=7.1",
"naneau/semver": "0.0.7.*",
"monolog/monolog": "^1.24"
},
"scripts": {
"phpcs": "phpcs src tests --standard=psr2 -sp --colors",
"phpstan": [
"vendor/bin/phpstan analyse src --level max --no-progress",
"vendor/bin/phpstan analyse src --level 7 --no-progress"
],
"phpunit": "phpunit --verbose --colors=always",
"test": [
"@phpstan",
"@phpunit",
"@phpcs"
]
}
}