-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 903 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
{
"name": "fetchleo/laravel-xml",
"license": "MIT",
"description": "Convert Eloquent models to XML, as well as normal objects.",
"homepage": "https://github.com/fetchleo/laravel-xml",
"keywords": [
"xml",
"convert",
"eloquent",
"laravel",
"laravel-xml",
"eloquent-xml",
"convert-xml",
"fetchleo"
],
"authors": [
{
"name": "Leo Smith",
"email": "[email protected]",
"role": "Maintainer"
}
],
"autoload": {
"psr-0": {
"FetchLeo\\LaravelXml\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "4.*",
"php": ">=7.0.0"
},
"require": {
"illuminate/support": "^5.2",
"illuminate/database": "^5.2",
"orchestra/testbench": "~3.0",
"mockery/mockery": "~0.9"
}
}