-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 902 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
35
36
37
38
39
40
41
{
"name": "uwla/ltags",
"description": "Laravel Tagging System",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/uwla/ltags",
"autoload": {
"psr-4": {
"Uwla\\Ltags\\": "src/",
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "uwla"
}
],
"require": {
"illuminate/database": "^11.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.0",
"nunomaduro/phpinsights": "^2.11"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Uwla\\Ltags\\TagServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}