-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1 KB
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
{
"name": "ucarsolutions/uri-signer",
"description": "A minimal package for securely signing PSR-7 URIs in PHP applications.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"UcarSolutions\\UriSigner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\UcarSolutions\\UriSigner\\": "test"
}
},
"authors": [
{
"name": "Doğan Uçar",
"email": "dogan@dogan-ucar.de"
}
],
"minimum-stability": "stable",
"require": {
"firebase/php-jwt": "^6.10",
"ramsey/uuid": "^4.7",
"doganoo/di-services": "^0",
"psr/log": "^3.0"
},
"require-dev": {
"symfony/var-dumper": "^7.1",
"laminas/laminas-diactoros": "^3.3",
"phpunit/phpunit": "^11.3",
"phpstan/phpstan": "^1.12"
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon src/ test/ --level 9 --memory-limit=2G",
"test": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/phpunit test -d memory_limit=-1"
]
}
}