-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.18 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
{
"name": "matronique/edf-telereleve",
"type": "library",
"description": "This application can read the ERDF counter telereleve informations",
"keywords": [
"edf",
"erdf",
"telereleve",
"linky"
],
"homepage": "https://github.com/Mactronique/edf-telereleve",
"license": "MIT",
"authors": [
{
"name": "Jean-Baptiste Nahan",
"email": "814683+macintoshplus@users.noreply.github.com",
"homepage": "http://nahan.fr"
}
],
"autoload": {
"psr-4": {
"Mactronique\\TeleReleve\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mactronique\\TeleReleve\\Tests\\": "tests"
}
},
"bin": [
"telereleve"
],
"require": {
"php": ">=7.4",
"symfony/console": "^5.4",
"symfony/config": "^5.4",
"symfony/yaml": "^5.4",
"psr/log": "^1.0",
"symfony/var-dumper": "^5.4",
"swiftmailer/swiftmailer": "^6.1",
"symfony/mailer": "^5.4",
"twig/twig": "^2.4 || ^3.0",
"monolog/monolog": "^2.0 || ^3.0",
"ext-sqlite3": "*"
},
"suggest": {
"influxdb/influxdb-php": "For use InfluxDB Storage"
},
"require-dev": {
"atoum/atoum": "^3.0",
"friendsofphp/php-cs-fixer": "^3.64"
}
}