diff --git a/README.md b/README.md index 7acddc2..1f52c50 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,12 @@ ee service -### ee service start +### ee service enable Starts global services. ~~~ -ee service start +ee service enable ~~~ **OPTIONS** @@ -39,14 +39,19 @@ ee service start Name of service. +**EXAMPLES** + + # Enable global service + $ ee service enable nginx-proxy -### ee service stop + +### ee service disable Stops global services. ~~~ -ee service stop +ee service disable ~~~ **OPTIONS** @@ -54,6 +59,11 @@ ee service stop Name of service. +**EXAMPLES** + + # Disable global service + $ ee service disable nginx-proxy + ### ee service restart @@ -69,6 +79,11 @@ ee service restart Name of service. +**EXAMPLES** + + # Restart global service + $ ee service restart nginx-proxy + ### ee service reload @@ -84,13 +99,17 @@ ee service reload Name of service. +**EXAMPLES** + + # Reload global service + $ ee service reload nginx-proxy + ## Contributing We appreciate you taking the initiative to contribute to this project. Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation. - ### Reporting a bug Think you’ve found a bug? We’d love for you to help us get it fixed. diff --git a/composer.json b/composer.json index dd56e45..bd92a30 100644 --- a/composer.json +++ b/composer.json @@ -23,8 +23,8 @@ "bundled": true, "commands": [ "service", - "service start", - "service stop", + "service enable", + "service disable", "service restart", "service reload" ]