55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "codeigniter4/framework",
|
|
"type": "project",
|
|
"description": "The CodeIgniter framework v4",
|
|
"homepage": "https://codeigniter.com",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^7.3 || ^8.0",
|
|
"ext-curl": "*",
|
|
"ext-intl": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"kint-php/kint": "^4.0",
|
|
"laminas/laminas-escaper": "^2.9",
|
|
"psr/log": "^1.1",
|
|
"predis/predis": "^1.1",
|
|
"paragonie/sodium_compat": "^1.17",
|
|
"monolog/monolog": "^2.8",
|
|
"graylog2/gelf-php": "^1.7"
|
|
},
|
|
"require-dev": {
|
|
"codeigniter/coding-standard": "^1.1",
|
|
"fakerphp/faker": "^1.9",
|
|
"friendsofphp/php-cs-fixer": "^3.1",
|
|
"mikey179/vfsstream": "^1.6",
|
|
"nexusphp/cs-config": "^3.3",
|
|
"phpunit/phpunit": "^9.1",
|
|
"predis/predis": "^1.1"
|
|
},
|
|
"suggest": {
|
|
"ext-fileinfo": "Improves mime type detection for files",
|
|
"ext-redis": "If you use Cache class RedisHandler",
|
|
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CodeIgniter\\": "system/"
|
|
},
|
|
"exclude-from-classmap": [
|
|
"**/Database/Migrations/**"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-update-cmd": [
|
|
"CodeIgniter\\ComposerScripts::postUpdate"
|
|
],
|
|
"test": "phpunit"
|
|
},
|
|
"support": {
|
|
"forum": "http://forum.codeigniter.com/",
|
|
"source": "https://github.com/codeigniter4/CodeIgniter4",
|
|
"slack": "https://codeigniterchat.slack.com"
|
|
}
|
|
}
|