forked from contributte/apitte-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.56 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
69
70
{
"name": "apitte/debug",
"description": "Debugging tools for Apitte stack",
"keywords": [
"api",
"apitte",
"tracy",
"debugging"
],
"type": "library",
"license": [
"MIT"
],
"homepage": "https://github.com/apitte/debug",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">= 7.1",
"apitte/core": "^0.4.0",
"tracy/tracy": "~2.4.14 || ~2.5.0"
},
"require-dev": {
"ninjify/qa": "^0.8.0",
"ninjify/nunjuck": "^0.2.0",
"apitte/negotiation": "^0.4.0",
"nette/di": "~2.4.12"
},
"autoload": {
"psr-4": {
"Apitte\\Debug\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixtures\\": "tests/fixtures"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"qa": [
"linter src tests",
"codesniffer src tests"
],
"tester": [
"tester -s -p php --colors 1 -C tests/cases"
],
"coverage": [
"tester -s -p php --colors 1 -C -d extension=xdebug.so --coverage ./coverage.xml --coverage-src ./src tests/cases"
],
"phpstan-install": [
"mkdir -p temp/phpstan",
"composer require -d temp/phpstan phpstan/phpstan:0.10.1",
"composer require -d temp/phpstan phpstan/phpstan-nette:0.10",
"composer require -d temp/phpstan phpstan/phpstan-strict-rules:0.10"
],
"phpstan": [
"temp/phpstan/vendor/bin/phpstan analyse -l 1 -c phpstan.neon src"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}