forked from esensi/model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"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", "casting", "type", "juggling", "slugs", "sluggable"],
"authors": [
{
"name": "Emerson Media, LP.",
"email": "[email protected]"
},
{
"name": "Daniel LaBarge",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=5.5.9",
"nesbot/Carbon": "~1.9",
"illuminate/contracts": "~5.1",
"illuminate/database": "~5.1 || >= 5.1.27",
"illuminate/encryption": "~5.1",
"illuminate/events": "~5.1",
"illuminate/hashing": "~5.1",
"illuminate/support": "~5.1",
"illuminate/validation": "~5.1",
"paragonie/random_compat": "^1|^2",
"symfony/polyfill-php56": "~1.1",
"watson/validating": "~1.0.0 || ~2.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.0.0-alpha",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
},
"autoload": {
"psr-4": {
"Esensi\\Model\\": "src/"
}
},
"scripts": {
"fix": [
"vendor/bin/php-cs-fixer fix -v"
],
"test": [
"vendor/bin/phpunit --colors=always",
"vendor/bin/php-cs-fixer fix -v --diff --dry-run;"
]
},
"config": {
"preferred-install": "dist",
"bin-dir": "vendor/bin"
},
"minimum-stability": "stable"
}