-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.11 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "felipebool/crook",
"description": "Crook is a simple tool to ease your life when dealing with git hooks",
"type": "library",
"keywords": [
"crook",
"git",
"hooks",
"githook"
],
"license": "MIT",
"authors": [
{
"name": "Felipe Lopes",
"email": "bolzin@gmail.com"
}
],
"require": {
"symfony/console": "^4.0|^5.0",
"php": "^7.1"
},
"autoload": {
"psr-4": {
"Crook\\": "src/crook"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.2",
"phpunit/phpunit": "^7.0",
"vlucas/phpdotenv": "^2.4",
"codacy/coverage": "^1.4"
},
"scripts": {
"code-check-non-psr2": "phpcs --standard=PSR2 tests/dumbCode/NonPsrCompliant.php",
"code-check-psr2": "phpcs --standard=PSR2 tests/dumbCode/PsrCompliant.php",
"phpunit": "phpunit --bootstrap vendor/autoload",
"post-root-package-install": [
"@php -r \"copy('theHook', 'theHook');\""
]
},
"bin": [
"bin/crook"
]
}