-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
45 lines (45 loc) · 1.05 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
{
"name": "sixlive/json-schema-assertions",
"description": "JSON Schema assertions",
"keywords": [
"sixlive",
"json_matchers",
"json",
"schema"
],
"homepage": "https://github.com/sixlive/json-schema-assertions",
"license": "MIT",
"authors": [
{
"name": "TJ Miller",
"email": "[email protected]",
"homepage": "https://tjmiller.me",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"swaggest/json-schema": "^0.12.0",
"phpunit/phpunit": "^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"sixlive\\JsonSchemaAssertions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --config=./.php-cs-fixer.dist.php",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2"
}
}