-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 752 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 752 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
{
"name": "getdave/wp-intervention",
"description": "WP Intervention provides on-demand image manipulation for WordPress via the Intervention Library",
"license": "MIT",
"authors": [
{
"name": "David Smith",
"email": "getdavemail@gmail.com",
"homepage": "https://aheadcreative.co.uk"
}
],
"type": "wordpress-plugin",
"require": {
"intervention/image": "^2.5",
"composer/installers": "*"
},
"require-dev": {
"symfony/var-dumper": "*",
"php-mock/php-mock-phpunit": "*"
},
"autoload": {
"files": [
"src/plugin.php",
"src/intervention-wrapper.php",
"src/globals.php"
]
}
}