-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
executable file
·42 lines (42 loc) · 1.26 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": "php-jsonpointer/php-jsonpointer",
"description": "Implementation of JSON Pointer (http://tools.ietf.org/html/rfc6901)",
"keywords": ["json", "json pointer", "json traversal"],
"homepage": "https://github.com/raphaelstolt/php-jsonpointer",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Raphael Stolt",
"email": "[email protected]",
"homepage": "http://raphaelstolt.blogspot.com/"
}
],
"support": {
"issues": "https://github.com/raphaelstolt/php-jsonpointer/issues"
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^11.4.4||^10.5.25||^8.0",
"friendsofphp/php-cs-fixer": "^3.0",
"stolt/lean-package-validator": "^3.0"
},
"autoload": {
"psr-0": {
"Rs\\Json": "src/"
}
},
"scripts": {
"test": "phpunit",
"cs-fix": "php-cs-fixer fix . -vv --allow-risky=yes || true",
"cs-lint": "php-cs-fixer fix --diff --stop-on-violation --verbose --allow-risky=yes --dry-run",
"validate-gitattributes": "lean-package-validator validate"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}