-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.62 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
{
"name": "tollwerk/snippets",
"description": "Code snippet gallery",
"homepage": "https://snippets.tollwerk.dev",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Joschi Kuphal",
"email": "[email protected]",
"homepage": "https://tollwerk.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/tollwerk/snippets",
"issues": "https://github.com/tollwerk/snippets/issues"
},
"config": {
"sort-packages": true
},
"repositories": {
"graph-composer": {
"type": "git",
"url": "https://github.com/jkphl/graph-composer"
}
},
"require": {
"php": ">=7.2"
},
"autoload": {
"psr-4": {
"Tollwerk\\": "src/"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml.dist",
"depgraph": "vendor/bin/graph-composer --no-dev export . doc/dependencies.svg",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"test": "@phpunit"
},
"require-dev": {
"clue/graph-composer": "^2.0",
"codeclimate/php-test-reporter": "^0.4.4",
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
}
}