forked from mayconbordin/l5-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·43 lines (43 loc) · 1.19 KB
/
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
{
"name": "mayconbordin/l5-fixtures",
"type": "library",
"description": "A fixtures package for Laravel 5",
"keywords": ["laravel", "laravel 5", "fixtures", "json", "yaml", "csv"],
"homepage": "https://github.com/mayconbordin/l5-fixtures",
"license": "MIT",
"authors": [
{
"name": "Maycon Viana Bordin",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.x",
"illuminate/database": "5.x",
"illuminate/console": "5.x",
"league/csv": "~8.0.0",
"symfony/yaml": ">=2.8.2",
"league/flysystem": "~1.0.16"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9.4"
},
"autoload": {
"psr-4": {
"Mayconbordin\\L5Fixtures\\": "src/Mayconbordin/L5Fixtures/"
}
},
"extra": {
"laravel": {
"providers": [
"Mayconbordin\\L5Fixtures\\FixturesServiceProvider"
],
"aliases": {
"Fixtures": "Mayconbordin\\L5Fixtures\\FixturesFacade"
}
}
},
"minimum-stability": "dev"
}