-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer.json
45 lines (45 loc) · 1.43 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
{
"name": "volkszaehler/volkszaehler",
"type": "project",
"description": "volkszaehler is a free smart meter implementation with focus on data privacy",
"homepage": "https://www.volkszaehler.org/",
"license": "GPL-3.0",
"support": {
"wiki": "https://wiki.volkszaehler.org/",
"email": "[email protected]"
},
"require": {
"php": "^7.3|^8.0",
"doctrine/orm": "^2.9",
"doctrine/dbal": "^2.12",
"doctrine/annotations": "^1.13.2",
"andig/dbcopy": "^1.4",
"andig/php-shunting-yard": "^1.0",
"symfony/cache": "^5.0",
"symfony/console": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/routing": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0",
"cboden/ratchet": "^0.4",
"ringcentral/psr7": "^1.2",
"php-pm/php-pm": "^2.0",
"php-pm/httpkernel-adapter": "^2.0",
"webpatser/laravel-uuid": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nyholm/psr7": "^1.1",
"symfony/psr-http-message-bridge": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"jdorn/sql-formatter": "^1.2",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.4.8"
},
"autoload": {
"psr-4": {
"Volkszaehler\\": "lib/",
"Tests\\": "test/"
}
}
}