forked from strickdj/acf-field-address
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.58 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "strickdj/acf-address",
"description": "Advanced Custom Fields Address Plugin",
"keywords": ["wordpress", "plugin", "acf", "address"],
"homepage": "https://github.com/strickdj/acf-field-address",
"license": "MIT",
"authors": [
{
"name": "Daris Strickland",
"email": "daris.strickland@gmail.com",
"homepage": "http://daris-strickland.com/"
}
],
"type": "wordpress-plugin",
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
},
{
"type": "git",
"url": "git@bitbucket.org:simadmin/acf-plugin-mirror.git"
},
{
"type": "git",
"url": "git@github.com:strickdj/ACF-Address-Test-Theme.git"
}
],
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"require": {
"php": ">=5.3.2",
"composer/installers": "~1.8"
},
"require-dev": {
"codeception/codeception": "*",
"simadmin/acf-mirror": "5.3.4",
"strickdj/ACF-Address-Test-Theme": "dev-master",
"johnpbloch/wordpress": "4.4.2",
"vlucas/phpdotenv": "^2.0.1",
"phpunit/phpunit": "*",
"symfony/debug": "^3.0",
"site5/phantoman": "^1.0",
"jakoch/phantomjs-installer": "^2.1"
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
},
"extra": {
"installer-paths": {
"src/app/plugins/{$name}/": ["type:wordpress-plugin"],
"src/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "src/wp"
}
}