This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
49 lines (49 loc) · 1.85 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
{
"name": "nosto/nosto-magento-extension",
"description": "Nosto Magento extension",
"license": "OSL-3.0",
"type": "magento-module",
"repositories": {
"magento-eqp": {
"type": "vcs",
"url": "https://github.com/magento/marketplace-eqp"
},
"magento-mirror": {
"type": "package",
"package": {
"name": "openmage/magento-mirror",
"version": "1.9",
"source": {
"url": "https://github.com/openMage/magento-mirror",
"type": "git",
"reference": "origin/magento-1.9"
}
}
}
},
"require": {
"php": ">=5.4.0",
"nosto/php-sdk": "3.15.*",
"ext-json": "*"
},
"require-dev": {
"phan/phan": "^2.6",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "4.1.0",
"phing/phing": "2.*",
"mridang/magazine": "0.2",
"magento-ecg/coding-standard": "3.*",
"magento/marketplace-eqp": "4.*",
"openmage/magento-mirror": "1.9",
"phpcompatibility/php-compatibility": "^9.0",
"mridang/pearify": "0.3",
"vlucas/phpdotenv": ">=2.4.0 <3.0",
"mridang/pmd-annotations": "^0.0.2",
"staabm/annotate-pull-request-from-checkstyle": "^1.1"
},
"scripts": {
"post-install-cmd": "if ! type \"composer\" > /dev/null; then echo \"composer not available in path - you must update the lib files manually\"; else composer dump-autoload --optimize; ./vendor/bin/pearify process .;fi",
"post-update-cmd": "if ! type \"composer\" > /dev/null; then echo \"composer not available in path - you must update the lib files manually\"; else composer dump-autoload --optimize; ./vendor/bin/pearify process .;fi"
}
}