-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
39 lines (39 loc) · 920 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
{
"name": "mbarlow/laravel-response-helpers",
"description": "Helpers for Laravel based API responses",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mike Barlow",
"email": "mike@mikebarlow.co.uk"
}
],
"require": {
"illuminate/http": "~5.0|~6.0|~7.0|~8.0|~9.0|~10.0|~11.0|~12.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0.1",
"squizlabs/php_codesniffer": "^3.5",
"orchestra/testbench": "^8.0 || ^9.0"
},
"autoload": {
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"files": [
"tests/helpers.php"
],
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit",
"./vendor/bin/phpcs --standard=PSR2 src"
]
}
}