-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.34 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
{
"name": "php-ext-com/build-engine",
"description": "A library that can be used to map a complex build process into a structured set of value objects",
"type": "library",
"license": "mit",
"authors": [
{
"name": "Flavio Heleno",
"email": "flaviohbatista@gmail.com"
}
],
"autoload": {
"psr-4": {
"BuildEngine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BuildEngine\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.3",
"league/pipeline": "^1.0",
"ramsey/collection": "^1.1"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12.58",
"phpunit/phpunit": "^9.5",
"psy/psysh": "^0.10.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.3"
},
"scripts": {
"taint": "vendor/bin/psalm --taint-analysis",
"check": "vendor/bin/phpstan analyse --level=8 --autoload-file=vendor/autoload.php src/ tests/",
"lint": [
"vendor/bin/parallel-lint --exclude vendor .",
"vendor/bin/phpcs --standard=ruleset.xml src/ tests/"
],
"test": "vendor/bin/phpunit ./tests/ --coverage-html=./report/coverage/ --whitelist=./src/ --testdox-html=./report/testdox.html --disallow-test-output --process-isolation"
}
}