├── Procfile ├── README.md ├── app.json ├── composer.json ├── composer.lock └── index.php /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 -l log/access.log 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddfawcett/reposs/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddfawcett/reposs/HEAD/app.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddfawcett/reposs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddfawcett/reposs/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddfawcett/reposs/HEAD/index.php --------------------------------------------------------------------------------