-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.96 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
{
"name": "agentoak/lichtphp",
"description": "Yet another modern PHP framework. For PHP 8.1+ only.",
"type": "library",
"homepage": "https://github.com/AgentOak/lichtphp",
"license": "LGPL-3.0-or-later",
"readme": "README.md",
"support": {
"source": "https://github.com/AgentOak/lichtphp",
"issues": "https://github.com/AgentOak/lichtphp/issues"
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"LichtPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LichtPHP\\Tests\\": "tests/unit/"
}
},
"require": {
"php": "^8.1",
"psr/clock": "^1.0",
"psr/container": "^2.0.2",
"psr/simple-cache": "^3.0"
},
"suggest": {
"ext-redis": "Used as cache backend. Requires version 4.0.0 or newer.",
"ext-igbinary": "Store data in cache in a faster binary serialization format."
},
"provide": {
"psr/clock-implementation": "1.0.0",
"psr/container-implementation": "2.0.2",
"psr/simple-cache-implementation": "3.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.8",
"phpmd/phpmd": "^2.13",
"phpunit/phpunit": "^10.0"
},
"scripts": {
"analyze": [
"phpcs --standard=phpcs-standard.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 --colors src/",
"phpstan analyse --ansi; exit 0",
"psalm --threads=1 --show-info=true; exit 0",
"psalm --threads=1 --show-info=true --taint-analysis; exit 0",
"phpmd src/ ansi phpmd.xml --ignore-violations-on-exit"
],
"test": "phpunit --testdox --colors --testsuite unit tests"
}
}