-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
46 lines (46 loc) · 1.08 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
{
"name": "metisfw/paypal",
"type": "library",
"description": "PayPal SDK integration for Nette Framework",
"keywords": ["nette", "paypal", "pay", "checkout", "payment"],
"homepage": "https://github.com/MetisFW",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "GrowJOB s.r.o",
"email": "dev@growjob.com"
},
{
"name": "Hynek Vilímek",
"email": "hynek.vilimek@growjob.com"
}
],
"support": {
"email": "dev@growjob.com",
"issues": "https://github.com/MetisFW/PayPal/issues"
},
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-json": "*",
"nette/di": "^2.4",
"nette/application": "^2.4",
"paypal/rest-api-sdk-php": "^1.14"
},
"require-dev": {
"nette/bootstrap": "^2.4",
"nette/robot-loader": "^2.4",
"nette/tester": "^2.0",
"mockery/mockery": "^1.3",
"phpstan/phpstan": "^0.11||1.*",
"phpstan/phpstan-nette": "*"
},
"autoload": {
"psr-0": {
"MetisFW\\PayPal\\": "src/"
}
},
"archive": {
"exclude": ["tests", ".travis.yml"]
}
}