-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (30 loc) · 802 Bytes
/
composer.json
File metadata and controls
31 lines (30 loc) · 802 Bytes
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
{
"name": "comperio/domain-specific-query",
"type": "library",
"description": "Build and define queries specific to the application domain and compile them into other formats",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Nicolò Martini",
"email": "nicmartnic@gmail.com"
}
],
"require": {
"php": ">=5.4",
"nicmart/string-template": "~0.1",
"nicmart/dsq-expression": "~0.1",
"nicmart/building": "~0.1",
"nicmart/universal-matcher": "~0.1",
"jakubledl/dissect": "~1"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"DSQ\\": "src/",
"DSQ\\Test\\": "tests/"
}
}
}