-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.24 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
{
"name": "paytic/payments-stripe",
"description": "Payments module for paytic library for stripe",
"license": "MIT",
"type": "library",
"keywords": [],
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"homepage": "https://github.com/paytic/payments-stripe",
"require": {
"php": "^7.4 || ^8.0",
"paytic/omnipay-common": "^3.0",
"omnipay/stripe": "^2.0 || ^3.0",
"stripe/stripe-php": "^10.0"
},
"require-dev": {
"bytic/form": "^1.0",
"paytic/payments": "^1.0",
"paytic/payments-tests": "^1.0",
"vlucas/phpdotenv": "^4.0",
"symfony/http-client": "^5.0|^6.0"
},
"suggest": {
"bytic/facebook-pixel": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Paytic\\Payments\\Stripe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paytic\\Payments\\Stripe\\Tests\\": "tests/src",
"Paytic\\Payments\\Stripe\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"bytic/phpqatools": true
}
}
}