jampot5000 / calibre by jampot5000

Interface between laravel and calibre database and files
19
1
2
Package Data
Maintainer Username: jampot5000
Maintainer Contact: jholcroft@gmail.com (Jamie Holcroft)
Package Create Date: 2015-06-23
Package Last Update: 2018-03-20
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 03:03:53
Package Statistics
Total Downloads: 19
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
Total Forks: 1
Total Open Issues: 2

#PHP Calibre

PHP Calibre is an interface between laravel and calibre, exposing models for the Author, Book and Files for the books.

Version

0.0.1 - Just getting the basics down at the moment.

Installation

Install with composer

composer require 'jampot5000/calibre':'0.0.1'

Add the Laravel service provider in config/app.php

Jampot5000\Calibre\LaravelServiceProvider::class,

Models can be accessed using:

\Jampot5000\Calibre\Models\Author
\Jampot5000\Calibre\Models\Book
\Jampot5000\Calibre\Models\File

###Todo

  • Add series Model
  • Move route logic into a class allowing finer control of obtaining a file.
  • Update readme with better documentation
  • Add testing
  • Abstract away from using eloquent as it is alot to pull in for people not using laravel