Sfoglia il codice sorgente

Adding role to author information

Michael Cullum 13 anni fa
parent
commit
0edc94cdce
2 ha cambiato i file con 9 aggiunte e 2 eliminazioni
  1. 5 2
      doc/04-schema.md
  2. 4 0
      res/composer-schema.json

+ 5 - 2
doc/04-schema.md

@@ -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:
 
@@ -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"
             }
         ]
     }

+ 4 - 0
res/composer-schema.json

@@ -66,6 +66,10 @@
                         "type": "string",
                         "description": "Homepage URL for the author.",
                         "format": "uri"
+                    },
+                    "role": {
+                        "type": "string",
+                        "description": "Author's Role in development."
                     }
                 }
             }