-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
51 lines (51 loc) · 1.14 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
48
49
50
51
{
"name": "prestasafe/prettyblocks",
"description": "Theme manager for prestashop",
"license": "AFL-3.0",
"keywords": [
"prestashop",
"theme"
],
"authors": [
{
"name": "PrestaSafe",
"homepage": "https://www.prestasafe.com"
}
],
"require": {
"php": ">=5.6.0",
"scssphp/scssphp": "^1.11.0"
},
"require-dev": {
"prestashop/php-dev-tools": "^4.3"
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false
},
"autoload": {
"psr-4": {
"PrestaSafe\\PrettyBlocks\\": "src/",
"PrestaSafe\\PrettyBlocks\\Fields\\": "classes/prettyblocks/fields/",
"PrestaSafe\\PrettyBlocks\\Interfaces\\": "classes/prettyblocks/interfaces/",
"PrestaSafe\\PrettyBlocks\\Core\\": "classes/prettyblocks/core/"
},
"classmap": [
"prettyblocks.php",
"classes"
],
"exclude-from-classmap": []
},
"scripts": {
"lint": [
"php-cs-fixer fix --no-interaction --dry-run --diff"
],
"fix": [
"php-cs-fixer fix"
],
"autoindex": [
"vendor/bin/autoindex prestashop:add:index ./"
]
},
"type": "prestashop-module"
}