You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1004 B
36 lines
1004 B
{ |
|
"description": "The CodeIgniter framework v4", |
|
"name": "codeigniter4/framework", |
|
"type": "project", |
|
"homepage": "https://codeigniter.com", |
|
"license": "MIT", |
|
"support": { |
|
"forum": "http://forum.codeigniter.com/", |
|
"slack": "https://codeigniterchat.slack.com", |
|
"source": "https://github.com/bcit-ci/CodeIgniter4" |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"CodeIgniter\\": "system/", |
|
"Psr\\Log\\": "system/ThirdParty/PSR/Log/" |
|
} |
|
}, |
|
"require": { |
|
"php": ">=7.1", |
|
"zendframework/zend-escaper": "^2.5", |
|
"kint-php/kint": "^2.1", |
|
"ext-intl": "*", |
|
"ext-curl": "*" |
|
}, |
|
"require-dev": { |
|
"phpunit/phpunit": "^7.0", |
|
"mikey179/vfsStream": "1.6.*", |
|
"codeigniter4/codeigniter4-standard": "^1.0" |
|
}, |
|
"scripts": { |
|
"post-update-cmd": [ |
|
"composer dump-autoload", |
|
"CodeIgniter\\ComposerScripts::postUpdate" |
|
] |
|
} |
|
}
|
|
|