forked from PrestaShop/ps_facetedsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.29 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/ps_facetedsearch",
"description": "PrestaShop module ps_facetedsearch",
"homepage": "https://github.com/PrestaShop/ps_facetedsearch",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"require": {
"php": ">=5.6",
"doctrine/collections": "^1.4"
},
"require-dev": {
"prestashop/php-dev-tools": "^3.4",
"phpunit/phpunit": "~5.7",
"mockery/mockery": "^1.2"
},
"config": {
"platform": {
"php": "5.6.0"
},
"preferred-install": "dist",
"prepend-autoloader": false
},
"type": "prestashop-module",
"autoload": {
"psr-4": {
"PrestaShop\\Module\\FacetedSearch\\Controller\\": "src/Controller/",
"PrestaShop\\Module\\FacetedSearch\\": "src/",
"PrestaShop\\Module\\FacetedSearch\\Tests\\": "tests/php/FacetedSearch"
},
"classmap": [
"ps_facetedsearch.php"
]
},
"scripts": {
"test": [
"@php -d date.timezone=UTC ./vendor/bin/phpunit -c tests/php/phpunit.xml"
],
"lint": [
"php-cs-fixer fix --no-interaction --dry-run --diff"
]
}
}