-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 1.02 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
{
"name": "igaster/eloquent-decorator",
"description": "A simple Trait that implements the Decorator pattern on Laravel eloquent models.",
"keywords": ["decorator pattern", "decorate eloquent", "decorate models", "decorate", "decorator","laravel-5.x", "trait"],
"license": "MIT",
"homepage": "https://github.com/igaster/eloquent-decorator.git",
"authors": [
{
"name": "Giannis Gasteratos",
"email": "[email protected]"
}
],
"require": {
"illuminate/contracts": "5.* || ^6.0"
},
"require-dev": {
"orchestra/testbench": "^4.0",
"facade/ignition": "^1.4",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4" : {
"igaster\\EloquentDecorator\\" : "src/",
"igaster\\EloquentDecorator\\Tests\\" : "tests/"
}
},
"minimum-stability": "stable"
}