From 5f09df60708c431674eb8b18d25569944e85b74f Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 5 Apr 2017 09:15:06 +0200 Subject: [PATCH 1/3] [Doc] Explained a bit more about the possible contents of the "name" property --- doc/04-schema.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/04-schema.md b/doc/04-schema.md index ad8be8971..480ee742f 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -29,13 +29,16 @@ The config of dependencies is ignored. This makes the `config` field ### name The name of the package. It consists of vendor name and project name, -separated by `/`. - -Examples: +separated by `/`. Examples: * monolog/monolog * igorw/event-source +The name can contain any character, including white spaces, and it's case +sensitive (`foor/bar` is considered a different package than `Foo/Bar`). In order +to simplify its installation, it's recommended to define a short and lowercase +name that doesn't include non-alphanumeric characters or white spaces. + Required for published packages (libraries). ### description From 5f6d42a0b01a0af034380f9b921276c0c8acc4cd Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 5 Apr 2017 10:04:19 +0200 Subject: [PATCH 2/3] Package names are case insensitive --- doc/04-schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/04-schema.md b/doc/04-schema.md index 480ee742f..e0cf13165 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -35,7 +35,7 @@ separated by `/`. Examples: * igorw/event-source The name can contain any character, including white spaces, and it's case -sensitive (`foor/bar` is considered a different package than `Foo/Bar`). In order +insensitive (`foor/bar` and `Foo/Bar` are considered the same package). In order to simplify its installation, it's recommended to define a short and lowercase name that doesn't include non-alphanumeric characters or white spaces. From 4a3d57b166dd027ef4d6a4214d73ff54f5d81e3c Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 5 Apr 2017 11:31:41 +0200 Subject: [PATCH 3/3] Typo --- doc/04-schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/04-schema.md b/doc/04-schema.md index e0cf13165..415acb837 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -35,7 +35,7 @@ separated by `/`. Examples: * igorw/event-source The name can contain any character, including white spaces, and it's case -insensitive (`foor/bar` and `Foo/Bar` are considered the same package). In order +insensitive (`foo/bar` and `Foo/Bar` are considered the same package). In order to simplify its installation, it's recommended to define a short and lowercase name that doesn't include non-alphanumeric characters or white spaces.