0

I have project in Symfony2(php framework) and I use parse.com as backend(database etc.) but I don't know how to add parse php sdk to Symfony. I add it to php project without any framework using parse quickstart an it works. Anyone know how to do this?

1 Answer 1

2

You have to add this line to the require block of your composer.json.

"parse/php-sdk" : "1.1.*"

You can find the composer.json in the root of your Symfony project.

After that, cd to the project directory in your command line and run:

composer update

Read more about composer here: https://getcomposer.org/

Read more about installing and using the Parse PHP SDK here: https://github.com/parseplatform/parse-php-sdk

Sign up to request clarification or add additional context in comments.

1 Comment

Make sure to use version 1.2.* instead, as that line contains the necessary support for setting up your own parse-server.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.