forked from mooeypoo/wikilookup-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 690 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 690 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
{
"name": "Wordpress-Wikilookup",
"description": "A WordPress implementation of wikilookup: add popups from Wikipedia to your site.",
"license": "GPL-3.0-or-later",
"version": "1.0.1",
"authors": [
{
"name": "Moriel Schottlender",
"email": "mooeypoo@gmail.com",
"homepage": "http://moriel.smarterthanthat.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/mooeypoo/wikilookup-wordpress.git"
}
],
"scripts": {
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/"
},
"autoload": {
"psr-4": {
"Wikilookup\\": "includes/"
}
},
"require-dev": {
"phpunit/phpunit": "^8"
}
}