-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
56 lines (56 loc) · 1.52 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": "imanghafoori/laravel-temp-tag",
"description": "Laravel Temporary Tag simplify tagging Eloquent models.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Iman Ghafoori",
"email": "[email protected]",
"homepage": "https://github.com/imanghafoori1",
"role": "Developer"
}
],
"require": {
"php": "^7.1.3|8.*",
"illuminate/database": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/events": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"doctrine/dbal": "*",
"mockery/mockery": "^1.0",
"orchestra/database": "^3.5|^4.0|^5.0",
"orchestra/testbench": "^3.5|^4.0|^5.0",
"phpunit/phpunit": "^7.5|^8.0|^9.0",
"imanghafoori/php-imports-analyzer": "^1.0.6"
},
"autoload": {
"files" : [
"src/helpers.php"
],
"psr-4": {
"Imanghafoori\\Tags\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imanghafoori\\TempTagTests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Imanghafoori\\Tags\\TempTagServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}