Here the member :
- [Rival] (https://github.com/rivalbamen)
- [Surya] (https://github.com/adhisurya)
- [Putri] (https://github.com/chiput)
- [Mirza] (https://github.com/kajhie)
- [Wawan] (https://github.com/WawanAndiika)
#Resource Learning
- [PHP For Beginner] (http://www.w3schools.com/php/default.asp)
- Code's Rule
- [Coding Standard] (http://www.php-fig.org/psr/psr-1/)
- [Coding Style Guide] (http://www.php-fig.org/psr/psr-2/)
- [Auto Loader] (http://www.php-fig.org/psr/psr-4/)
- [Belajar JavaScript] (http://www.duniailkom.com/tutorial-belajar-javascript-dasar-untuk-pemula/)
- [Basic Slim] (https://www.codecourse.com/lessons/learn-slim-3)
- [Slim Controller Dependency Injection] (https://www.codecourse.com/lessons/slim-3-controllers-dependency-injection)
- [Basic Elloquent Database] (https://laravel.com/docs/5.2/eloquent)
#Basic Code
- Fork https://github.com/rivalbamen/taskmanager.git
- Do this bash
> git clone https://github.com/[username]/taskmanager.git
> cd taskmanager/
> git init
> git config --global user.name "[username]"
> git config --global user.email "[[email protected]]"
> git remote set-url origin https://github.com/[username]/taskmanager.git
> git remote add upstream https://github.com/blidodi/taskmanager.git
> git remote -v
> mkdir [username]
> touch [username]/README.md
> git status
> git add [username]
> git add [username]/README.md
> git commit -am "Add new directory [username]"
> git push origin master
- Update Workflow
- do git push to your repository
- create pull request
- after succeed do this bash
> git fetch upstream
> git merge upstream/master