-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
39 lines (39 loc) · 1.16 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
{
"name": "cloudflare/cloudflare-magento",
"description": "Cloudflare Plugin for Magento2",
"version": "1.1.8",
"homepage": "https://github.com/cloudflare/Cloudflare-Magento",
"scripts": {
"test": "vendor/phpunit/phpunit/phpunit --bootstrap Test/bootstrap.php Test/ && rm -rf phpUnitGeneratedFiles/",
"lint": "vendor/bin/phpcs -n --standard=PSR2 Backend/ Block/ Controller/ Model/ Observer/ Setup/ Test/",
"format": "vendor/bin/phpcbf --standard=PSR2 Backend/ Block/ Controller/ Model/ Observer/ Setup/ Test/"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~5.6.0|~7.0",
"cloudflare/cloudflare-plugin-backend": "^2.1"
},
"type": "magento2-module",
"license": [
"BSD-3-Clause"
],
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"CloudFlare\\Plugin\\": ""
}
},
"minimum-stability": "alpha",
"require-dev": {
"squizlabs/php_codesniffer": "^2.8",
"phpunit/phpunit": "4.1.0",
"magento/module-backend": "100.1.*",
"magento/module-store": "100.1.*",
"magento/framework": "100.1.*"
}
}