-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·40 lines (40 loc) · 1013 Bytes
/
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
{
"name": "gg/camagru",
"description": "site web",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "jgroc-de",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2 <8.0",
"ext-pdo": "*",
"ext-mbstring": "*",
"ext-json": "*",
"ext-gd": "*",
"cloudinary/cloudinary_php": "^1.16",
"symfony/dotenv": "^5.0",
"psr/http-message": "^1.0",
"psr/http-client": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/container": "^1.0",
"monolog/monolog": "^2.1",
"mailgun/mailgun-php": "^3.2",
"kriswallsmith/buzz": "^1.1",
"nyholm/psr7": "^1.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpstan/phpstan": "^0.12.44",
"phpmailer/phpmailer": "^6.1"
},
"autoload": {
"psr-4": {
"App\\":"App/",
"Dumb\\": "Dumb/"
}
}
}