-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.76 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
{
"name": "khalyomede/laravel-eloquent-uuid-slug",
"description": "Use auto generated UUID slugs to identify and retrieve your Eloquent models.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"uuid",
"slug",
"package",
"route",
"model",
"binding"
],
"version": "0.11.0",
"autoload": {
"psr-4": {
"Khalyomede\\EloquentUuidSlug\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Tests\\Database\\Factories\\": "tests/database/factories"
}
},
"authors": [
{
"name": "Khalyomede",
"email": "khalyomede@gmail.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"friendsofphp/php-cs-fixer": "3.54.0",
"rector/rector": "1.0.4",
"larastan/larastan": "2.9.5",
"nunomaduro/collision": "8.1.1",
"phpunit/phpunit": "11.1.3",
"orchestra/testbench": "9.0.4"
},
"scripts": {
"test": "testbench package:test",
"analyse": "phpstan analyse",
"lint": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --diff --using-cache=no --allow-risky=yes --dry-run",
"format": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer --using-cache=no --allow-risky=yes fix",
"check": "composer audit --locked --no-dev",
"updates": "composer outdated --strict --direct",
"scan": "rector process --dry-run",
"modernize": "rector process",
"all": "composer run test && composer run analyse && composer run lint && composer run check && composer run scan && composer run updates"
},
"require": {
"php": ">=8.2.0",
"laravel/framework": "11.*"
}
}