-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.89 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
55
56
57
58
59
60
61
62
{
"name": "generalsystemsvehicle/rapid-random-response-unit",
"description": "QuickBase API PHP SDK",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Brian Wells",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^6.5 || ^7.0.1",
"illuminate/support": "^6.11 || ^7.0 || ^8.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"nunomaduro/larastan": "^0.6.10",
"orchestra/testbench": "^6.5",
"phpunit/phpunit": "^9.3",
"rregeer/phpunit-coverage-check": "^0.3.1"
},
"autoload": {
"psr-4": {
"GeneralSystemsVehicle\\QuickBase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GeneralSystemsVehicle\\QuickBase\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"cp -Rfp .githooks/. .git/hooks/; chmod +x .git/hooks/*"
],
"test": [
"phpdbg -qrr vendor/phpunit/phpunit/phpunit --coverage-clover .phpunit/clover.xml --coverage-html .phpunit/coverage --coverage-text",
"coverage-check .phpunit/clover.xml 100",
"phpstan analyse --level=max"
],
"phpunit": "phpunit",
"coverage": [
"phpdbg -qrr vendor/phpunit/phpunit/phpunit --coverage-clover .phpunit/clover.xml --coverage-html .phpunit/coverage --coverage-text",
"coverage-check .phpunit/clover.xml 100"
],
"phpstan": "phpstan analyse --level=max"
},
"extra": {
"laravel": {
"providers": [
"GeneralSystemsVehicle\\QuickBase\\QuickBaseServiceProvider"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}