-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (45 loc) · 1.19 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": "icomefromthenet/bookme",
"description": "A booking module for Bolt CMS",
"type": "bolt-extension",
"keywords": [
"booking",
"reservations"
],
"require": {
"bolt/bolt": "^3.4"
},
"require-dev": {
"phpunit/dbunit": "^1.3 || ^3.0",
"phpunit/php-code-coverage": "^2.0 || ^4.0",
"phpunit/phpunit": "^4.8 || ^5.7"
},
"license": "MIT",
"authors": [
{
"name": "Lewis Dyer",
"email": "getintouch@icomefromthenet.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bolt\\Extension\\IComeFromTheNet\\BookMe\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bolt\\Extension\\IComeFromTheNet\\BookMe\\Tests\\": "tests",
"Bolt\\Tests\\": "vendor/bolt/bolt/tests/phpunit/unit/"
}
},
"extra": {
"bolt-assets": "web",
"bolt-class": "Bolt\\Extension\\IComeFromTheNet\\BookMe\\BookMeExtension",
"bolt-icon": "bolt-icon.png",
"bolt-screenshots": [
"screenshots/screenshot1.png"
]
}
}