-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.1 KB
/
composer.json
File metadata and controls
46 lines (46 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
41
42
43
44
45
46
{
"name": "stubbles/xml",
"type": "library",
"license": "BSD-3-Clause",
"description": "Classes to work with XML",
"require": {
"php": "^8.3",
"ext-mbstring": "*",
"ext-libxml": "*",
"stubbles/ioc": "^12.0",
"stubbles/reflect": "^11.1",
"stubbles/date": "^10.0",
"stubbles/xml-attributes": "^1.0"
},
"require-dev": {
"ext-xsl": "*",
"ext-dom": "*",
"ext-xmlwriter": "*",
"mikey179/vfsstream": "^1.6.12",
"phpunit/phpunit": "^12.5",
"bovigo/callmap": "^9.0",
"bovigo/assert": "^8.1",
"stubbles/sequence": "^11.0"
},
"autoload": {
"psr-4": {
"stubbles\\xml\\": "src/main/php"
}
},
"autoload-dev": {
"psr-4": {
"stubbles\\xml\\": "src/test/php",
"stubbles\\helper\\": "src/test/helper"
}
},
"extra": {
"branch-alias": {
"dev-main": "10.1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}