PHPackages                             inwave/laravel-uploadcare - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. inwave/laravel-uploadcare

AbandonedArchivedLibrary[File &amp; Storage](/categories/file-storage)

inwave/laravel-uploadcare
=========================

Laravel Serviceprovider for Uploadcare

v1.6.2(8y ago)238.6k1MITPHPPHP &gt;=7.0.0

Since Aug 27Pushed 8y agoCompare

[ Source](https://github.com/InWave/laravel-uploadcare)[ Packagist](https://packagist.org/packages/inwave/laravel-uploadcare)[ Docs](https://github.com/InWave/laravel-uploadcare.git)[ RSS](/packages/inwave-laravel-uploadcare/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (4)Dependencies (3)Versions (12)Used By (0)

Uploadcare for Laravel
======================

[](#uploadcare-for-laravel)

This is a simple Laravel service provider for Uploadcare's [official PHP library.](https://github.com/uploadcare/uploadcare-php)It is a fork from altitude/laravel-uploadcare and the pull request from dimaninc to make it compatible with Laravel 5. This package is now maintained by me.

Installation after laravel 5.5
------------------------------

[](#installation-after-laravel-55)

1. install package by composer:

```
composer require inwave/laravel-uploadcare
```

This package will auto discover itself, therefore there is no need to add files to the app.php. Further more it will also autodiscover it's dependencies.

2. Publish the config file:

```
php artisan vendor:publish
```

3. Add the required config variables in the .env file:

```
UPLOADCARE_PUBLIC_KEY=
UPLOADCARE_PRIVATE_KEY=
```

Installation pre laravel 5.5
----------------------------

[](#installation-pre-laravel-55)

First, add this to your `composer.json` file

```
"require": {
    "laravelcollective/html": "5.1.*",
    "inwave/laravel-uploadcare": "~1.3"
}
```

Then, create `config/uploadcare.php` with the following

```
