This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
66 lines (65 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "faktiva/prestashop-clean-urls",
"description": "Prestashop\"Clean URLs\" module. It removes objects' IDs from URLs.",
"homepage": "https://github.com/faktiva/prestashop-clean-urls",
"license": "MIT",
"type": "prestashop-module",
"authors": [
{
"name": "Emiliano 'AlberT' Gabrielli",
"email": "[email protected]",
"homepage": "http://faktiva.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/faktiva/prestashop-clean-urls/issues",
"source": "https://github.com/faktiva/prestashop-clean-urls/releases/latest",
"email": "[email protected]"
},
"replace": {
"zizuu-store/zzcleanurls": "*"
},
"minimum-stability": "stable",
"config": {
"bin-dir": "bin",
"github-protocols": ["https"],
"archive-format": "zip",
"preferred-install": "dist",
"optimize-autoloader": true,
"platform": {
"php": "5.3.9"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.12",
"sensiolabs/security-checker": "^4.0",
"symfony/var-dumper": "^2.0 || ^3.0",
"symfony/debug": "^2.0 || ^3.0"
},
"require": {
"php": "^5.3.9 || ^7.0",
"composer/installers": "^1.4"
},
"extra": {
"installer-name": "faktiva_cleanurls"
},
"scripts": {
"chk-cs": [
"php-cs-fixer -vvv fix --dry-run"
],
"chk-sec": [
"security-checker -vv security:check"
],
"check": [
"@chk-cs",
"@chk-sec"
],
"fix-cs": [
"php-cs-fixer -vvv fix"
],
"zip": [
"git archive -o faktiva_clean_urls.zip --prefix=faktiva_cleanurls/ "
]
}
}