-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
38 lines (38 loc) · 1020 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
34
35
36
37
38
{
"name": "prestashop/gamification",
"description": "PrestaShop module gamification",
"homepage": "https://github.com/PrestaShop/gamification",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*"
},
"require-dev": {
"prestashop/php-dev-tools": "^3.4",
"phpunit/phpunit": "~5.7",
"mockery/mockery": "^1.2",
"symfony/phpunit-bridge": "^5.2",
"symfony/debug": "^3.4"
},
"config": {
"preferred-install": "dist",
"classmap-authoritative": true,
"optimize-autoloader": true,
"prepend-autoloader": false,
"platform": {
"php": "5.6.0"
}
},
"scripts": {
"cs-fix": "@php ./vendor/bin/php-cs-fixer fix",
"cs-fix-test": "@php ./vendor/bin/php-cs-fixer fix --diff --dry-run --stop-on-violation --show-progress=dot",
"test": "SYMFONY_PHPUNIT_VERSION=5.7 php ./vendor/bin/simple-phpunit"
},
"type": "prestashop-module"
}