-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
52 lines (52 loc) · 1.37 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
52
{
"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": "^6.4 | ^7.2",
"symfony/dependency-injection": "^6.4 | ^7.2",
"symfony/config": "^6.4 | ^7.2"
},
"require-dev": {
"phpunit/phpunit": "^10",
"symplify/easy-coding-standard": "^12",
"php-http/guzzle6-adapter": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-symfony": "^1.4"
},
"autoload": {
"psr-4": { "FluxSE\\PayumStripeBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\FluxSE\\PayumStripeBundle\\": "tests/" }
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"analyse": [
"@composer validate --strict",
"vendor/bin/ecs check",
"vendor/bin/phpstan.phar analyse"
],
"fix": [
"vendor/bin/ecs check --fix"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"authors": [
{
"name": "Francis HILAIRE",
"email": "[email protected]"
}
]
}