-
Notifications
You must be signed in to change notification settings - Fork 168
/
composer.json
48 lines (48 loc) · 1.2 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
{
"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", "laravel-tag"],
"authors": [
{
"name": "Robert Conner",
"email": "[email protected]",
"homepage": "https://robertconner.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/database": "^8.67|^9.0|^10.0|^11.0",
"illuminate/support": "^8.67|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^9.8.0",
"phpunit/phpunit": "10.5.39",
"mockery/mockery": "1.*",
"laravel/pint": "^1.18"
},
"autoload": {
"psr-4": {
"Conner\\Tagging\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Conner\\Tests\\Tagging\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Conner\\Tagging\\Providers\\TaggingServiceProvider"
]
}
},
"scripts": {
"test": ""
},
"minimum-stability": "dev",
"prefer-stable": true
}