-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 850 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 850 Bytes
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
{
"name": "outlandish/calendar-event-sync",
"description": "WordPress plugin to create posts from calendar entries",
"minimum-stability": "dev",
"license": "GPL-2.0+",
"authors": [
{
"name": "Outlandish Cooperative",
"email": "hello@outlandish.com",
"homepage":"https://outlandish.com"
}
],
"type": "wordpress-plugin",
"require": {
"php": ">=7.2",
"composer/installers": "~1.0||~2.0",
"google/apiclient": "v2.4.1",
"wp-cli/wp-cli": "~2.5",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Outlandish\\CalendarEventSync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Outlandish\\CalendarEventSync\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"require-dev": {
"brain/monkey": "2.*",
"phpunit/phpunit": "7.*",
"pcov/clobber": "^2.0"
}
}