Skip to content

jaredtking/pulsar

Repository files navigation

Pulsar ORM

Latest Stable Version Software License Build Status Coverage Status Scrutinizer Code Quality Total Downloads

Pulsar is an ORM implementing the Active Record pattern in PHP.

Getting Started

Requirements

The main requirement is that PHP version 8.1 or later is used. The library depends on PDO or Doctrine DBAL to interact with the database.

Installation

The easiest way to install Pulsar is with composer:

composer require pulsar/pulsar

Using Pulsar

See the Pulsar Documentation for more information on how to use the library.

Developing

Tests

Use phpunit to run the included tests:

vendor/bin/phpunit

Contributing

Please feel free to contribute by participating in the issues or by submitting a pull request. :-)

License

The MIT License (MIT)

Copyright © 2015 Jared King

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.