-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.5 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
{
"name": "integer-net/todo-reminder",
"description": "GrumPHP Extension to remind you of undone todos",
"type": "library",
"bin": ["bin/todo"],
"require": {
"php": "~7.1",
"ext-mbstring": "*",
"ext-SPL": "*",
"gitonomy/gitlib": "^1.0",
"nikic/php-parser": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpro/grumphp": "^0.15.2",
"jakub-onderka/php-parallel-lint": "^1.0.0",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^0.11.8",
"maglnet/composer-require-checker": "^2.0.0",
"infection/infection": "^0.13.0",
"phan/phan": "^2.2.4",
"phpmd/phpmd": "^2.6",
"pds/skeleton": "^1.0"
},
"autoload": {
"psr-4": {
"IntegerNet\\TodoReminder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IntegerNet\\TodoReminder\\": "tests/"
}
},
"scripts": {
"test": "phpunit && infection && phpstan analyze --level 7 src tests && phan",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"license": "MIT",
"authors": [
{
"name": "Fabian Schmengler",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}