├── .gitignore ├── .htaccess ├── Procfile ├── README.adoc ├── app.json ├── composer.json ├── composer.lock ├── config └── config.yml ├── index.html ├── index.php └── static ├── index.html └── movies.cypher /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/.htaccess -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 2 | -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/README.adoc -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/app.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/composer.lock -------------------------------------------------------------------------------- /config/config.yml: -------------------------------------------------------------------------------- 1 | neo4j_url: "bolt://neo4j:password@localhost" -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/index.html -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/index.php -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/static/index.html -------------------------------------------------------------------------------- /static/movies.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-examples/movies-bolt-php/HEAD/static/movies.cypher --------------------------------------------------------------------------------