-
Notifications
You must be signed in to change notification settings - Fork 112
/
composer.json
42 lines (42 loc) · 1.1 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
{
"name": "prestashop/blockwishlist",
"description": "PrestaShop module blockwishlist",
"homepage": "https://github.com/PrestaShop/blockwishlist",
"license": "AFL-3.0",
"type": "prestashop-module",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"config": {
"platform": {
"php": "7.2.5"
},
"preferred-install": "dist",
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true,
"prepend-autoloader": false
},
"require-dev": {
"prestashop/php-dev-tools": "^4.3"
},
"autoload": {
"psr-4": {
"PrestaShop\\Module\\BlockWishList\\": "src/"
},
"classmap": [
"blockwishlist.php",
"controllers",
"classes"
]
},
"scripts": {
"set-license-header": [
"@php ./vendor/bin/header-stamp --license=\"assets/afl.txt\" --exclude=\".github,.webpack,node_modules,vendor\""
]
},
"author": "PrestaShop"
}