Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ranagaballah/blog-application
simple blog application built with Laravel
https://github.com/ranagaballah/blog-application
api-rest backend-api crud-application error-handling laravel-framework laravel10 phpunit-tests sanctum-authentication unittesting
Last synced: about 1 month ago
JSON representation
simple blog application built with Laravel
- Host: GitHub
- URL: https://github.com/ranagaballah/blog-application
- Owner: RanaGaballah
- Created: 2024-07-20T18:45:51.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-22T06:03:01.000Z (4 months ago)
- Last Synced: 2024-10-11T11:03:01.480Z (about 1 month ago)
- Topics: api-rest, backend-api, crud-application, error-handling, laravel-framework, laravel10, phpunit-tests, sanctum-authentication, unittesting
- Language: PHP
- Homepage:
- Size: 113 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About Laravel
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).Laravel is accessible, powerful, and provides tools required for large, robust applications.
# Laravel Project
This project is built using the Laravel framework, providing a robust and scalable foundation for web and mobile applications. It includes a variety of packages to extend its functionality.
## Table of Contents
- [Requirements](#requirements)
- [Installation](#installation)
- [Configuration](#configuration)
- [Running the Application](#running-the-application)
- [Included Packages](#included-packages)
- [Development Packages](#development-packages)
- [Contributing](#contributing)
- [License](#license)## Requirements
- Laravel ^10
- Composer## Installation
1. **Clone the repository:**
```sh
git clone https://github.com/RanaGaballah/Blog-Application.git
cd Blog-Application
```2. **Install dependencies:**
```sh
composer install
```
or```sh
composer update
```3. **Copy `.env.example` to `.env`:**
```sh
cp .env.example .env
```4. **Generate application key:**
```sh
php artisan key:generate
```5. **Run database migrations:**
```sh
php artisan migrate
```## Running the Application
After completing the installation steps, you can start the application using the built-in Laravel development server:
```sh
php artisan serve
```
Navigate to `http://localhost:8000` in your web browser to view the application.
## Included Packages
This project utilizes several packages to enhance its functionality:
| Package | Description |
|---------|-------------|
| [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) | HTTP Client |
| [laravel/framework](https://github.com/laravel/framework) | The Laravel Framework |
| [laravel/sanctum](https://github.com/laravel/sanctum) | Simple API token authentication |## Development Packages
| Package | Description |
|---------|-------------|
| [fakerphp/faker](https://github.com/FakerPHP/Faker) | Faker library for PHP |
| [mockery/mockery](https://github.com/mockery/mockery) | Mocking framework for PHP |
| [nunomaduro/collision](https://github.com/nunomaduro/collision) | Error handling for command-line applications |
| [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) | Testing framework for PHP |
| [spatie/laravel-ignition](https://github.com/spatie/laravel-ignition) | Debugging and error handling tool for Laravel |## Contributing
Contributions are welcome! Please submit a pull request or create an issue to help improve the project.
## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).