-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.07 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
{
"name": "benjaminz/my-blog",
"description": "My personnal Blog. Compliant with OpenClassrooms' fifth project on the PHP/Symfony Applications Developer path.",
"type": "project",
"require": {
"php": "^7.4",
"ext-iconv": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"twig/twig": "^2.4",
"guzzlehttp/psr7": "^1.4",
"symfony/yaml": "^4.0",
"symfony/mailer": "^5.3",
"symfony/google-mailer": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"codacy/coverage": "^1.4",
"phpstan/phpstan": "^0.9.2",
"phpstan/phpstan-phpunit": "^0.9.4",
"friendsofphp/php-cs-fixer": "^2.14"
},
"autoload": {
"psr-4": {
"App\\": "./src/App/",
"Lib\\": "./src/Lib/",
"Tests\\": "./tests/Tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Benjamin Zaslavsky",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}