-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
39 lines (39 loc) · 929 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
38
39
{
"name": "laravie/parser",
"description": "XML Document Parser for PHP",
"keywords": ["xml", "parser"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Laravie\\Parser\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"require": {
"php": "^8.2",
"ext-simplexml": "*",
"illuminate/collections": "^10.0 || ^11.0 || ^12.0"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.5.3"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}