Miguel Borges
Miguel Borges

Reputation: 7659

phpChart in Laravel

I need a library to generate some charts in my page. I found the phpChart, but I do not know how to install it.

My question is: How to install phpChart in Laravel via composer.

Upvotes: 2

Views: 1515

Answers (1)

Antonio Carlos Ribeiro
Antonio Carlos Ribeiro

Reputation: 87789

Unfortunately if there are no packages on packagist, you cannot install it via Composer.

But you can still install it on Laravel:

1) Download and unzip it somewhere in app/, you can create an app/libraries/phpChart and unzip it there.

2) Edit your composer.json and add your folder to it:

"autoload": {
    "classmap": [
        ...
        "app/libraries"
    ]
},

3) Run composer dump-autoload so Composer create a new map for your library classes.

Upvotes: 5

Related Questions