ci4
/
composer.json
66 строк · 2.3 Кб
1{
2"name": "codeigniter4/framework",3"description": "The CodeIgniter framework v4",4"license": "MIT",5"type": "project",6"homepage": "https://codeigniter.com",7"support": {8"forum": "https://forum.codeigniter.com/",9"source": "https://github.com/codeigniter4/CodeIgniter4",10"slack": "https://codeigniterchat.slack.com"11},12"require": {13"php": "^8.1",14"ext-intl": "*",15"ext-mbstring": "*",16"laminas/laminas-escaper": "^2.13",17"psr/log": "^3.0"18},19"require-dev": {20"codeigniter/coding-standard": "^1.7",21"fakerphp/faker": "^1.9",22"friendsofphp/php-cs-fixer": "^3.47.1",23"kint-php/kint": "^5.0.4",24"mikey179/vfsstream": "^1.6",25"nexusphp/cs-config": "^3.6",26"phpunit/phpunit": "^10.5.16 || ^11.2",27"predis/predis": "^1.1 || ^2.0"28},29"suggest": {30"ext-curl": "If you use CURLRequest class",31"ext-dom": "If you use TestResponse",32"ext-exif": "If you run Image class tests",33"ext-fileinfo": "Improves mime type detection for files",34"ext-gd": "If you use Image class GDHandler",35"ext-imagick": "If you use Image class ImageMagickHandler",36"ext-libxml": "If you use TestResponse",37"ext-memcache": "If you use Cache class MemcachedHandler with Memcache",38"ext-memcached": "If you use Cache class MemcachedHandler with Memcached",39"ext-mysqli": "If you use MySQL",40"ext-oci8": "If you use Oracle Database",41"ext-pgsql": "If you use PostgreSQL",42"ext-readline": "Improves CLI::input() usability",43"ext-redis": "If you use Cache class RedisHandler",44"ext-simplexml": "If you format XML",45"ext-sodium": "If you use Encryption SodiumHandler",46"ext-sqlite3": "If you use SQLite3",47"ext-sqlsrv": "If you use SQL Server",48"ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()"49},50"autoload": {51"psr-4": {52"CodeIgniter\\": "system/"53},54"exclude-from-classmap": [55"**/Database/Migrations/**"56]57},58"config": {59"optimize-autoloader": true,60"preferred-install": "dist",61"sort-packages": true62},63"scripts": {64"test": "phpunit"65}66}
67