- FuelPHP Application Development Blueprints
- Sébastien Drouyer
- 330字
- 2021-07-23 20:25:52
Development process of a FuelPHP application
The development process of a FuelPHP application generally contains the steps shown in the following image:

- Install FuelPHP: Since we are using this framework, this first step is quite obvious.
- Config (configuration): At the beginning, you will generally need to specify how to connect to the database and which package you will use. Later on, you might also need to create and use your own configuration files to improve the maintainability of your application.
- Scaffold: The oil command line of FuelPHP allows you to easily generate code files ready to be used. This step is not necessary, but we will often use this functionality in this book because it really speeds up the implementation of your application.
- Dev (development): This is where you, as a developer, step in. You customize the generated code to get exactly what you want. When you want to add new features (for instance a new model), you go back to the scaffolding step.
- Tests: Functional and unit testing are important if you want large applications to stay maintainable. When bugs are discovered, you go back to the development step in order to fix them. Unlike the other steps, we won't approach this subject in this chapter for the sake of its conciseness. It will be addressed in Chapter 5, Building Your Own RESTful API.
- Prod (production): Having a project working locally is nice, but the final objective is generally to publish it online. We will give you some directions about this step at the end of this chapter, but we won't get too much into the details, given the diversity of available hosting services.
Just to be clear, this is a very general guideline, and of course the order of the steps is not rigid. For instance, developers using the test-driven development process could merge the fourth and fifth steps, or a preproduction step could be added. The development process should only depend on each developer and institution's standards.
推薦閱讀
- GitLab Cookbook
- 數據庫系統教程(第2版)
- PHP程序設計(慕課版)
- INSTANT Weka How-to
- Swift語言實戰精講
- Arduino家居安全系統構建實戰
- 鴻蒙OS應用編程實戰
- 從零開始:UI圖標設計與制作(第3版)
- Android Studio開發實戰:從零基礎到App上線 (移動開發叢書)
- 虛擬現實建模與編程(SketchUp+OSG開發技術)
- 例說FPGA:可直接用于工程項目的第一手經驗
- Swift 2 Design Patterns
- Mastering R for Quantitative Finance
- Visual FoxPro數據庫程序設計
- Swift編程實戰:iOS應用開發實例及完整解決方案