-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
58 lines (58 loc) · 1.52 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
{
"name": "nosto/php-sdk",
"version": "7.5.1",
"description": "PHP SDK for developing Nosto modules for e-commerce platforms",
"license": "BSD-3-Clause",
"require-dev": {
"codeception/specify": "^0.4.6",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^2.6",
"sebastian/phpcpd": "^3.0",
"phing/phing": "2.*",
"codeception/c3": "^2.6",
"symfony/console": "3.*",
"wimg/php-compatibility": "^9.0",
"codeception/codeception": "4.1.*",
"codeception/module-asserts": "1.3.*",
"phan/phan": "2.6",
"staabm/annotate-pull-request-from-checkstyle": "^1.1",
"mridang/pmd-annotations": "^0.0.2"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/magento/marketplace-eqp"
}
],
"autoload": {
"psr-4": {
"Nosto\\": "src"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require": {
"php": ">=5.5",
"phpseclib/phpseclib": "3.0.*",
"vlucas/phpdotenv": "^2.4 || ^3.6",
"ext-json": "*",
"ext-curl": "*"
},
"scripts": {
"post-install-cmd": "if [ -f ./vendor/bin/phpcs ]; then \"vendor/bin/phpcs\" --config-set installed_paths vendor/wimg/php-compatibility; fi",
"post-update-cmd" : "if [ -f ./vendor/bin/phpcs ]; then \"vendor/bin/phpcs\" --config-set installed_paths vendor/wimg/php-compatibility; fi",
"ci:inspect": "./inspect.sh"
},
"config": {
"process-timeout": 3600,
"allow-plugins": {
"codeception/c3": true
}
}
}