forked from aqualaguna/voyager-page-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.23 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
{
"name": "pvtl/voyager-page-blocks",
"description": "Ahoy! - A package to implement page blocks into Voyager",
"keywords": [
"laravel",
"frontend",
"voyager",
"page",
"blocks"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Pivotal Agency",
"homepage": "http://pivotalagency.com.au",
"email": "[email protected]"
}
],
"require": {
"tcg/voyager": "^1.1",
"pvtl/voyager-frontend": "dev-master",
"pvtl/voyager-pages": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"classmap": [],
"psr-4": {
"Pvtl\\VoyagerPageBlocks\\": "src/"
}
},
"autoload-dev": {
"classmap": [],
"psr-4": {
"Pvtl\\VoyagerPageBlocks\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Pvtl\\VoyagerPageBlocks\\Providers\\PageBlocksServiceProvider"
]
}
},
"scripts": {
"test": "phpunit",
"post-package-install": [
"@php artisan voyager-page-blocks:install"
]
}
}