- FuelPHP Application Development Blueprints
- Sébastien Drouyer
- 315字
- 2021-07-23 20:25:52
Chapter 1. Building Your First FuelPHP Application
Throughout the book, we will use the FuelPHP framework to build different types of projects. The objective of this chapter is to make you familiar with the basics of the framework and create your first project as quickly as possible. We won't create anything exceptional in this chapter and there will be very little coding, but we will go through the whole process from installing FuelPHP to publishing your project on a production server. You will learn the necessary basics for the other projects as well.
By the end of the chapter, you should know the following:
- A common development process of a FuelPHP application
- How to install FuelPHP (the latest or a specific version)
- The FuelPHP file system hierarchy
- Two different ways to configure Apache to access your application
- How to configure FuelPHP to connect to a database
- The oil command line and how to use it for scaffolding your application
- How does an application respond to a URL requested by a visitor
- What are the FuelPHP templates
- How to publish your project to a host
Since this book is intended for intermediate developers, we will assume that you have already installed Apache and MySQL on your system. Some prior knowledge of Git and Composer is an added advantage as you might need it, but you should be fine in this book if you are not familiar with these tools. However, for advanced applications that need collaboration between several developers mastering them is highly recommended.
In this chapter, we will go from installing the FuelPHP framework to having a functional – though limited – web application. As our objective here is to introduce the framework and create a sample application as quickly as possible, we won't address important topics such as the ORM, which will be addressed in Chapter 2, Building a To-do List Application.
- Python自然語言處理實戰:核心技術與算法
- Java高并發核心編程(卷2):多線程、鎖、JMM、JUC、高并發設計模式
- C#編程入門指南(上下冊)
- 程序員數學:用Python學透線性代數和微積分
- Machine Learning with R Cookbook(Second Edition)
- Java加密與解密的藝術
- Cassandra Data Modeling and Analysis
- Drupal 8 Module Development
- Building RESTful Python Web Services
- NoSQL數據庫原理
- 微信小程序開發與實戰(微課版)
- 汽車人機交互界面整合設計
- Mastering Elasticsearch(Second Edition)
- Hands-On Dependency Injection in Go
- PHP Microservices