-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
96 lines (96 loc) · 3.29 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "gheb/docusign-bundle",
"description": "Symfony Bundle for electronic document signature with Docusign",
"homepage": "https://github.com/GregoireHebert/docusign-bundle",
"license": "MIT",
"type": "symfony-bundle",
"keywords": ["symfony","symfony-bundle","electronic signature", "docusign"],
"readme": "README.md",
"authors": [
{
"name": "Grégoire Hébert",
"email": "[email protected]",
"homepage": "https://knot.gheb.dev/",
"role": "Developer"
},
{
"name": "Vincent Chalamon",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=7.2",
"ext-SimpleXML": "*",
"docusign/esign-client": "^5.0 || ^6.0",
"lcobucci/jwt": "^3.3.1 || ^4.0",
"league/flysystem": "^1.1 || ^2.3",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/config": "^5.0 || ^6.0",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/http-client": "^5.0 || ^6.0",
"symfony/http-foundation": "^5.0 || ^6.0",
"symfony/http-kernel": "^5.1.5 || ^6.0",
"symfony/options-resolver": "^5.0 || ^6.0",
"symfony/routing": "^5.0 || ^6.0",
"symfony/stopwatch": "^5.0 || ^6.0",
"symfony/translation": "^5.0 || ^6.0",
"vgrem/php-spo": "^2.2",
"webmozart/assert": "^1.5"
},
"require-dev": {
"dbrekelmans/bdi": "^1.0",
"doctrine/annotations": "^1.11",
"league/flysystem-bundle": "^1.2 || ^2.0",
"nyholm/symfony-bundle-test": "^2.0",
"phpspec/prophecy": "^1.12",
"phpstan/phpstan": "^1.0",
"psr/event-dispatcher": "^1.0",
"symfony/console": "^5.0 || ^6.0",
"symfony/css-selector": "^5.0 || ^6.0",
"symfony/dotenv": "^5.0 || ^6.0",
"symfony/error-handler": "^5.0 || ^6.0",
"symfony/monolog-bundle": "^3.5",
"symfony/panther": "^1.0 || ^2.0",
"symfony/phpunit-bridge": "^5.1 || ^6.0",
"symfony/polyfill-php72": "^1.9",
"symfony/process": "^5.0 || ^6.0",
"symfony/security-bundle": "^5.0 || ^6.0",
"symfony/twig-bundle": "^5.0 || ^6.0",
"symfony/web-profiler-bundle": "^5.0 || ^6.0",
"symfony/yaml": "^5.0 || ^6.0"
},
"suggest": {
"league/flysystem-bundle": "Allow the use of the official adapter system instead of the compat layer.",
"symfony/twig-bundle": "To use the Clickwrap integration."
},
"autoload": {
"psr-4": {
"DocusignBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DocusignBundle\\Tests\\": "tests/",
"DocusignBundle\\E2e\\": "features/src/"
}
},
"scripts": {
"post-install-cmd": [
"vendor/bin/simple-phpunit --version",
"vendor/bin/bdi detect drivers"
],
"post-update-cmd": [
"vendor/bin/simple-phpunit --version",
"vendor/bin/bdi detect drivers"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}