forked from esensi/model
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.17 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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": "esensi/model",
"description": "The base model traits of Esensi",
"keywords": ["emersonmedia", "esensi", "laravel", "model", "trait", "eloquent", "validating", "validation", "encrypting", "hashing", "purge", "purging", "soft deleting", "trashing", "cast", "type", "juggling"],
"authors": [
{
"name": "Emerson Media, LP.",
"email": "wishlist@emersonmedia.com"
},
{
"name": "Daniel LaBarge",
"email": "daniel@bexarcreative.com"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"nesbot/Carbon": "~1.9",
"illuminate/contracts": "~5.0.0",
"illuminate/database": "~5.0.0",
"illuminate/encryption": "~5.0.0",
"illuminate/events": "~5.0.0",
"illuminate/hashing": "~5.0.0",
"illuminate/support": "~5.0.0",
"illuminate/validation": "~5.0.0",
"watson/validating": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"Esensi\\Model\\": "src/"
}
},
"minimum-stability": "stable"
}