|
1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "codeigniter4/appstarter",
- "type": "project",
- "description": "CodeIgniter4 starter app",
- "homepage": "https://codeigniter.com",
- "license": "MIT",
- "require": {
- "php": "^7.4 || ^8.0",
- "codeigniter4/framework": "^4.0",
- "myth/auth": "^1.2"
- },
- "require-dev": {
- "fakerphp/faker": "^1.9",
- "mikey179/vfsstream": "^1.6",
- "phpunit/phpunit": "^9.1"
- },
- "suggest": {
- "ext-fileinfo": "Improves mime type detection for files"
- },
- "autoload": {
- "exclude-from-classmap": [
- "**/Database/Migrations/**"
- ]
- },
- "autoload-dev": {
- "psr-4": {
- "Tests\\Support\\": "tests/_support"
- }
- },
- "scripts": {
- "test": "phpunit"
- },
- "support": {
- "forum": "http://forum.codeigniter.com/",
- "source": "https://github.com/codeigniter4/CodeIgniter4",
- "slack": "https://codeigniterchat.slack.com"
- }
- }
|