-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.88 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
67
68
{
"name": "publicplan/parallel-bridge",
"description": "Symfony Parallel Bridge",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Ralf Beine",
"email": "[email protected]"
},
{
"name": "Thomas Le Duc",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"symfony/config": "^4.0 || ^5.0",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/http-kernel": "^4.0 || ^5.0",
"amphp/parallel-functions": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/phpunit-bridge": "^5.2"
},
"autoload": {
"psr-4": {
"Publicplan\\ParallelBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Publicplan\\ParallelBridge\\Tests\\": "tests/"
}
},
"scripts": {
"bootstrap": [
"@composer install",
"@install-tools"
],
"install-tools": [
"@composer install --working-dir=tools/php-cs-fixer",
"@composer install --working-dir=tools/phpstan"
],
"fix": "@php tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --allow-risky=yes",
"lint": "@php tools/php-cs-fixer/vendor/bin/php-cs-fixer fix -vvv --dry-run --stop-on-violation --using-cache=no --allow-risky=yes",
"analyse": "@php tools/phpstan/vendor/bin/phpstan analyse src tests --configuration=phpstan.neon",
"test": "@php vendor/bin/simple-phpunit",
"ci": [
"@bootstrap",
"@test",
"@lint",
"@analyse"
],
"ci-8.0": [
"@bootstrap",
"@test",
"@analyse"
],
"ci-7.4": [
"@ci"
],
"ci-7.3": [
"@ci"
]
}
}