forked from raphaelstolt/php-jsonpointer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·40 lines (40 loc) · 1.1 KB
/
composer.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.1 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
{
"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": "raphael.stolt@gmail.com",
"homepage": "http://raphaelstolt.blogspot.com/"
}
],
"support": {
"issues": "https://github.com/raphaelstolt/php-jsonpointer/issues"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "8.*",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-0": {
"Rs\\Json": "src/"
}
},
"scripts": {
"test": "phpunit",
"cs-fix": "php-cs-fixer fix . -vv || true",
"cs-lint": "php-cs-fixer fix --diff --stop-on-violation --verbose --dry-run"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}