This repository was archived by the owner on Dec 5, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.16 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "sebsept/ps_dev_base",
"description": "Tools for quality Prestashop Module development.",
"minimum-stability": "stable",
"license": "AFL-3.0",
"authors": [
{
"name": "Sébastien Monterisi",
"email": "contact@seb7.fr"
}
],
"autoload": {
"psr-4": {
"SebSept\\PsDevToolsPlugin\\": "src/"
}
},
"require": {
"composer-plugin-api": "^2.0",
"php": ">=7.2.5",
"ext-json": "*",
"phpstan/phpstan": "^1.9.1"
},
"require-dev": {
"composer/composer": "^2.0"
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.2.5"
}
},
"scripts": {
"post-install-cmd": "phive install --trust-gpg-keys E82B2FB314E9906E,0F9684B8B16B7AB0,CF1A108D0E7AE720",
"post-update-cmd": "phive update",
"php-cs-fixer": [
"tools/php-cs-fixer fix"
],
"phpstan": [
"tools/phpstan analyse"
],
"fix": "@php-cs-fixer",
"pre-commit": [
"composer validate"
]
},
"type": "composer-plugin",
"extra": {
"class": "SebSept\\PsDevToolsPlugin\\Composer\\PsDevToolsPlugin"
},
"provide": {
"prestashop/autoindex": "^1.0"
},
"suggest": {}
}