-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1.02 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
{
"name": "johnstevenson/json-works",
"description": "Create, edit, query and validate json",
"keywords": ["json", "schema", "validator", "builder"],
"homepage": "http://github.com/johnstevenson/json-works",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "John Stevenson",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"composer/pcre": "^3.1"
},
"autoload": {
"psr-4": {
"JohnStevenson\\JsonWorks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JsonWorks\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6.5",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1"
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"phpstan": "@php vendor/bin/phpstan analyse"
},
"extra": {
"branch-alias": {
"dev-main": "2.2-dev"
}
}
}