forked from laravel-ardent/ardent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.14 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
{
"name": "laravelbook/ardent",
"description": "Self-validating smart models for Laravel 4's Eloquent O/RM",
"keywords": ["validation", "laravel", "framework", "eloquent", "database", "sql", "orm", "activerecord", "active record"],
"type": "library",
"homepage": "http://laravelbook.com/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Max Ehsan",
"homepage": "http://laravelbook.com/",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Igor Santos",
"homepage": "http://www.igorsantos.com.br",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/laravelbook/ardent/issues",
"email": "[email protected]"
},
"require": {
"php": ">=5.3.0",
"illuminate/support": "4.0.x",
"illuminate/database": "4.0.x",
"illuminate/validation": "4.0.x"
},
"autoload": {
"psr-0": {
"LaravelBook\\Ardent": "src/"
}
},
"minimum-stability": "dev"
}