-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
126 lines (126 loc) · 4.22 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "keestash/server",
"description": "Open Source Password Manager",
"license": "AGPL-3.0-or-later",
"type": "project",
"readme": "README.md",
"authors": [
{
"name": "Dogan Ucar",
"email": "dogan@dogan-ucar.de"
}
],
"homepage": "https://keestash.com",
"support": {
"email": "dogan@dogan-ucar.de",
"issues": "https://github.com/keestash/server/issues",
"source": "https://github.com/keestash/server"
},
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-ldap": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-redis": "*",
"ext-sqlite3": "*",
"ext-zip": "*",
"doctrine/dbal": "^3.1.4",
"doganoo/backgrounder": "^4.0.1",
"doganoo/di-services": "^0.0",
"doganoo/php-algorithms": "^2.0.0",
"doganoo/php-util": "^0.5",
"doganoo/simple-rbac": "^1.8",
"ezyang/htmlpurifier": "^4.13",
"firebase/php-jwt": "^6.4",
"guzzlehttp/guzzle": "^7.0",
"laminas/laminas-config": "^3.5",
"laminas/laminas-config-aggregator": "^1.5",
"laminas/laminas-crypt": "^3.12",
"laminas/laminas-diactoros": "^2.5",
"laminas/laminas-escaper": "^2.12",
"laminas/laminas-i18n": "^2.15",
"laminas/laminas-serializer": "^2.13",
"laminas/laminas-servicemanager": "^3.6",
"laminas/laminas-validator": "^2.13",
"league/csv": "^9.8",
"mezzio/mezzio": "^3.3",
"mezzio/mezzio-cors": "^1.1",
"mezzio/mezzio-helpers": "^5.4",
"mezzio/mezzio-laminasrouter": "^3.1",
"mezzio/mezzio-twigrenderer": "^2.6",
"monolog/monolog": "^2.2",
"nikolaposa/rate-limit": "^3.0",
"phpmailer/phpmailer": "^6.1",
"promphp/prometheus_client_php": "^2.10",
"psr/container": "^1.0",
"psr/log": "^1.1",
"ramsey/uuid": "^4.1",
"robmorgan/phinx": "^0.13",
"sentry/sdk": "^3.2",
"stripe/stripe-php": "^10.19",
"symfony/console": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/ldap": "^5.4",
"symfony/mime": "^4.4",
"symfony/string": "^5.4",
"symfony/var-dumper": "^6.4",
"twig/twig": "^3.16"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^3.5"
},
"conflict": {
"stevebauman/unfinalize": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"KSA\\": "apps/",
"KSP\\": "lib/public/",
"KST\\": "test/",
"KST\\Service\\": "test/src/",
"Keestash\\": "lib/private/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"php-http/discovery": false
},
"sort-packages": true
},
"scripts": {
"add-php-compatibility": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"php-compatibility": "./vendor/bin/phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 8.2-8.3 --extensions=php --ignore=vendor/",
"phpstan": "cd vendor/bin && ./phpstan analyse -c ../../config/phpstan/phpstan.neon ../../apps/ ../../lib --level 9 --memory-limit=2G",
"phpstan-baseline": "cd vendor/bin && ./phpstan analyse -c ../../config/phpstan/phpstan.neon ../../apps/ ../../lib --level 9 --memory-limit=2G --generate-baseline ../../config/phpstan/baseline.neon",
"test": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/phpunit --configuration test/phpunit.xml -d memory_limit=-1"
],
"test-single": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/phpunit --configuration test/phpunit.xml -d memory_limit=-1 --filter testWithMissingData apps/Settings/Test/Integration/Api/User/UserEditTest.php"
],
"test-coverage": [
"Composer\\Config::disableProcessTimeout",
"php -d xdebug.mode=coverage ./vendor/bin/phpunit --configuration test/phpunit.xml -d memory_limit=-1 --coverage-html test/code-coverage/"
]
}
}