2011-08-20 12:55:01 +00:00
{
"name" : "Package" ,
"type" : "object" ,
"additionalProperties" : false ,
"properties" : {
"name" : {
"type" : "string" ,
"description" : "Package name, including type prefix if it's a plugin" ,
"required" : true
} ,
"type" : {
2011-09-21 21:03:17 +00:00
"description" : "Package type, either 'Library', or the parent project it applies to if it's a plugin for a framework or application (e.g. 'Symfony2', 'Typo3', 'Drupal', ..), note that this has to be defined and communicated by any project implementing a custom composer installer, those are just unreliable examples." ,
2011-08-20 12:55:01 +00:00
"type" : "string" ,
"optional" : true
} ,
2011-10-16 16:52:08 +00:00
"target-dir" : {
2011-10-09 14:43:16 +00:00
"description" : "Override install location of package" ,
"type" : "string"
} ,
2011-08-20 12:55:01 +00:00
"description" : {
"type" : "string" ,
"description" : "Package description" ,
"required" : true
} ,
"keywords" : {
"type" : "array" ,
"items" : {
"type" : "string"
} ,
"optional" : true
} ,
"homepage" : {
"type" : "string" ,
"description" : "Homepage URL for the project" ,
"format" : "uri" ,
"optional" : true
} ,
"version" : {
"type" : "string" ,
"description" : "Package version, see http://packagist.org/about for more info on valid schemes" ,
"required" : true
} ,
"license" : {
2011-09-26 23:09:48 +00:00
"type" : [ "string" , "array" ] ,
2011-08-20 12:55:01 +00:00
"description" : "License name" ,
"optional" : true
} ,
"authors" : {
"type" : "array" ,
"items" : {
"type" : "object" ,
"additionalProperties" : false ,
"properties" : {
"name" : {
"type" : "string" ,
"description" : "Full name of the author" ,
"required" : true
} ,
"email" : {
"type" : "string" ,
"description" : "Email address of the author" ,
"format" : "email" ,
"required" : true
} ,
"homepage" : {
"type" : "string" ,
"description" : "Homepage URL for the author" ,
"format" : "uri" ,
"optional" : true
}
}
} ,
"optional" : true
} ,
"require" : {
"type" : "object" ,
"additionalProperties" : true ,
"optional" : true
} ,
2011-09-26 23:09:48 +00:00
"replace" : {
"type" : "object" ,
"additionalProperties" : true ,
"optional" : true
} ,
"conflict" : {
"type" : "object" ,
"additionalProperties" : true ,
"optional" : true
} ,
"provide" : {
"type" : "object" ,
"additionalProperties" : true ,
"optional" : true
} ,
"recommend" : {
"type" : "object" ,
"additionalProperties" : true ,
"optional" : true
} ,
"suggest" : {
"type" : "object" ,
"additionalProperties" : true ,
"optional" : true
} ,
2011-08-20 12:55:01 +00:00
"extra" : {
"type" : [ "object" , "array" ] ,
"additionalProperties" : true ,
"optional" : true
2011-10-09 14:43:16 +00:00
} ,
"autoload" : {
"type" : "object" ,
"additionalProperties" : true
2011-08-20 12:55:01 +00:00
}
}
}