-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.22 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
{
"name": "lee-to/laravel-seo-by-url",
"description": "Easy seo for Laravel and MoonShine",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Danil Shutsky",
"email": "info@cutcode.ru",
"homepage": "https://github.com/lee-to"
}
],
"require": {
"php": "^8.0|^8.1|^8.2"
},
"require-dev": {
"fakerphp/faker": "^1.9.2",
"phpunit/phpunit": "^9.5.8",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^7.5"
},
"autoload": {
"psr-4": {
"Leeto\\Seo\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Leeto\\Seo\\Tests\\": "tests/",
"Leeto\\Seo\\Database\\Factories\\": "database/factories/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"extra": {
"laravel": {
"providers": [
"Leeto\\Seo\\Providers\\SeoServiceProvider"
],
"aliases": {
"Seo": "Leeto\\Seo\\Seo"
}
}
}
}