Skip to content

Commit

Permalink
Adding role to author information
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcullum authored and Seldaek committed May 1, 2012
1 parent 4e24ab6 commit 0edc94c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 5 additions & 2 deletions doc/04-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ Each author object can have following properties:
* **name:** The author's name. Usually his real name.
* **email:** The author's email address.
* **homepage:** An URL to the author's website.
* **role:** The authors role in the project (for e.g. developer or translator)

An example:

Expand All @@ -153,12 +154,14 @@ An example:
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
"homepage": "http://www.naderman.de"
"homepage": "http://www.naderman.de",
"role": "Developer"
},
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
"homepage": "http://seld.be",
"role": "Developer"
}
]
}
Expand Down
4 changes: 4 additions & 0 deletions res/composer-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@
"type": "string",
"description": "Homepage URL for the author.",
"format": "uri"
},
"role": {
"type": "string",
"description": "Author's Role in development."
}
}
}
Expand Down

0 comments on commit 0edc94c

Please sign in to comment.