Popularity
0.7
Stable
Activity
0.0
Stable
2
2
2

Monthly Downloads: 0
Programming language: PHP
License: MIT License
Tags: Frameworks     PHP7     Slim     Skeleton     Gae     Google App Engine     Slim-framework     Slim3    
Latest version: v1.0.2

Slim3 GAE Skeleton alternatives and similar libraries

Based on the "Frameworks" category.
Alternatively, view Slim3 GAE Skeleton alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Slim3 GAE Skeleton or a related project?

Add another 'Frameworks' Library

README

Slim3 GAE Skeleton

Slim 3 skeleton working with Google App Engine include cron configuration.

Demo https://slim3-gae-skeleton.appspot.com/health_check.

Packagist Packagist Packagist

Installation

$ composer create-project --no-interaction --stability=dev jaredchu/slim3-gae-skeleton my-app

Deploy

Install gcloud then run init command in project directory:

$ gcloud init

Deploy your project:

$ gcloud app deploy

Browse to http://[YOUR_PROJECT_ID].appspot.com

Remember to run this command after update cron.yaml:

$ gcloud app deploy cron.yaml

Run locally

  1. $ cd my-app
  2. $ php -S 0.0.0.0:8888 -t . index.php
  3. Browse to http://localhost:8888

Key directories

  • app: application code
  • app/Controllers: contains controller classes
  • app/Enums: contains enum classes
  • app/Schedules: contains schedule classes

Key files

  • index.php: Entry point to application, route configuration
  • app.yaml: Google App Engine main configuration
  • cron.yaml: Google App Engine cron configuration

Contributing

  1. Fork it!
  2. Create your feature branch: $ git checkout -b feature/your-new-feature
  3. Commit your changes: $ git commit -am 'Add some feature'
  4. Push to the branch: $ git push origin feature/your-new-feature
  5. Submit a pull request.

License

MIT License


*Note that all licence references and agreements mentioned in the Slim3 GAE Skeleton README section above are relevant to that project's source code only.