-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
67 lines (67 loc) · 1.83 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
63
64
65
66
67
{
"name": "api-skeletons/laravel-api-problem",
"description": "Problem Details for HTTP APIs for Laravel",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"api-problem",
"laravel",
"rest"
],
"homepage": "https://apiskeletons.com",
"support": {
"docs": "https://github.com/api-skeletons/laravel-api-problem",
"issues": "https://github.com/api-skeletons/laravel-api-problem/issues",
"source": "https://github.com/api-skeletons/laravel-api-problem",
"chat": "https://gitter.im/API-Skeletons/open-source"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"ApiSkeletons\\Laravel\\ApiProblem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiSkeletonsTest\\Laravel\\ApiProblem\\": "test/"
}
},
"authors": [
{
"name": "Tom H Anderson",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"ApiSkeletons\\Laravel\\ApiProblem\\ServiceProvider"
]
}
},
"scripts": {
"test": [
"vendor/bin/parallel-lint src test",
"vendor/bin/phpcs",
"vendor/bin/psalm",
"vendor/bin/phpunit"
]
},
"require": {
"php": "^8.1",
"doctrine/instantiator": "^2.0",
"laravel/framework": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"orchestra/testbench": "^7.41",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.15"
}
}