-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
48 lines (48 loc) · 1.32 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": "flux-se/payum-stripe-bundle",
"description": "Payum Stripe gateways bundle",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"flux-se/payum-stripe": "^2.0",
"payum/payum-bundle": "^2.4",
"symfony/http-kernel": "^4.4|^5.4|^6.0",
"symfony/dependency-injection": "^4.4|^5.4|^6.0",
"symfony/config": "^4.4|^5.4|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8|^9",
"symplify/easy-coding-standard": "^11",
"php-http/guzzle6-adapter": "^2.0",
"phpstan/phpstan": "^1",
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": { "FluxSE\\PayumStripeBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\FluxSE\\PayumStripeBundle\\": "tests/" }
},
"scripts": {
"analyse": [
"@composer validate --strict",
"vendor/bin/ecs check .",
"vendor/bin/phpstan.phar analyse -c phpstan.neon -l max src/",
"vendor/bin/psalm"
],
"fix": [
"vendor/bin/ecs check . --fix"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"authors": [
{
"name": "Francis HILAIRE",
"email": "Prometee@users.noreply.github.com"
}
]
}