-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1.01 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
{
"name":"nofutur3/tracy-gitpanel",
"description":"nette extension - adds the GIT panel to the tracy panel - shows current GIT branch. ",
"keywords":["nette", "panel", "git", "tracy", "debug", "branch"],
"license":["MIT"],
"authors":[
{
"name":"Jakub Vyvážil",
"homepage":"https://www.vyvazil.cz",
"email": "[email protected]"
}
],
"require":{
"php":">=5.6",
"tracy/tracy": "~2.2"
},
"require-dev": {
"codeception/codeception": "^2.2",
"friendsofphp/php-cs-fixer": "^2.10",
"phpstan/phpstan-shim": "^0.9.2"
},
"autoload":{
"psr-0":{
"Nofutur3\\GitPanel\\": "src/"
}
},
"scripts":{
"ci": [
"@cs-check",
"@stan",
"@test"
],
"cs-fix": "vendor/bin/php-cs-fixer fix",
"cs-check": "vendor/bin/php-cs-fixer fix --stop-on-violation --dry-run",
"stan": "vendor/bin/phpstan analyse --no-progress --level=max --configuration=phpstan.neon src",
"test": ["vendor/bin/codecept build","vendor/bin/codecept run"]
}
}