-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
31 lines (31 loc) · 925 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
{
"name": "joppuyo/acf-image-aspect-ratio-crop",
"description": "ACF field that allows user to crop image to a specific aspect ratio",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Johannes Siipola",
"email": "johannes@siipo.la"
}
],
"require-dev": {
"codeception/module-db": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/util-universalframework": "^1.0",
"lucatume/wp-browser": "^3.0",
"wp-cli/wp-cli-bundle": "^2.5"
},
"scripts": {
"test-host": "chromedriver --whitelisted-ips='' --url-base=/wd/hub",
"test": "vendor/bin/codecept run acceptance --fail-fast"
},
"config": {
"process-timeout": 0,
"allow-plugins": true
}
}