-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.17 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
{
"name": "webtoolsnz/laravel-json-schema-request",
"description": "Like FormRequests, but for validating against a json-schema",
"keywords": [
"webtools",
"json-schema",
"laravel",
"FormRequest",
"validation"
],
"homepage": "https://github.com/webtoolsnz/laravel-json-schema-request",
"license": "MIT",
"authors": [
{
"name": "Byron Adams",
"email": "[email protected]",
"homepage": "https://webtools.nz",
"role": "Developer"
}
],
"require-dev": {
"orchestra/testbench": "^5.3",
"phpunit/phpunit": "^9.2"
},
"require": {
"justinrainbow/json-schema": "^5.2",
"php": "^7.4",
"illuminate/support": "^7.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Webtools\\JsonSchemaRequest\\": "src/",
"Webtools\\JsonSchemaRequest\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Webtools\\JsonSchemaRequest\\JsonSchemaRequestServiceProvider"
]
}
}
}