-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.25 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": "alpdesk/isotope-payment-stripe",
"description": "Stripe payment for Contao Isotope Ecommerce",
"keywords": [
"contao",
"isotope",
"payment",
"stripe"
],
"type": "contao-bundle",
"license": "MIT",
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13",
"isotope/isotope-core": "^2.9",
"hashids/hashids": "^4.1 || ^5.0",
"stripe/stripe-php": "^v16.2.0"
},
"authors": [
{
"name": "Alpdesk",
"homepage": "https://alpdesk.de",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Alpdesk\\IsotopeStripe\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Alpdesk\\IsotopeStripe\\ContaoManager\\Plugin",
"contao-component-dir": "public"
},
"config": {
"contao-component-dir": "public",
"allow-plugins": true
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"contao/manager-bundle": "^4.13",
"contao/manager-plugin": "^2.0",
"contao/conflicts": "@dev",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"slam/phpstan-extensions": "^6.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.4 || ^6.4"
}
}