forked from Protoqol/Prequel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·54 lines (54 loc) · 1.36 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
{
"name": "protoqol/prequel",
"description": "Clear and concise database management.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Quinten Schorsij",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1",
"laravel/framework": ">=5.6",
},
"extra": {
"laravel": {
"providers": [
"Protoqol\\Prequel\\PrequelServiceProvider"
]
}
},
"require-dev": {
"orchestra/testbench": "^3.7",
"phpmd/phpmd": "^2.6"
},
"autoload": {
"psr-4": {
"Protoqol\\Prequel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Protoqol\\Prequel\\Tests\\": "tests/"
}
},
"scripts": {
"phpins": [
"./vendor/bin/phpinsights"
],
"phpmd": [
"phpmd src html cleancode,codesize,controversial,design,naming,unusedcode > public/phpmd.html"
],
"test": [
"phpunit"
]
},
"scripts-descriptions": {
"phpins": "Runs nunomaduro's PHPInsights. This gives you a report about the current code quality.",
"phpmd": "Runs PHPMD based on original configuration. You can find the new mess detector report at http://localhost/vendor/prequel/phpmd.html Note that 'Avoid using static access to class' errors should be ignored.",
"test": "Runs the default PHPUnit test suite configured in phpunit.xml"
}
}