-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
38 lines (38 loc) · 992 Bytes
/
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
{
"name": "jacksleight/statamic-bard-mutator",
"autoload": {
"psr-4": {
"JackSleight\\StatamicBardMutator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Bard Mutator",
"description": "This Statamic addon allows you to modify the data and tags rendered by the Bard fieldtype, giving you full control over the final HTML."
},
"laravel": {
"providers": [
"JackSleight\\StatamicBardMutator\\ServiceProvider"
]
}
},
"require": {
"statamic/cms": "^5.0"
},
"require-dev": {
"nunomaduro/collision": "^8.1",
"orchestra/testbench": "^9.2",
"pestphp/pest": "^2.0"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
}
}