-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.37 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
{
"name": "o0h/ast-check-diff",
"type": "library",
"description": "AST-based PHP source diff checker",
"require": {
"php": "~8.3.0",
"nikic/php-parser": "^v5.1.0",
"symfony/console": "^6.3 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"phpstan/extension-installer": "@stable",
"phpstan/phpstan": "@stable",
"phpstan/phpstan-phpunit": "@stable",
"phpunit/phpunit": "@stable"
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run",
"cs-fix": "php-cs-fixer fix",
"test": [
"@test-unit",
"@test-integration"
],
"test-unit": "phpunit --testsuite unit --testdox --teamcity",
"test-integration": "phpunit --testsuite integration --teamcity",
"stan" : "phpstan analyze"
},
"license": "MIT",
"autoload": {
"psr-4": {
"O0h\\PhpAstCheckDiff\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"O0h\\PhpAstCheckDiff\\Test\\Case\\": "tests/unit"
}
},
"authors": [
{
"name": "o0h",
"email": "[email protected]"
}
],
"bin": [
"bin/ast-check-diff"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}