forked from reload/platformsh-github-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
97 lines (97 loc) · 2.71 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
97
{
"type": "project",
"license": "proprietary",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wesnick/github-webhook-bundle"
}
],
"require": {
"php": "^7.3",
"ext-ctype": "*",
"ext-iconv": "*",
"bref/bref": "^0.5.5",
"bref/symfony-messenger-sns": "^0.2.0",
"cpliakas/git-wrapper": "^2.2",
"cweagans/composer-patches": "^1.6",
"enqueue/fs": "^0.9.12",
"knplabs/github-api": "^2.11",
"lp-digital/github-event-parser": "^0.8.3",
"php-http/guzzle6-adapter": "^1.1",
"php-http/logger-plugin": "^1.1",
"platformsh/client": "^2.1",
"spatie/temporary-directory": "^1.2",
"spatie/url": "^1.3",
"sroze/messenger-enqueue-transport": "^0.3.2",
"stechstudio/backoff": "^1.0",
"swop/github-webhook-bundle": "dev-symfony4",
"symfony/console": "4.3.*",
"symfony/dotenv": "4.3.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "4.3.*",
"symfony/messenger": "4.3.*",
"symfony/yaml": "4.3.*",
"thecodingmachine/safe": "^0.1.16",
"yubb/loggy": "^2.1"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.11.15",
"phpstan/phpstan-phpunit": "^0.11.2",
"squizlabs/php_codesniffer": "^3.4",
"symfony/test-pack": "^1.0",
"thecodingmachine/phpstan-safe-rule": "^0.1.4"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"patches": {
"cpliakas/git-wrapper": {
"Symfony 4.3 compatibility": "https://github.com/cpliakas/git-wrapper/pull/176.patch"
}
},
"symfony": {
"allow-contrib": false,
"require": "4.3.*"
}
}
}