The bulk of the documentation is stored in the Resources/doc/index.md
file in this bundle:
Read the Documentation for master
In order to use both repositories you can go through this SO answer. Our Bitbucket repository is origin, and the original fork is upstream.
- Build the image:
docker build -t fos_oauth_server_bundle .
- Run container:
docker run --rm -d fos_oauth_server_bundle -r "while(true){}"
- Note container's name:
docker ps
- Copy vendor from the container:
docker container cp <container_name>:/usr/src/fos-oauth-server-bundle/vendor vendor
- Stop the container:
docker stop <container_name>
- Build the image:
docker build -t fos_oauth_server_bundle . --build-arg COMPOSER_CMD=update
- Run container:
docker run --rm -d fos_oauth_server_bundle -r "while(true){}"
- Note container's name:
docker ps
- Copy vendor from the container:
docker container cp <container_name>:/usr/src/fos-oauth-server-bundle/vendor vendor
- Copy composer.lock from the container:
docker container cp <container_name>:/usr/src/fos-oauth-server-bundle/composer.lock composer.lock
- Stop the container:
docker stop <container_name>
This bundle is under the MIT license. See the complete license in the bundle:
Resources/meta/LICENSE
- More tests
- Arnaud Le Blanc, and all contributors
- Inspired by BazingaOAuthBundle and FOSUserBundle
- Installation doc adapted from FOSUserBundle doc.