-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathcomposer.json
83 lines (83 loc) · 2.18 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
80
81
82
83
{
"name": "cviebrock/eloquent-taggable",
"description": "Easy ability to tag your Eloquent models in Laravel 5.",
"keywords": [
"laravel",
"eloquent",
"tag",
"tagging",
"taggable"
],
"homepage": "https://github.com/cviebrock/eloquent-taggable",
"support": {
"issues": "https://github.com/cviebrock/eloquent-taggable/issues",
"source": "https://github.com/cviebrock/eloquent-taggable"
},
"license": "MIT",
"authors": [
{
"name": "Colin Viebrock",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/config": "^11.0",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"larastan/larastan": "^3.0",
"orchestra/testbench": "^9.6",
"pestphp/pest": "^2.28",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"Cviebrock\\EloquentTaggable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cviebrock\\EloquentTaggable\\Test\\": "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"
],
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"extra": {
"laravel": {
"providers": [
"Cviebrock\\EloquentTaggable\\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
}
}
}