Skip to content

Commit aec30cb

Browse files
committed
First commit!
0 parents  commit aec30cb

File tree

5 files changed

+112
-0
lines changed

5 files changed

+112
-0
lines changed

.gitattributes

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
* text=auto
2+
/.github/ export-ignore
3+
/tests/ export-ignore
4+
/.docheader export-ignore
5+
/.dockerignore export-ignore
6+
/.editorconfig export-ignore
7+
/.gitattributes export-ignore
8+
/.gitignore export-ignore
9+
/.php-cs-fixer.php export-ignore
10+
/docker-compose export-ignore
11+
/Dockerfile export-ignore
12+
/infection.json5 export-ignore
13+
/phpunit.xml export-ignore

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea/
2+
public/
3+
vendor/
4+
composer.lock
5+
*.cache

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2025 Felipe Sayão Lobato Abreu
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Fast Forward Framework
2+
3+
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
4+
[![PHP Version](https://img.shields.io/badge/php-^8.1-blue.svg)](https://www.php.net/releases/)
5+
6+
**Fast Forward Framework** is a lightweight and fast PHP framework designed for building modern web applications.
7+
This package serves as an **aggregate metapackage**, bundling all core components of the Fast Forward ecosystem for easier installation and management.
8+
9+
---
10+
11+
## Features
12+
13+
- 🚀 **Modern PHP 8.1+ syntax**
14+
- ⚙️ Aggregates key components:
15+
- [`fast-forward/config`](https://github.com/php-fast-forward/config) – configuration system with dot notation and caching
16+
- [`fast-forward/container`](https://github.com/php-fast-forward/container) – PSR-11 compatible DI container with aggregation support
17+
- 📦 Simplifies installation of all core packages in one step
18+
- 🧱 Provides a solid foundation for building scalable PHP applications
19+
20+
---
21+
22+
## Installation
23+
24+
Install via [Composer](https://getcomposer.org):
25+
26+
```bash
27+
composer require fast-forward/framework
28+
```
29+
30+
This command will automatically pull in all the required dependencies of the framework.
31+
32+
---
33+
34+
## Requirements
35+
36+
- PHP 8.1 or higher
37+
38+
---
39+
40+
## License
41+
42+
Fast Forward Framework is licensed under the [MIT license](LICENSE).
43+
44+
---
45+
46+
## Author
47+
48+
Developed with ❤️ by **Felipe Sayão Lobato Abreu**
49+

composer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "fast-forward/framework",
3+
"description": "Fast Forward Framework is a lightweight and fast PHP framework designed for building modern web applications. It provides a simple and elegant API, making it easy to develop and maintain your projects.",
4+
"license": "MIT",
5+
"type": "library",
6+
"authors": [
7+
{
8+
"name": "Felipe Sayão Lobato Abreu",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": "^8.1",
14+
"fast-forward/config": "^1.1",
15+
"fast-forward/container": "^1.0"
16+
},
17+
"minimum-stability": "stable",
18+
"config": {
19+
"sort-packages": true
20+
},
21+
"extra": {
22+
"branch-alias": {
23+
"dev-main": "1.x-dev"
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)