Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pluf/core
Pluf is an open source PHP framework, which is very light and fast.
https://github.com/pluf/core
php pluf pluf-framework rest-api restful
Last synced: about 20 hours ago
JSON representation
Pluf is an open source PHP framework, which is very light and fast.
- Host: GitHub
- URL: https://github.com/pluf/core
- Owner: pluf
- License: gpl-3.0
- Created: 2015-04-30T20:33:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-06-06T00:48:43.000Z (over 3 years ago)
- Last Synced: 2024-07-09T15:44:10.993Z (4 months ago)
- Topics: php, pluf, pluf-framework, rest-api, restful
- Language: PHP
- Homepage: https://pluf.ir
- Size: 4.34 MB
- Stars: 11
- Watchers: 4
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Pluf
[![Build Status](https://travis-ci.com/pluf/core.svg?branch=master)](https://travis-ci.com/pluf/core)
[![codecov](https://codecov.io/gh/pluf/core/branch/master/graph/badge.svg)](https://codecov.io/gh/pluf/core)
[![Coverage Status](https://coveralls.io/repos/github/pluf/core/badge.svg)](https://coveralls.io/github/pluf/core)
[![Maintainability](https://api.codeclimate.com/v1/badges/9e1457dbf2f0bcc8b953/maintainability)](https://codeclimate.com/github/pluf/core/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/9e1457dbf2f0bcc8b953/test_coverage)](https://codeclimate.com/github/pluf/core/test_coverage)Pluf is a light, reliable and small PHP application framework to develop REST-full Multi/Single-tenant applications. This is the core of the Pluf framework which contains core concepts of Pluf Framework.
## Installation
To use the Pluf library in your project, simply add a dependency on pluf/core
to your project's `composer.json` file. Here is a minimal example of a `composer.json`
file that just defines a dependency on UPDATE_NAME 1.x:```json
{
"require": {
"pluf/core": "~6.0"
}
}
```## Development
If you would like to contribute to Pluf, please read the README and CONTRIBUTING documents.
The most important guidelines are described as follows:
>All code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure proper review of all the code.
Fork the project, create a feature branch, and send us a pull request.
To ensure a consistent code base, you should make sure the code follows the PSR-2 Coding Standards.
### Running Composer
To pull in the project dependencies via Composer, run:
composer install
### Running the CI checks
To run all CI checks, which includes PHPUnit tests, PHPCS style checks and coverage tag validation, run:
./vendor/bin/phpcs -p -s src
### Running the testsTo run just the PHPUnit tests run
./vendor/bin/phpunit