-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
46 lines (39 loc) · 890 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
40
41
42
43
44
45
46
{
"name": "rodenastyle/stream-parser",
"description": "PHP Multiformat Streaming Parser",
"keywords": ["php7", "laravel", "stream", "parser", "pull", "xml", "csv", "json"],
"license": "MIT",
"authors": [
{
"name": "Sergio Ródenas",
"homepage": "https://rodenastyle.com",
"role": "developer"
}
],
"require": {
"php": ">=7.1",
"ext-xmlreader": "*",
"illuminate/collections": "^8.0|^9.0|^10.0",
"maxakawizard/json-collection-parser": "^1.1"
},
"require-dev": {
"mockery/mockery": "^0.9.9",
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Rodenastyle\\StreamParser\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rodenastyle\\StreamParser\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}