This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
forked from wt-health/laravel-json-schema-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.46 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
{
"name": "wt-health/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/wt-health/laravel-json-schema-request",
"license": "MIT",
"authors": [
{
"name": "Byron Adams",
"email": "[email protected]",
"homepage": "https://webtools.nz",
"role": "Developer"
}
],
"require-dev": {
"orchestra/testbench": "^v7.5.0",
"phpunit/phpunit": "^9.2",
"webtoolshealth/php-coding-standard": "^1.0"
},
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^9.17.0",
"justinrainbow/json-schema": "^5.2"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Wthealth\\JsonSchemaRequest\\": "src/",
"Wthealth\\JsonSchemaRequest\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Wthealth\\JsonSchemaRequest\\JsonSchemaRequestServiceProvider"
]
}
},
"scripts": {
"ecs": "vendor/bin/ecs check",
"ecs-fix": "vendor/bin/ecs check --fix",
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
}
}