Thanks to visit codestin.com
Credit goes to github.com

Skip to content

nvas/BlasterPHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BlasterPHP

BlasterPHP is a lightweight and simple PHP framework designed for rapid application development. It provides essential tools and structure to build web applications efficiently without the overhead of larger frameworks.

Features

  • Lightweight and fast
  • Simple MVC architecture
  • Easy-to-configure routes
  • Minimal setup requirements

Installation

  1. Clone the repository:

    git clone https://github.com/nvas/BlasterPHP.git
  2. Navigate to the project directory:

    cd BlasterPHP
  3. Install dependencies using Composer (if applicable):

    composer install
  4. Set up your web server:

    • Point the document root to the public directory.
    • Ensure the .htaccess file is configured correctly for Apache (or configure URL rewriting for other web servers).

Usage

  1. Define routes in the routes.php file located in the app/ directory:

    $router->get('/hello', function() {
        return 'Hello, World!';
    });
  2. Create controllers and views in the app/ directory following the MVC pattern.

  3. Access your application via your browser by navigating to your configured domain or localhost.

Requirements

  • PHP 7.4 or higher
  • A web server (Apache, Nginx, etc.)
  • Composer (for dependency management, if needed)

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix:
    git checkout -b feature-name
  3. Commit your changes:
    git commit -m "Description of changes"
  4. Push to your branch:
    git push origin feature-name
  5. Submit a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Contact

For questions or support, please open an issue in the repository or contact the maintainer.


Happy coding with BlasterPHP!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages