-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·47 lines (47 loc) · 1.24 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
{
"name": "prestashop/getresponse",
"homepage": "https://github.com/GetResponse/GetresponseForPrestashop",
"description": "GetResponse for PrestaShop",
"authors": [
{
"name": "GetResponse",
"email": "[email protected]",
"homepage": "https://getresponse.com"
}
],
"config": {
"preferred-install": "dist",
"prepend-autoloader": false
},
"type": "prestashop-module",
"minimum-stability": "stable",
"require": {
"php": ">= 5.6",
"beberlei/assert": "2.*"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"prestashop/php-dev-tools": "^3.16",
"phpstan/phpstan": "0.12.40"
},
"autoload": {
"psr-4": {
"GetResponse\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GetResponse\\Tests\\": "tests/"
}
},
"author": "PrestaShop",
"license": "AFL-3.0",
"scripts": {
"run-fixers": [
"php vendor/bin/php-cs-fixer fix",
"vendor/bin/autoindex",
"vendor/bin/header-stamp --license=assets/afl.txt --exclude=vendor"
],
"tests": "vendor/bin/phpunit --configuration tests/phpunit.xml"
}
}