-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.04 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
{
"name": "sylvaindeloux/symfony-quickwins",
"description": "Some quickwins for Symfony.",
"type": "symfony-bundle",
"homepage": "https://github.com/sylvaindeloux/symfony-quickwins",
"keywords": [],
"require": {
"php": "^7.2||^8.0",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/config": "^3.4||^4.0||^5.0",
"symfony/dependency-injection": "^3.4||^4.0||^5.0",
"symfony/event-dispatcher": "^3.4||^4.0||^5.0",
"symfony/http-foundation": "^3.4||^4.0||^5.0",
"symfony/http-kernel": "^3.4||^4.0||^5.0",
"symfony/lock": "^3.4||^4.0||^5.0",
"symfony/console": "^3.4||^4.0||^5.0"
},
"license": "MIT",
"authors": [
{
"name": "Sylvain Deloux",
"email": "github-symfony-quickwins@eax.fr"
}
],
"autoload": {
"psr-4": {
"SylvainDeloux\\SymfonyQuickwins\\" : "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8"
}
}