-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
executable file
·42 lines (42 loc) · 1.03 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
{
"name": "sbarbat/sylius-sagepay-plugin",
"type": "sylius-plugin",
"description": "The Payum Sagepay plugin",
"keywords": ["payment", "sagepay", "winebuyers"],
"homepage": "https://sbarbat.com",
"license": "MIT",
"authors": [
{
"name": "Santiago Barbat",
"homepage": "https://sbarbat.com"
}
],
"require": {
"php": "^7.1",
"sylius/sylius": "^1.1",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpspec/phpspec": "^7.1",
"php-http/guzzle6-adapter": "^2.0",
"behat/behat": "^3.8",
"symplify/easy-coding-standard": "^9.4",
"sylius-labs/coding-standard": "^4.1",
"phpstan/phpstan": "^0.12.94"
},
"autoload": {
"psr-4": {
"Sbarbat\\SyliusSagepayPlugin\\": "src/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
}
}
}