-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Base setup env instruction for contribution
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/composer.lock | ||
/phpunit.xml | ||
/vendor/ |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Contributing | ||
|
||
Everyone is welcome to contribute code. | ||
|
||
### 1. Development environment. | ||
|
||
#### Requirements | ||
|
||
- PHP >= 7.2 | ||
- Symfony application. | ||
|
||
### 2. Creating Symfony Applications or use existing | ||
|
||
See [symfony docs](https://symfony.com/doc/current/setup.html) | ||
|
||
``` | ||
git clone [email protected]:YOUR_GITHUB_NAME/packeton.git | ||
git checkout -b fix/patch-1 | ||
``` | ||
|
||
### 3. Make a fork, install the dependencies. | ||
|
||
Make a fork on GitHub, and then create a pull request to provide your changes. | ||
|
||
Run composer install and make symlink with repo. | ||
|
||
``` | ||
cd app | ||
composer require okvpn/cron-bundle | ||
git clone https://github.com/vtsykun/cron-bundle.git | ||
rm -rf vendor/okvpn/cron-bundle | ||
ln -s $PWD/cron-bundle vendor/okvpn/cron-bundle | ||
``` | ||
|