-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 832 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
32
33
{
"name": "maciejbuchert/magento2-captcha-base64-encoding",
"description": "Replace captcha image writing to the file with base64 encoding",
"keywords": ["magento", "magento2 extension", "magento 2 extension", "extension", "module", "magento2 module", "magento 2 module"],
"type": "magento2-module",
"version": "1.0.0",
"homepage": "https://github.com/maciejbuchert/magento2-captcha-base64-encoding",
"authors": [
{
"name": "Maciej Buchert",
"email": "maciej@buchert.pl"
}
],
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MaciejBuchert\\CaptchaBase64Encoding\\": ""
}
},
"minimum-stability": "alpha",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit"
}
}