├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Shaikh Mohammed Mudasir 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | [![SensioLabsInsight](https://insight.sensiolabs.com/projects/33bf1eb1-f008-409b-acfa-63bd7311478c/mini.png)](https://insight.sensiolabs.com/projects/33bf1eb1-f008-409b-acfa-63bd7311478c) 4 | [![Build Status](https://travis-ci.org/Modelizer/Bank.svg?branch=CHAPTER-2)](https://travis-ci.org/Modelizer/Bank) 5 | 6 | Idea to create this repository is to help developers to enhance there skills 7 | and who want to learn new things in PHP beyond average coding. 8 | 9 | Please remember branch will be treated as Chapter. 10 | 11 | #### Topics which we will cover up: 12 | 13 | * Directory Structure. 14 | * SOLID and DRY Principle. 15 | * PSR's standards. 16 | * Raw Sql query vs ORM. 17 | * Design patterns such as Repository, Command Oriented and much more. 18 | * Security Checks. 19 | * Tight Coding. 20 | * PHP 7 (Will be covered in few chapters) 21 | * Package building and injection. 22 | * Database Normalization. 23 | * Seeders and Migration. 24 | * When to build custom framework. 25 | 26 | ##### Note: 27 | * Repository is in development mode, more things can be added for more clarity. 28 | * Contribute to make more clear understanding of programming concept and topic listed above. 29 | * You can add your own topics if you need such as design patterns, but make sure example should be related to banking. 30 | 31 | --------------------------------------------------------------------------------