-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·63 lines (63 loc) · 1.36 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
{
"name": "zarganwar/safe-process-runner",
"description": "PHP process runner with locking",
"keywords": [
"lock",
"cron",
"safe",
"process",
"runner"
],
"license": [
"MIT"
],
"type": "library",
"homepage": "https://github.com/Zarganwar/safe-process-runner",
"authors": [
{
"name": "MMartin Jirásek"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"mockery/mockery": "~1.0.0",
"nette/tester": "2.0.*",
"tracy/tracy": "2.5.*"
},
"autoload": {
"psr-4": {
"Zarganwar\\SafeProcessRunner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Zarganwar\\SafeProcessRunner\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"tests": [
"vendor/bin/tester tests --colors=1"
],
"coverage": [
"vendor/bin/tester tests --colors=1 --coverage tests/coverage.xml"
],
"phpstan-install": [
"mkdir -p temp/phpstan",
"composer require -d temp/phpstan phpstan/phpstan:0.9.2",
"composer require -d temp/phpstan phpstan/phpstan-nette:0.9",
"composer require -d temp/phpstan phpstan/phpstan-strict-rules:0.9"
],
"phpstan": [
"temp/phpstan/vendor/bin/phpstan analyse --level 7 -c phpstan.neon src"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}