-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.03 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
{
"name": "jacksleight/statamic-bard-texstyle",
"autoload": {
"psr-4": {
"JackSleight\\StatamicBardTexstyle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Bard Texstyle",
"description": "This Statamic addon allows you to add custom element styles and attributes to the Bard fieldtype.",
"editions": ["free", "pro"]
},
"laravel": {
"providers": [
"JackSleight\\StatamicBardTexstyle\\ServiceProvider"
]
}
},
"require": {
"statamic/cms": "^4.56|^5.0"
},
"require-dev": {
"nunomaduro/collision": "^7.4",
"orchestra/testbench": "^8.3",
"pestphp/pest": "^2.4",
"pestphp/pest-plugin-watch": "^2.0"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
}
}