-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.25 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
{
"name": "pickleboxer/pscriticalcss",
"description": "Basic PrestaShop Module",
"authors": [
{
"name": "PickleBoxer",
"email": "matic.vertacnik@icloud.com"
}
],
"require": {
"php": ">=5.6.0",
"jandc/css-from-html-extractor": "^1.2",
"masterminds/html5": "^2.8"
},
"autoload": {
"psr-4": {
"PickleBoxer\\PsCriticalCss\\": "src/"
},
"classmap": [
"pscriticalcss.php",
"controllers",
"classes"
],
"exclude-from-classmap": []
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false
},
"type": "prestashop-module",
"author": "PickleBoxer",
"license": "AFL-3.0",
"require-dev": {
"prestashop/php-dev-tools": "^4.3"
},
"scripts": {
"auto-index": "php vendor/bin/autoindex prestashop:add:index --exclude=.github,.ddev,node_modules,vendor,tests,_dev",
"fix-php-cs": "php vendor/bin/php-cs-fixer fix --dry-run",
"fix-header-stamp": "php vendor/bin/header-stamp --license=vendor/prestashop/header-stamp/assets/afl.txt --exclude=.github,.ddev,node_modules,vendor,tests,_dev,composer.json --dry-run"
}
}