Guest User

Untitled

a guest
Oct 8th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. Instructions for installation of Dependencies
  2.  
  3. Remove your Pear Path from .bashrc in your home folder and all dependencies from it
  4. #PATH="$PATH:/home/nmartin/pear/pear"
  5. #export PATH
  6.  
  7. #alias phpunit='php /home/nmartin/pear/pear/phpunit'
  8. #alias pear='/home/nmartin/pear/pear/pear'
  9. #alias phpcs='/home/nmartin/pear/pear/phpcs'
  10.  
  11.  
  12. add:
  13. export PATH="$PATH:/path/to/your/src/vendor/bin"
  14.  
  15. To install new Dependencies run
  16. php composer.phar install --dev
  17. from your git source folder
  18.  
  19. Update Your build.properties to look like this
  20.  
  21. path.build = build path
  22. environment = development
  23.  
  24. database.name = xyz
  25. database.host = xyz
  26. database.login = xyz
  27. database.password = xyz
  28.  
  29. solr.hostname = xyz
  30. solr.username =
  31. solr.password =
  32. solr.port = 8080
  33.  
  34. doctrine.migration.name = "V5 Database Migrations"
  35. doctrine.migration.tableName = "doctrine_migration_versions"
  36. doctrine.migration.namespace = "DoctrineMigrations"
  37. doctrine.migration.directory = "/../../migration/test"
  38.  
  39.  
  40. All command line options will be available in vendor/bin
  41. e.g.
  42.  
  43. vendor/bin/phing/reset
Add Comment
Please, Sign In to add comment