this is my composer.json:
Code:
{
"name": "codeigniter4/appstarter",
"description": "CodeIgniter4 starter app",
"license": "MIT",
"type": "project",
"homepage": "https://codeigniter.com",
"support": {
"forum": "https://forum.codeigniter.com/",
"source": "https://github.com/codeigniter4/CodeIgniter4",
"slack": "https://codeigniterchat.slack.com"
},
"require": {
"php": "^8.1",
"codeigniter4/framework": "4.5.5",
"phpmailer/phpmailer": "^6.8"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^10.5.16"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Config\\": "app/Config/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": "phpunit"
}
}
ran :
Code:
[andrew@darkstar ~]$ cd /srv/http/CI4-CMS
[andrew@darkstar CI4-CMS]$ composer update
Loading composer repositories with package information
Updating dependencies
Lock file operations: 0 installs, 2 updates, 0 removals
- Upgrading nikic/php-parser (v5.2.0 => v5.3.1)
- Upgrading phpunit/phpunit (10.5.34 => 10.5.36)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 0 installs, 2 updates, 0 removals
- Downloading nikic/php-parser (v5.3.1)
- Downloading phpunit/phpunit (10.5.36)
- Upgrading nikic/php-parser (v5.2.0 => v5.3.1): Extracting archive
- Upgrading phpunit/phpunit (10.5.34 => 10.5.36): Extracting archive
Generating optimized autoload files
27 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
[andrew@darkstar CI4-CMS]$
can you paste your composer.json
CMS CI4 A CMS system, runs out of the box written on top of CI4
Arch Book CodeIgniter4 on Apache(pages 92-114)