我想向 Packagist 提交一个包(盯着项目),但出现以下错误:
[Doctrine\DBAL\DBALException] An exception occurred while executing 'INSERT INTO tag (name) VALUES (?)' with params {"1":"Mathematica"}: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'Mathematica' for key 'name_idx'
我的项目的网址是: https ://github.com/GarouDan/phpmath.git
打包师网址:https ://packagist.org/packages/garoudan/phpmath
composer.json
文件:
{
"name": "garoudan/phpmath",
"type": "library",
"description": "Library to run Mathemtica functions trought PHP.",
"keywords": ["php","PHP","mathematica","Mathematica","MathKernel","mathkernel","math","MathematicaScript","mathematicascript"],
"homepage": "https://github.com/GarouDan/phpmath",
"license": "MIT",
"authors": [
{
"name": "Danilo Araújo Silva",
"email": "silva.danilo.araujo@gmail.com",
"homepage": "http://daniloaraujosilva.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {
"Backend" : "core"
}
}
}