forked from rtconner/laravel-tagging
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 821 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
32
33
34
{
"name": "rtconner/laravel-tagging",
"description": "Use PHP traits to extend Laravel Eloquent Models to allow Tags. Models can be marked as Taggable.",
"license": "MIT",
"homepage": "https://smartersoftware.net/packages/laravel-tagging-taggable",
"keywords": ["tag", "tags", "tagging", "laravel", "taggable", "tagged", "eloquent", "laravel5"],
"authors": [
{
"name": "Robert Conner",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/database": ">= 5.0",
"illuminate/support": ">= 5.0"
},
"require-dev": {
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"vlucas/phpdotenv": "~2.0"
},
"autoload": {
"psr-4": {
"Conner\\Tagging\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
}
}