-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
72 lines (72 loc) · 1.99 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
{
"name": "kokororin/kotori-php",
"description": "Tiny PHP Framework.",
"type": "framework",
"keywords": ["framework", "micro", "api", "router"],
"homepage": "https://kotori.love",
"license": "Apache-2.0",
"support": {
"wiki": "https://github.com/kokororin/Kotori.php/wiki",
"source": "https://github.com/kokororin/Kotori.php"
},
"authors": [{
"name": "kokororin",
"email": "[email protected]"
}],
"require": {
"php": "^7.3 | ~8.0",
"catfan/medoo": "~2.1",
"psr/container": "^1.0",
"psr/log": "^1.0",
"psr/simple-cache": "^1.0",
"scrivo/highlight.php": "^8.0 | ^9.0",
"symfony/console": "~5.4 | ~6.0",
"symfony/finder": "~5.4 | ~6.0",
"symfony/http-client": "~5.4 | ~6.0",
"zeptech/annotations": "~1.1"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.5",
"scrutinizer/ocular": "^1.4",
"slevomat/coding-standard": "~7.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Kotori\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kotori\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit",
"@phpcbf",
"@phpcs"
],
"dev": "php -S 0.0.0.0:3000 -t example/public",
"phpunit": "php vendor/bin/phpunit --debug",
"phpcs": "php vendor/bin/phpcs -s",
"phpcbf": "php vendor/bin/phpcbf",
"phpstan": "phpstan --memory-limit=-1"
},
"config": {
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"branch-alias": {
"dev-master": "master"
}
},
"suggest": {
"kasumi/kotori-php-cli": "Scaffold CLI tool for the PHP framework Kotori.php"
}
}