-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.24 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
{
"name": "lekoala/kaly",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas",
"email": "[email protected]"
}
],
"version": "0.1",
"require": {
"php": "^8.2",
"laminas/laminas-escaper": "^2.13",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
"psr/clock": "^1.0",
"psr/container": "^1.1.2|^2.0.2",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1",
"psr/simple-cache": "^3.0",
"symfony/polyfill-php83": "^1.30",
"symfony/polyfill-php84": "^1.30"
},
"require-dev": {
"composer/ca-bundle": "^1.5",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^10.5|^11",
"rector/rector": "^2",
"squizlabs/php_codesniffer": "^3.10",
"symfony/var-dumper": "^7.1",
"ticketswap/phpstan-error-formatter": "^1.0"
},
"autoload": {
"psr-4": {
"Kaly\\": "src"
},
"files": [
"src/_functions/global.php"
]
},
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "phpunit",
"phpunit-only": "phpunit --group only",
"phpunit-util": "phpunit --filter 'UtilTest'",
"phpunit-di": "phpunit --filter 'DiTest'",
"phpunit-view": "phpunit --filter 'ViewTest'",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1",
"rector-dry": "rector --dry-run",
"rector": "rector",
"docsify": "docsify serve docs",
"docs": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:3000 -t docs/"
],
"demos": [
"Composer\\Config::disableProcessTimeout",
"php -S 127.0.0.1:8080 -t demos/"
],
"demo-app": [
"Composer\\Config::disableProcessTimeout",
"php -S 127.0.0.1:8080 demos/app/public/index.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}