This repository has been archived by the owner on Nov 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.64 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
{
"name": "talger/barion",
"description": "Metapackage for the Barion offical PHP library",
"type": "metapackage",
"license": "MIT",
"authors": [
{
"name": "Tálos Gergely",
"email": "[email protected]"
},
{
"name": "Barion developers",
"homepage": "https://github.com/barion/barion-web-php/graphs/contributors"
}
],
"homepage": "https://github.com/barion/barion-web-php",
"repositories": [
{
"type": "package",
"package": {
"name": "barion/barion-web-php",
"version": "1.4.2",
"dist": {
"url": "https://github.com/barion/barion-web-php/archive/v1.4.2.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/barion/barion-web-php.git",
"type": "git",
"reference": "v1.4.2"
},
"autoload": {
"classmap": ["library/"],
"files": [
"library/common/Constants.php",
"library/BarionClient.php"
]
}
}
}
],
"require": {
"barion/barion-web-php": "1.4.*"
},
"suggest": {
"cweagans/composer-patches": "Patch BarionClient for PSR-4 autoloading"
},
"extra": {
"patches": {
"barion/barion-web-php": {
"Remove the include of loader.php": "resources/patches/remove-include-loader.patch"
}
}
}
}