-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcomposer.json
37 lines (37 loc) · 1016 Bytes
/
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
{
"version": "2.0.0",
"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": "[email protected]",
"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": "^8.1",
"ext-dom": "*",
"ext-simplexml": "*"
},
"require-dev": {
"peridot-php/peridot": "1.*",
"peridot-php/peridot-code-coverage-reporters": "1.*",
"apigen/apigen": "4.*",
"rector/rector": "^0.18.6"
}
}