-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 901 Bytes
/
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": "rockbuzz/lara-client",
"description": "identifying client applications",
"keywords": [
"API KEY",
"Laravel"
],
"license": "MIT",
"authors": [
{
"name": "TiagoDevWeb",
"email": "[email protected]"
},
{
"name": "Paulo Henrique P. Scheuermann",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Rockbuzz\\LaraClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"orchestra/testbench": "^3.7",
"squizlabs/php_codesniffer": "^3.2"
},
"scripts": {
"test": "vendor/bin/phpunit --testdox",
"cs": "vendor/bin/phpcs"
},
"extra": {
"laravel": {
"providers": [
"Rockbuzz\\LaraClient\\ServiceProvider"
]
}
}
}