-
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) · 758 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 758 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": "media-store-net/xml-parser",
"description": "XmlParser is a package parse xml to a object and object to xml, this package depends on XSD2PHP",
"require": {
"php": ">=8.0",
"goetas-webservices/xsd2php-runtime": "^0.2.17",
"doctrine/annotations": "^2.0"
},
"version": "0.1.4",
"license": "MIT",
"authors": [
{
"name": "Artur Voll",
"email": "artur.voll@gmail.com"
}
],
"autoload": {
"psr-4": {
"MediaStoreNet\\XmlParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MediaStoreNet\\XmlParser\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^10.5.45",
"phpstan/phpstan": "2.1.x-dev"
}
}