-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 808 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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
{
"name": "api-skeletons/laravel-hal",
"description": "Hypertext Application Language for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom H Anderson",
"email": "tom.h.anderson@gmail.com"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.0 || ^9.0",
"nesbot/carbon": "^2.30",
"kylekatarnls/update-helper": "^1.2.1"
},
"autoload": {
"psr-4": {
"ApiSkeletons\\Laravel\\HAL\\": "src/",
"ApiSkeletonsTest\\Laravel\\HAL\\": "test/src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"doctrine/coding-standard": "^8.2",
"php-coveralls/php-coveralls": "^2.4",
"vimeo/psalm": "^4.18"
}
}