1

I have used phpthumb in zf1 but not sure how to use in zf2, looks like whole process is different, can anyone pls help me ?

ktm
  • 6,025
  • 24
  • 69
  • 95

1 Answers1

0

If you are installing ZF2 by using composer you can just require the phpthumb package:

https://packagist.org/packages/dannytrue/phpthumb

"require": {
    "dannytrue/phpthumb": "dev-master"
}

This should take care of installing it for you, and using it is going to be pretty much the same.

Andrew
  • 12,617
  • 1
  • 34
  • 48
  • I installed skeleton application using git, i don't know at what point i should use composer – ktm Mar 07 '13 at 10:45
  • You can just modify your composer.json file to include the new dependency then run php composer.phar install – Andrew Mar 07 '13 at 12:09