-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 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
46
47
48
49
50
51
52
53
54
55
{
"name": "barnslig/jmap-proxy",
"description": "Framework to implement a JMAP (RFC 8620) server.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Leonard Techel",
"email": "git@barnslig.eu"
}
],
"repositories": [
{
"type": "pear",
"url": "https://pear.horde.org"
}
],
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^8",
"phpstan/phpstan": "^0.12.26",
"jangregor/phpstan-prophecy": "^0.8.1"
},
"require": {
"php": ">=7.3",
"ext-mbstring": "*",
"pear-pear.horde.org/horde_imap_client": "^2.30.1@stable",
"pear-pear.horde.org/horde_cache": "^2.5.5@stable",
"league/route": "^4.3",
"laminas/laminas-diactoros": "^2.2",
"laminas/laminas-httphandlerrunner": "^1.1",
"php-ds/php-ds": "^1.2",
"opis/json-schema": "^1.0",
"m1x0n/opis-json-schema-error-presenter": "^0.5.1",
"laminas/laminas-servicemanager": "^3.4",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-factory": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Barnslig\\Jmap\\Tests\\": "tests"
}
},
"autoload": {
"psr-4": {
"Barnslig\\Jmap\\": "src"
}
},
"scripts": {
"lint": "phpcs --standard=PSR12 src/ tests/; phpstan analyse -l 8 src/ tests/",
"pretty": "phpcbf --standard=PSR12 src/ tests/",
"test": "phpunit --bootstrap vendor/autoload.php --testdox tests/"
}
}