-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.04 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
{
"name": "metisfw/stripe",
"type": "library",
"description": "Stripe integration for Nette Framework",
"keywords": ["nette", "stripe", "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": "Martin Jonáš",
"email": "martin.jonas@growjob.com"
}
],
"support": {
"email": "dev@growjob.com",
"issues": "https://github.com/MetisFW/Stripe/issues"
},
"require": {
"php": ">=7.4",
"nette/di": "^3.0",
"nette/application": "^3.0",
"stripe/stripe-php": "^7.45.0",
"tracy/tracy": "*"
},
"require-dev": {
"nette/bootstrap": "^3.0@dev",
"nette/robot-loader": "^3.0@dev",
"nette/tester": "^2.4@dev",
"mockery/mockery": "^1.5@dev",
"phpstan/phpstan": "*",
"phpstan/phpstan-nette": "*"
},
"autoload": {
"psr-0": {
"MetisFW\\Stripe\\": "src/"
}
},
"archive": {
"exclude": ["tests"]
}
}