forked from slimphp/Slim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.59 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
{
"name": "learnosity/slim",
"type": "library",
"description": "Slim customized for Learnosity",
"keywords": ["microframework","rest","router"],
"homepage": "http://github.com/learnosity/Slim",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "http://www.joshlockhart.com/"
},
{
"name": "Rhiannon Eldridge",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.9",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3"
},
"suggest": {
"ext-mcrypt": "Required for HTTP cookie encryption",
"phpseclib/mcrypt_compat": "Polyfil for mcrypt extension"
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"phpunit": "\"vendor/bin/phpunit\"",
"phpcs-psr12": "\"vendor/bin/phpcs\" -p . --standard=PSR12 --ignore=\"*/vendor/*\"",
"phpcbf-psr12": "\"vendor/bin/phpcbf\" -p . --standard=PSR12 --ignore=\"*/vendor/*\"",
"phpcompat": "\"vendor/bin/phpcs\" -p . --standard=PHPCompatibility --ignore=\"*/vendor/*\" --runtime-set testVersion 7.4-"
},
"autoload": {
"psr-0": { "Slim": "." }
}
}