-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.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
{
"name": "ebeauchamps/multi-taxonomies",
"description": "Simplify relations between 2 taxonomies. The value of the second one dynamically adjusts from the value of the first one.",
"autoload": {
"psr-4": {
"ebeauchamps\\MultiTaxonomies\\": "src"
}
},
"authors": [
{
"name": "ebeauchamps"
}
],
"license": "MIT",
"extra": {
"statamic": {
"name": "Multi-Taxonomies"
},
"laravel": {
"providers": [
"ebeauchamps\\MultiTaxonomies\\ServiceProvider"
]
}
},
"require-dev": {
"pestphp/pest": "^2.24",
"pestphp/pest-plugin-laravel": "^2.2",
"orchestra/testbench": "^8.13"
},
"autoload-dev": {
"psr-4": {
"ebeauchamps\\MultiTaxonomies\\Tests\\": "tests/"
},
"classmap": [
"tests/TestCase.php"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"pixelfear/composer-dist-plugin": true
}
},
"minimum-stability": "stable",
"require": {
"statamic/cms": "^4.0 || ^5.0"
}
}