forked from rtconner/laravel-likeable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 841 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
{
"name": "cloud9business/eloquent-likeable",
"description": "Trait for Laravel Eloquent models to allow easy implementation of a 'like' or 'favorite' or 'remember' feature.",
"license": "MIT",
"homepage": "http://www.cloud9business.com/packages/eloquent-likeable-favorite",
"keywords": ["trait", "laravel", "eloquent", "likeable", "likable", "like", "remember", "follow", "favorite", "favourite"],
"authors": [
{
"name": "Stephen Neander",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/database": "4.*",
"illuminate/config": "4.*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"doctrine/dbal": "2.5.x-dev",
"orchestra/testbench": "2.2.*"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"cloud9business\\EloquentLikeable\\": "src/"
}
}
}