-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·60 lines (60 loc) · 1.63 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
{
"name": "invertus/saferpay",
"type": "project",
"description": "Saferpayofficial module for Prestashop",
"autoload": {
"psr-4": {
"Invertus\\SaferPay\\": "src/"
},
"classmap": [
"src/Entity"
]
},
"autoload-dev": {
"psr-4": {
"Invertus\\SaferPay\\Tests\\": "tests/"
}
},
"config": {
"prepend-autoloader": false,
"platform": {
"php": "5.6"
}
},
"repositories": {
"knapsack": {
"type": "vcs",
"url": "https://github.com/Invertus/Knapsack.git"
},
"lock": {
"type": "vcs",
"url": "https://github.com/Invertus/lock.git",
"no-api": true
}
},
"require": {
"vlucas/phpdotenv": "^3.6",
"symfony/expression-language": "^3.4",
"symfony/config": "^3.4",
"symfony/dependency-injection": "^3.4",
"symfony/filesystem": "^3.4",
"apimatic/unirest-php": "^2.3",
"symfony/yaml": "^3.4",
"league/container": "2.5.0",
"invertus/lock": "^1.0.0",
"invertus/knapsack": "^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpunit/phpunit": "*",
"behat/behat": "*",
"symfony/translation": "*",
"prestashop/php-dev-tools": "^3.16"
},
"scripts": {
"test-integration": "./vendor/bin/phpunit --configuration ./tests/Integration/phpunit.xml",
"test-unit": "./vendor/bin/phpunit --configuration tests/Unit/phpunit.xml"
},
"author": "PrestaShop",
"license": "AFL-3.0"
}