-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 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
{
"name": "postyou/adobe-sign-bundle",
"type": "symfony-bundle",
"description": "Adobe Sign API Client",
"license": "MIT",
"authors": [
{
"name": "Markus Nestmann",
"homepage": "https://github.com/MarkejN"
},
{
"name": "POSTYOU Digital- & Filmagentur",
"homepage": "https://github.com/postyou"
}
],
"require": {
"php": "^8.0",
"symfony/config": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/filesystem": "^5.4 || ^6.4",
"symfony/yaml": "^5.4 || ^6.4",
"knpuniversity/oauth2-client-bundle": "^2.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"vimeo/psalm": "^4.18",
"psalm/plugin-symfony": "^3.1"
},
"autoload": {
"psr-4": {
"Postyou\\AdobeSignBundle\\": "src/"
}
},
"scripts": {
"cs": [
"vendor/bin/php-cs-fixer fix -v --ansi"
],
"psalm": [
"vendor/bin/psalm --show-info=true"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}