mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "codeigniter4/codeigniter4",
|
|
"type": "project",
|
|
"description": "The CodeIgniter framework v4",
|
|
"homepage": "https://codeigniter.com",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^7.2 || ^8.0",
|
|
"ext-curl": "*",
|
|
"ext-intl": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"kint-php/kint": "^3.3",
|
|
"laminas/laminas-escaper": "^2.6",
|
|
"psr/log": "^1.1"
|
|
},
|
|
"require-dev": {
|
|
"codeigniter4/codeigniter4-standard": "^1.0",
|
|
"fakerphp/faker": "^1.9",
|
|
"mikey179/vfsstream": "^1.6",
|
|
"phpstan/phpstan": "^0.12",
|
|
"phpunit/phpunit": "^8.5",
|
|
"predis/predis": "^1.1",
|
|
"rector/rector": "^0.8",
|
|
"squizlabs/php_codesniffer": "^3.3"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CodeIgniter\\": "system/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Utils\\": "utils"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-update-cmd": [
|
|
"CodeIgniter\\ComposerScripts::postUpdate",
|
|
"bash admin/setup.sh"
|
|
],
|
|
"analyze": "phpstan analyze",
|
|
"test": "phpunit"
|
|
},
|
|
"support": {
|
|
"forum": "http://forum.codeigniter.com/",
|
|
"source": "https://github.com/codeigniter4/CodeIgniter4",
|
|
"slack": "https://codeigniterchat.slack.com"
|
|
}
|
|
}
|