ROA( Resource Oriented Architecture talks about a set of guidelines of implementation of a REST architecture.REST stands for Representational state transfer.REST architectures can be easily implemented in PHP and has wide popularity among the PHP community since it is based on CURD(CREATE, READ, UPDATE, DELETE) model.here are key REST principle mentioned below.
- Give every “thing” an ID
- Link things together
- Use standard methods
- Resources with multiple representations
- Communicate statelessly
for more information on REST click here