This repository was archived by the owner on Apr 21, 2022. It is now read-only.

Description
Hello
We have Vendor, but Authors and/or Maintainers is missing in the specification.
Can we take a look at what's done in PHP Composer?
https://getcomposer.org/doc/04-schema.md#authors
`authors#
The authors of the package. This is an array of objects.
Each author object can have following properties:
name: The author's name. Usually their real name.
email: The author's email address.
homepage: An URL to the author's website.
role: The author's role in the project (e.g. developer or translator)
An example:
{
"authors": [
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
"homepage": "http://www.naderman.de",
"role": "Developer"
},
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be",
"role": "Developer"
}
]
}`