This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
81 lines (81 loc) · 2.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "serendipity_hq/bundle-stripe",
"type": "symfony-bundle",
"description": "A set of utilities to integrate Stripe into Symfony.",
"keywords": ["stripe", "bundle", "symfony"],
"homepage": "https://github.com/Aerendir/bundle-stripe",
"license": "MIT",
"support": {
"docs": "https://github.com/Aerendir/bundle-stripe/tree/dev/docs",
"issues": "https://github.com/Aerendir/bundle-stripe/issues"
},
"authors": [
{
"name": "Adamo Aerendir Crespi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"doctrine/orm": "^2.5",
"serendipity_hq/component-value-objects": "^7.1.1",
"stripe/stripe-php": "^7.52 || ^8.0 || ^9.0 || ^10.0",
"symfony/event-dispatcher": "^4.4|^5.4|^6.0",
"symfony/framework-bundle": "^4.4|^5.4|^6.0",
"symfony/translation": "^4.4|^5.4|^6.0",
"thecodingmachine/safe": "^1.0|^2.0"
},
"require-dev": {
"ext-ast": "*",
"bamarni/composer-bin-plugin": "^1.4",
"doctrine/common": "^2.8 || ^3.0",
"doctrine/doctrine-bundle": "^1.7 || ^2.0",
"monolog/monolog": "^1.23 || ^2.0",
"phpdocumentor/reflection-docblock": "^5.2",
"phpstan/phpstan": "1.10.15",
"phpstan/phpstan-doctrine": "1.3.40",
"phpstan/phpstan-phpunit": "1.3.4",
"phpstan/phpstan-symfony": "1.3.1",
"rector/rector": "0.15.16",
"roave/security-advisories": "dev-master",
"serendipity_hq/component-var-dumper-f": "^2.1.1",
"serendipity_hq/rector-config": "^1.0",
"symfony/console": "^4.4|^5.4|^6.0",
"symfony/css-selector": "^4.4|^5.4|^6.0",
"symfony/dom-crawler": "^4.4|^5.4|^6.0",
"symfony/form": "^4.4|^5.4|^6.0",
"symfony/http-client": "^4.4|^5.4|^6.0",
"symfony/var-dumper": "^4.4|^5.4|^6.0",
"symfony/yaml": "^4.4|^5.4|^6.0",
"thecodingmachine/phpstan-safe-rule": "1.2.0"
},
"autoload": {
"psr-4": {
"SerendipityHQ\\Bundle\\StripeBundle\\Dev\\": "dev",
"SerendipityHQ\\Bundle\\StripeBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SerendipityHQ\\Bundle\\StripeBundle\\Tests\\": "tests"
}
},
"config":{
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-install-cmd": ["@composer bin all install --ansi"],
"post-update-cmd": ["@composer bin all update --ansi"]
},
"extra": {
"bamarni-bin": {
"bin-links": false
}
}
}