-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.63 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "bethropolis/tinyproxy",
"description": "Lightweight PHP proxy service with caching, content modification, and security features",
"type": "project",
"license": "MIT",
"keywords": ["proxy", "cache", "web-proxy", "http-proxy", "php"],
"authors": [
{
"name": "bethropolis",
"homepage": "https://github.com/bethropolis"
}
],
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.8",
"vlucas/phpdotenv": "^5.6",
"psr/log": "^3.0",
"psr/container": "^2.0",
"symfony/cache": "^6.4",
"league/uri": "^7.4",
"firebase/php-jwt": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.20",
"fakerphp/faker": "^1.23"
},
"autoload": {
"psr-4": {
"TinyProxy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TinyProxy\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse src --level=8",
"phpcs": "phpcs --standard=PSR12 src",
"phpcbf": "phpcbf --standard=PSR12 src",
"psalm": "psalm",
"check": [
"@phpstan",
"@phpcs",
"@test"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.1"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}