-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3b3f55
commit 228b5db
Showing
35 changed files
with
461 additions
and
441 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Contributions | ||
# Let's Make a Difference Together! | ||
|
||
## Interested in contributing? | ||
## Ready to Join the Open Source Community? | ||
|
||
As an open source project, we'd appreciate any help and contributions! | ||
As a thriving open source project, we welcome all contributions and support from our community. Let's make this project even better together! | ||
|
||
We follow the standard [github pull request process](https://help.github.com/articles/about-pull-requests). We'll try to review your contributions as soon as possible. | ||
We follow the standard [github pull request process](https://help.github.com/articles/about-pull-requests), and we will review your contributions promptly. | ||
|
||
## File an Issue | ||
## Spot Something that Needs Improvement? | ||
|
||
Not ready to contribute code, but see something that needs work? While we encourage everyone to contribute code, it is also appreciated when someone reports an issue. We use [github issues](https://github.com/shinsenter/php/issues) for this. | ||
Not comfortable contributing code just yet? No problem! We appreciate when someone reports an issue that needs attention. Simply create a [github issue](https://github.com/shinsenter/php/issues) and we'll take it from there. | ||
|
||
From contributing to source code to improving readability of the documentation, all suggestions are welcome! | ||
From source code contributions to enhancing the readability of the documentation, every idea and suggestion counts! Let's build a better project together. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
export DEBIAN_FRONTEND=noninteractive | ||
exec apt-get update -y "$@" | ||
exec apt-get update -y --no-install-recommends --no-install-suggests "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
export DEBIAN_FRONTEND=noninteractive | ||
exec apt-get upgrade -yq "$@" | ||
exec apt-get full-upgrade -yq --no-install-recommends --no-install-suggests "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
service $1 stop 2>/dev/null | ||
update-rc.d $1 disable 2>/dev/null | ||
service "$1" stop 2>/dev/null | ||
update-rc.d "$1" disable 2>/dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.