-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
42 lines (42 loc) · 950 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
{
"name": "shalvah/laravel-jsend",
"description": "Laravel helpers to easily send JSend-compliant responses",
"keywords": ["jsend", "laravel", "json"],
"license": "MIT",
"homepage": "http://shalvah.me/laravel-jsend",
"support": {
"issues": "https://github.com/shalvah/laravel-jsend/issues",
"source": "https://github.com/shalvah/laravel-jsend"
},
"authors": [
{
"name": "Shalvah Adebayo",
"email": "shalvah.adebayo@gmail.com"
}
],
"require": {
"php": ">=7.2.5",
"laravel/framework": ">= 7.0"
},
"require-dev": {
"orchestra/testbench": "^5.0|^6.0|8.0",
"phpunit/phpunit": "^8.0|^10.0",
"ext-json": "*"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Shalvah\\LaravelJsend\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shalvah\\LaravelJsend\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit tests"
}
}