-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (37 loc) · 998 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
{
"name": "rmasters/filter",
"description": "Makes input and output filtering Eloquent models easy",
"keywords": ["laravel", "filter", "eloquent"],
"license": "MIT",
"authors": [
{
"name": "Ross Masters",
"email":"[email protected]"
}
],
"homepage": "https://github.com/rmasters/filter",
"support": {
"issues": "https://github.com/rmasters/filter/issues",
"wiki": "https://github.com/rmasters/filter/wiki"
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.*",
"illuminate/container": "4.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"satooshi/php-coveralls": "dev-master",
"mockery/mockery": "dev-master@dev",
"illuminate/database": "4.*"
},
"autoload": {
"psr-0": {
"Filter": "src/"
}
},
"minimum-stability": "dev",
"config": {
"preferred-install": "dist"
}
}