1

I am working on a Cakephp 2.7.3 application and I need to install CakePdf Plugin.

So far all I've found is the CakePdf version that requires Cakephp 3.0+, including when I try using composer and GitHub.

Am still not an expert in CakePHP. Kindly Assist.

Inigo Flores
  • 4,461
  • 1
  • 15
  • 36
Rodgers Ouma
  • 103
  • 2
  • 13

1 Answers1

1

CakePDF release 1.0.3 is compatible with CakePHP 2.x.

To install it, add the following to your /app/composer.json file:

{
    "require": {
        "friendsofcake/cakepdf": "1.0.3"
    }
}

and run

localhost:~/path/to/cake/app$ composer update
Inigo Flores
  • 4,461
  • 1
  • 15
  • 36