/Documents

Document management system with embedding, uploading, downloading for different media types.

Primary LanguagePHPMIT LicenseMIT

Documents

Document management system with embedding, uploading, downloading for different media types.


Build Status Total Downloads Latest Stable Version License

This package is intended for Nuclear CMS and it constitutes its main document management functionality. It is developed separately to enable individual development, testing and possible reuse.

Installation

Installing Documents is simple.

  1. Pull this package in through Composer.

    {
        "require": {
            "nuclear/documents": "~0.9"
        }
    }
  2. In order to register Documents Service Provider add 'Nuclear\Documents\Providers\DocumentsServiceProvider' together with other package providers that Documents rely on to the end of providers array in your config/app.php file.

    'providers' => array(
    
        'Illuminate\Foundation\Providers\ArtisanServiceProvider',
        'Illuminate\Auth\AuthServiceProvider',
        ...
        'Nuclear\Documents\Providers\DocumentsServiceProvider',
        'Kenarkose\Files\Provider\FilesServiceProvider',
        'Kenarkose\Sortable\SortableServiceProvider',
        'Kenarkose\Transit\Provider\TransitServiceProvider',
        'Simexis\Oembed\OembedServiceProvider',
        'Intervention\Image\ImageServiceProvider',
        'Dimsav\Translatable\TranslatableServiceProvider'
    
    ),
  3. Publish the migrations and configuration files.

    php artisan vendor:publish --provider:"Nuclear\Documents\Providers\DocumentsServiceProvider"

    Do not forget to migrate the database.

  4. Please check the tests and source code for further documentation.

License

Documents is released under MIT License.