interfax / interfax-php

Fax send and receive in PHP with the InterFAX REST API
https://www.interfax.net/en/dev/php
MIT License
13 stars 4 forks source link

Document usage outside of composer? #1

Closed cbetta closed 8 years ago

cbetta commented 8 years ago

@splatEric would it be worth documenting non-Composer installs? I've had issues in the past with developers not familiar with Composer who couldn't figure out how to use a library outside of that ecosystem. Not sure if Composer is 100% the default these days.

splatEric commented 8 years ago

Personally I don't think it's worth it. Composer handles the dependency of the guzzle http package that is being used in this code, and that (naturally) has dependencies as well. This makes manually requiring all the relevant files a real headache, so you would essentially wind up writing an autoloader outside of composer that would be doing much the same thing.

It's a well defined, well supported standard in the same vein as ruby gems, it seems a waste of time and effort to produce an alternative.

cbetta commented 8 years ago

Ok agreed, makes no sense indeed.