-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.11 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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": "phpnomad/json-schema",
"description": "Platform-agnostic JSON Schema validation contract for PHPNomad. Ships interfaces only — pair with a concrete integration package (e.g. opis-json-schema-integration).",
"type": "library",
"homepage": "https://github.com/phpnomad/json-schema",
"readme": "README.md",
"license": "MIT",
"keywords": [
"phpnomad",
"json-schema",
"validation",
"abstraction",
"interface"
],
"scripts": {
"php-cs-fixer": "php-cs-fixer fix",
"test": "phpunit"
},
"autoload": {
"psr-4": {
"PHPNomad\\JsonSchema\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"PHPNomad\\JsonSchema\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Alex Standiford",
"email": "alex@standiford.us"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}