This repository was archived by the owner on Jun 28, 2019. It is now read-only.
forked from TestingUcu2017/TestingOpenCart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (41 loc) · 1.5 KB
/
composer.json
File metadata and controls
42 lines (41 loc) · 1.5 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
{
"name": "opencart/opencart",
"type": "project",
"description": "OpenCart",
"keywords": ["opencart", "ecommerce", "framework", "opensource"],
"homepage": "http://www.opencart.com",
"license": "GPL-3.0+",
"require": {
"cardinity/cardinity-sdk-php": "^1.0",
"braintree/braintree_php" : "3.2.0",
"leafo/scssphp": "0.0.12",
"divido/divido-php": ">=1.1.1",
"klarna/kco_rest": "^2.2",
"php": ">=5.4.0",
"ext-curl": "*",
"padraic/phar-updater": "^1.0",
"psr/log": "1.0.0",
"symfony/config": "^2.1 || ^3.0",
"symfony/console": "^2.1 || ^3.0",
"symfony/stopwatch": "^2.0 || ^3.0",
"symfony/yaml": "^2.0 || ^3.0"
},
"bin": ["bin/coveralls"],
"scripts": {
"install-devtools": [
"cd devtools && composer update --no-interaction"
],
"sca": [
"php devtools/vendor/bin/php-cs-fixer fix --dry-run -vv",
"php devtools/vendor/bin/phpcs --standard=build/config/phpcs.xml --ignore=*.html.php,*.config.php,*.twig.php src",
"php devtools/vendor/bin/phpmd src text build/config/phpmd.xml"
],
"apigen": [
"php devtools/vendor/bin/apigen -c build/config/apigen.neon -d build/api -s src -s vendor/symfony/config -s vendor/symfony/console -s vendor/symfony/yaml -s vendor/guzzle/guzzle/src -s vendor/psr/log --report build/logs/checkstyle-apigen.xml --exclude *Test.php --exclude */Tests/* --google-analytics UA-40398434-1"
]
},
"require-dev": {
"codeception/codeception": "^2.3",
"friendsofphp/php-cs-fixer": "^2.0.0"
}
}