3

My hosting provider doesn't allow using Composer or PEAR. Doctrine manual doesn't mention any other way of installing it.

How do I install Doctrine without using PEAR or Composer?

Stas Bichenko
  • 13,013
  • 8
  • 45
  • 83
  • i) You can run Composer through a browser - http://stackoverflow.com/questions/17219436/run-composer-with-a-php-script-in-browser/17244866#17244866 ii) Get a new host. – Danack Aug 14 '13 at 13:47

2 Answers2

2

You can visit this page https://github.com/doctrine/doctrine2 and then Download ZIP at the right side of the page. Additional Doctrine related stuff can be found here https://github.com/doctrine and here https://github.com/l3pp4rd/DoctrineExtensions

EDIT: you can also install your vendors with composer locally and upload your vendor folder with your app when you have a production ready version.

Flip
  • 4,778
  • 1
  • 34
  • 48
1

You can use PEAR to install the packages locally and then ftp/scp it up to your host: http://pear.php.net/manual/en/installation.shared.php

This way you can use PEAR locally and don't need it on your server.

cweiske
  • 30,033
  • 14
  • 133
  • 194