Home > database >  Can I use cloudframework PHP to develop APIs in replit.com?
Can I use cloudframework PHP to develop APIs in replit.com?

Time:04-22

I'm using replit.com to develop API tests and I don't see how can I install cloudframework-io/appengine-php-core-7.4 library from git-hub?

CodePudding user response:

You can try cloudframework over replit in the following url: https://replit.com/@cloudframework/php#README.md

CodePudding user response:

You can execute the following instructions in the shell

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php composer-setup.php
php -r "unlink('composer-setup.php');"

And now install via composer

php composer.phar require cloudframework-io/appengine-php-core-7.4
php vendor/cloudframework-io/appengine-php-core-7.4/install.php?replit
  • Related