我使用的是AmazonLightSail和CodeIgniter框架。正在尝试安装PhpSpreadsheet-https://phpspreadsheet.readthedocs.io/en/latest/#installation使用
composer require phpoffice/phpspreadsheet
然而,我随后受到的欢迎
[RuntimeException]
require-dev.mikey179/vfsStream is invalid, it should not contain uppercase characters. Please use mikey179/vfsstream instead.
我像往常一样在谷歌上搜索,但找不到任何具体的东西。
当我运行时
composer.phar show
我从上面得到错误。
在require-dev
部分的composer.json
中必须有mikey179/vfsStream
(因为问题出在require-dev
上,并且您正在尝试执行正常要求(。
只需将包的名称更改为所有小写字符。
只需将mikey179/vfsStream替换为mikey179/vfstream
它们需要使用小写
让这个"mikey179/vfsStream";包名称改为小写。
"mikey179/vfsStream";将其替换为";mikey179/vfsstream";
在composer.json文件中查找mikey179/vfsStream并将其所有字符小写,使其成为mikey179/vfsStream
"require-dev": {
"mikey179/vfsstream": "1.1.*",
"phpunit/phpunit": "4.* || 5.*"
}