picqer / moneybird-php-client

PHP Client for Moneybird V2
MIT License
82 stars 77 forks source link

Downloadable package without composer #112

Closed Beee4life closed 6 years ago

Beee4life commented 6 years ago

I want to use this in a Wordpress plugin on a server without Composer. So I placed into my plugin subfolder /vendor and I added this package (for the autoload file).

I removed only the paynl folder and changed the autoload.php location in my plugin. It seems to work only partially, but I was wondering if it is possible (maybe with some tweaks) to do it like this.

Follow-up question: will you make a downloadable package without composer ?

stephangroen commented 6 years ago

There is a lot of info on this on the internet. The way to use Composer packages without Composer is the same for most of the available packages. See for example: https://stackoverflow.com/questions/40545795/how-do-i-install-composer-php-packages-without-composer

Beee4life commented 6 years ago

I'm sorry, but I have searched and tried various options but I couldn't make it work yet, that's why I asked your for help.

I really hope you can help me here, because I'm very stuck....

stephangroen commented 6 years ago

https://php-download.com/package/picqer/moneybird-php-client

Download the files, extract them to your project. Use the autoloader as specified in the index.php file. Then you can use this library as specified in README.

Beee4life commented 6 years ago

That was what I was looking for. Thank you, appreciate it.

I put it in my plugin and the first try was a success. Gonna check out the rest tomorrow.