-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.11 KB
/
composer.json
File metadata and controls
44 lines (44 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
{
"name": "byteferry/rql-parser",
"type": "library",
"description": "A PHP parser for parsing the resource query language(RQL) to php data structure",
"keywords": ["resource query language","rql","api","parser"],
"homepage": "http://byteferry.github.io/rql-parser/",
"license": "MIT",
"authors": [
{
"name": "Bardeen QI",
"email": "67158925@qq.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.2|^7.0|^8.0",
"orchestra/testbench": "^5.5"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.3-dev"
}
},
"autoload": {
"psr-4": {
"ByteFerry\\RqlParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ByteFerry\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"minimum-stability": "dev",
"prefer-stable": true
}