mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
Updates the requirements on [rector/rector](https://github.com/rectorphp/rector) to permit the latest version. - [Release notes](https://github.com/rectorphp/rector/releases) - [Commits](https://github.com/rectorphp/rector/compare/0.12.20...0.12.21) --- updated-dependencies: - dependency-name: rector/rector dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
87 lines
2.7 KiB
JSON
87 lines
2.7 KiB
JSON
{
|
|
"name": "codeigniter4/codeigniter4",
|
|
"type": "project",
|
|
"description": "The CodeIgniter framework v4",
|
|
"homepage": "https://codeigniter.com",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^7.4 || ^8.0",
|
|
"ext-curl": "*",
|
|
"ext-intl": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"kint-php/kint": "^4.1.1",
|
|
"laminas/laminas-escaper": "^2.9",
|
|
"psr/log": "^1.1"
|
|
},
|
|
"require-dev": {
|
|
"codeigniter/coding-standard": "^1.1",
|
|
"fakerphp/faker": "^1.9",
|
|
"friendsofphp/php-cs-fixer": "3.6.*",
|
|
"mikey179/vfsstream": "^1.6",
|
|
"nexusphp/cs-config": "^3.3",
|
|
"nexusphp/tachycardia": "^1.0",
|
|
"phpstan/phpstan": "^1.5.6",
|
|
"phpunit/phpunit": "^9.1",
|
|
"predis/predis": "^1.1",
|
|
"rector/rector": "0.12.21"
|
|
},
|
|
"suggest": {
|
|
"ext-fileinfo": "Improves mime type detection for files"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-develop": "4.x-dev"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CodeIgniter\\": "system/"
|
|
},
|
|
"exclude-from-classmap": [
|
|
"**/Database/Migrations/**"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"CodeIgniter\\": "tests/system/",
|
|
"CodeIgniter\\AutoReview\\": "tests/AutoReview/",
|
|
"Utils\\": "utils/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-update-cmd": [
|
|
"CodeIgniter\\ComposerScripts::postUpdate",
|
|
"bash -c \"if [ -f admin/setup.sh ]; then bash admin/setup.sh; fi\""
|
|
],
|
|
"analyze": "phpstan analyse",
|
|
"test": "phpunit",
|
|
"cs": [
|
|
"php-cs-fixer fix --ansi --verbose --dry-run --diff --config=.php-cs-fixer.user-guide.php",
|
|
"php-cs-fixer fix --ansi --verbose --dry-run --diff --config=.php-cs-fixer.no-header.php",
|
|
"php-cs-fixer fix --ansi --verbose --dry-run --diff"
|
|
],
|
|
"cs-fix": [
|
|
"php-cs-fixer fix --ansi --verbose --diff --config=.php-cs-fixer.user-guide.php",
|
|
"php-cs-fixer fix --ansi --verbose --diff --config=.php-cs-fixer.no-header.php",
|
|
"php-cs-fixer fix --ansi --verbose --diff"
|
|
]
|
|
},
|
|
"scripts-descriptions": {
|
|
"analyze": "Run static analysis",
|
|
"test": "Run unit tests",
|
|
"cs": "Check the coding style",
|
|
"cs-fix": "Fix the coding style"
|
|
},
|
|
"support": {
|
|
"forum": "http://forum.codeigniter.com/",
|
|
"source": "https://github.com/codeigniter4/CodeIgniter4",
|
|
"slack": "https://codeigniterchat.slack.com"
|
|
}
|
|
}
|