-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
87 lines (87 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "wikimedia/smash-pig",
"description": "The open source PHP flexible payments library and frontend/backend mediator.",
"keywords": ["payments", "donations"],
"homepage": "http://smashpig.org",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Katie Horn",
"email": "khorn@wikimedia.org"
},
{
"name": "Matthew Walker",
"email": "mwalker@wikimedia.org"
},
{
"name": "Adam Roses Wight",
"email": "awight@wikimedia.org"
},
{
"name": "Elliott Eggleston",
"email": "eeggleston@wikimedia.org"
},
{
"name": "Maggie Epps",
"email": "mepps@wikimedia.org"
},
{
"name": "Jack Gleeson",
"email": "jgleeson@wikimedia.org"
},
{
"name": "Christine Stone",
"email": "cstone@wikimedia.org"
},
{
"name": "Andrew Russell Green",
"email": "agreen@wikimedia.org"
}
],
"require": {
"coderkungfu/php-queue": "^1.0",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"php": ">=8.0",
"phpmailer/phpmailer": "^6",
"predis/predis": "^1.1",
"symfony/http-foundation": "^5|^6",
"symfony/yaml": "^4|^5",
"amzn/login-and-pay-with-amazon-sdk-php": "^2.5",
"psr/cache": "^1.0",
"psr/log": "^1.0",
"corneltek/getoptionkit": "^2.5",
"gr4vy/gr4vy-php": "0.23.2"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^9.5",
"ext-sqlite3": "*",
"mediawiki/mediawiki-codesniffer": "^34.0"
},
"scripts": {
"fix": "phpcbf",
"test": [
"parallel-lint . --exclude vendor",
"[ ! -f phpunit.xml ] || phpunit",
"phpcs -p -s"
]
},
"autoload": {
"psr-4": {
"SmashPig\\": "./"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/ejegg/login-and-pay-with-amazon-sdk-php"
}
],
"config": {
"platform": {
"php": "8.2.26"
}
}
}