forked from downforcetech/fluidxml.php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 904 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 904 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
31
32
33
{
"name": "servo/fluidxml",
"description": "Concise and fluent XML manipulation library",
"type": "library",
"keywords": ["xml","templating"],
"homepage": "https://github.com/servo-php/fluidxml",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Daniele Orlando",
"email": "fluidxml@danieleorlando.com",
"homepage": "https://github.com/servo-php/fluidxml",
"role": "Developer"
}
],
"config": {
"vendor-dir": "./sandbox/composer/"
},
"autoload": {
"files": ["./source/FluidXml/fluid.php"],
"psr-4": {
"FluidXml\\": "./source/FluidXml/"
}
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"peridot-php/peridot": "1.*",
"peridot-php/peridot-code-coverage-reporters": "1.*",
"apigen/apigen": "4.*"
}
}