-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
109 lines (109 loc) · 3.37 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
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "j0k3r/banditore",
"description": "Banditore retrieve all new releases from your starred repositories and put them in a RSS feed, just for you.",
"license": "MIT",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4.9",
"ashleydawson/simple-pagination-bundle": "^5.0.0",
"cache/predis-adapter": "^1.0",
"composer/package-versions-deprecated": "1.11.99.5",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.5",
"knplabs/github-api": "^3.0",
"knplabs/knp-time-bundle": "^1.11",
"knpuniversity/oauth2-client-bundle": "^2.1",
"laminas/laminas-code": "^4.5",
"league/oauth2-github": "^3.0",
"marcw/rss-writer": "^0.4",
"php-http/guzzle6-adapter": "^2.0",
"ramsey/uuid": "^4.0",
"sensio/framework-extra-bundle": "^6.0",
"sentry/sentry-symfony": "~4.0",
"snc/redis-bundle": "^4.0",
"symfony/amqp-messenger": "5.4.*",
"symfony/asset": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/flex": "^1.6",
"symfony/form": "5.4.*",
"symfony/monolog-bundle": "^3.5",
"symfony/polyfill-apcu": "^1.0",
"symfony/polyfill-php80": "^1.27",
"symfony/proxy-manager-bridge": "5.4.*",
"symfony/runtime": "5.4.*",
"symfony/security-bundle": "5.4.*",
"symfony/translation": "5.4.*",
"symfony/twig-bundle": "5.4.*",
"symfony/validator": "5.4.*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.0|^3.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.0",
"friendsofphp/php-cs-fixer": "~3.0",
"m6web/redis-mock": "dev-predis-1.x",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.6",
"phpstan/phpstan-deprecation-rules": "^0.12.3",
"phpstan/phpstan-doctrine": "^0.12.13",
"phpstan/phpstan-phpunit": "^0.12.8",
"phpstan/phpstan-symfony": "^0.12.6",
"symfony/browser-kit": "5.4.*",
"symfony/css-selector": "5.4.*",
"symfony/debug-bundle": "5.4.*",
"symfony/maker-bundle": "^1.15",
"symfony/phpunit-bridge": "7.1.*",
"symfony/web-profiler-bundle": "5.4.*"
},
"conflict": {
"symfony/symfony": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"config": {
"platform": {
"php": "7.4.26"
},
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true,
"php-http/discovery": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/j0k3r/RedisMock"
}
],
"extra": {
"symfony": {
"allow-contrib": true,
"require": "5.4.*"
}
}
}