-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
36 lines (36 loc) · 927 Bytes
/
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
{
"name": "helsingborg-stad/api-event-manager-integration",
"description": "Import and display events from Event Manager API.",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Jonatan Hanson",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/helsingborg-stad/acf-export-manager.git"
}
],
"require": {
"php": "^8.0",
"helsingborg-stad/acf-export-manager": ">=1.0.0",
"justinrainbow/json-schema": "^5.2"
},
"autoload": {
"psr-4": {
"EventManagerIntegration\\": "source/php/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit"
},
"version": "2.0.24",
"require-dev": {
"lucatume/function-mocker": "^1.3",
"10up/wp_mock": "^0.5.0"
}
}