-
-
Notifications
You must be signed in to change notification settings - Fork 461
/
composer.json
79 lines (79 loc) · 2.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cviebrock/eloquent-sluggable",
"description": "Easy creation of slugs for your Eloquent models in Laravel",
"keywords": [
"eloquent-sluggable",
"eloquent",
"sluggable",
"laravel",
"lumen",
"slug"
],
"homepage": "https://github.com/cviebrock/eloquent-sluggable",
"license": "MIT",
"authors": [
{
"name": "Colin Viebrock",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"cocur/slugify": "^4.3",
"illuminate/config": "^11.0",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"larastan/larastan": "^3.0",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.28",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"Cviebrock\\EloquentSluggable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cviebrock\\EloquentSluggable\\Tests\\": "tests"
}
},
"scripts": {
"analyze": "vendor/bin/phpstan analyze",
"fresh": [
"rm -rf vendor composer.lock",
"composer install"
],
"style:check": "vendor/bin/php-cs-fixer check -v",
"style:fix": "vendor/bin/php-cs-fixer fix -v",
"tests": [
"rm -rf build",
"XDEBUG_MODE=coverage php vendor/bin/pest"
],
"tests:ci": [
"vendor/bin/pest --teamcity"
]
},
"extra": {
"laravel": {
"providers": [
"Cviebrock\\EloquentSluggable\\ServiceProvider"
]
},
"branch-alias": {
"dev-master": "11.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}