forked from digitickets/omnipay-stripe-checkout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.1 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
{
"name": "digitickets/omnipay-stripe-checkout",
"type": "library",
"description": "Payment Gateway driver for Stripe (Checkout)",
"keywords": [
"Stripe",
"Checkout",
"gateway",
"merchant",
"omnipay",
"pay",
"payment"
],
"homepage": "https://github.com/digitickets/omnipay-stripe-checkout",
"license": "MIT",
"authors": [
{
"name": "Glenn Jenkins",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"scpService": "lib"
},
"psr-4": {
"DigiTickets\\Stripe\\": "src",
"DigiTickets\\StripeTests\\": "tests"
}
},
"require": {
"php": "^7",
"omnipay/common": "^3.0",
"stripe/stripe-php": "^7.75"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"mockery/mockery": "~0.8",
"omnipay/tests": "~2.0",
"satooshi/php-coveralls": "^1.0"
},
"scripts": {
"run-sa": "vendor/bin/phpstan analyse --ansi --no-progress -c phpstan.neon -l 4 src tests",
"run-fixer": "vendor/bin/php-cs-fixer fix",
"run-tests": "vendor/bin/phpunit"
}
}