-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (54 loc) · 1.37 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
{
"name": "handmadeweb/buildamic",
"license": "MIT",
"description": "Buildamic is a Pagebuilder addon for Statamic 3",
"keywords": [
"statamic",
"statamic-addon",
"page-builder"
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.80 || ^9.0",
"statamic/cms": "3.2.* || 3.3.*||3.4.*",
"handmadeweb/hookable-actions-filters": "^1.1",
"edalzell/blade-directives": "^3.5"
},
"require-dev": {
"orchestra/testbench": "^6.0 || ^7.0",
"phpunit/phpunit": "^8.5.16 || ^9.5.5"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"HandmadeWeb\\Buildamic\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HandmadeWeb\\Buildamic\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Buildamic",
"description": "Buildamic is a Pagebuilder addon for Statamic 3"
},
"laravel": {
"providers": [
"HandmadeWeb\\Buildamic\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}