0
回購是template-PHP-project。當我在packagist.org上使用提交功能時,彈出窗口顯示「undefined
」。當我嘗試在packagist.org上提交我的回購時,我得到「undefined」
很明顯,我的composer.json
有問題,但我不知道是什麼。 (我可以運行composer update
沒有錯誤。)它包含以下內容:
{
"name": "unixnut/template-php-project",
"description": "A self-contained project that uses the Composer autoloader to load class files",
"license": "GPL",
"authors": [
{
"name": "Alastair Irvine",
"email": "[email protected]"
}
],
"require": {},
"include-path": ["app/include", "contrib"],
"autoload": {
"psr-4": {
"XYZ\\": "app/classes/XYZ"
}
}
}