cloudframework-io / appengine-php-core-7.3
Framework to develop APIs and web applications optimized for Google Appengine PHP 7.3
Installs: 1 430
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 10
Forks: 0
Open Issues: 0
Requires
- google/apiclient: ^2.4
- google/cloud-bigquery: ^1.16
- google/cloud-datastore: ^1.11
- google/cloud-logging: ^1.19
- google/cloud-pubsub: ^1.34
- google/cloud-secret-manager: ^1.0
- google/cloud-storage: ^1.18
- google/cloud-tasks: ^1.6
- zbateson/mail-mime-parser: ^1.2
- dev-master
- v73.24091
- v73.24062
- v73.24061
- v73.24052
- v73.24051
- v73.24043
- v73.24042
- v73.24041
- v73.24032
- v73.24031
- v73.24011
- v73.23306
- v73.23305
- v73.23304
- v73.23303
- v73.23302
- v73.23301
- v73.23281
- v73.23261
- v73.23254
- v73.23253
- v73.23252
- v73.23251
- v73.23241
- v73.23181
- v73.23161
- v73.23082
- v73.23081
- v73.23051
- v73.22251
- v73.22141
- v73.22071
- v73.22061
- v73.21211
- v73.20251
- v73.19272
- v73.19271
- v73.19191
- v73.19061
- v73.18111
- v73.18102
- v73.18101
- v73.18092
- v73.18091
- v73.17112
- v73.17111
- v73.17061
- v73.17021
- v73.16291
- v73.16121
- v73.16041
- v73.15251
- v73.15051
- v73.14251
- v73.14161
- v73.14051
- v73.13131
- v73.13071
- v73.13033
- v73.13032
- v73.13031
- v73.12311
- v73.12071
- v73.12052
- v73.12051
- v73.11205
- v73.11204
- v73.11203
- v73.11202
- v73.11101
- v73.11061
- v73.10291
- v73.10251
- v73.10241
- v73.10231
- v73.10161
- v73.10143
- v73.10142
- v73.10141
- v73.10111
- v73.10101
- v73.10091
- v73.10081
- v73.10071
- v73.10031
- v73.10022
- v73.10021
- v73.10011
- v73.09301
- v73.09211
- v73.09174
- v73.09173
- v73.09172
- v73.09171
- v73.09061
- v73.09042
- v73.09012
- v73.09011
- v73.08312
- v73.08311
- v73.08301
- v73.08276
- v73.08274
- v73.08273
- v73.08272
- v73.08271
- v73.08252
- v73.08251
- v73.08041
- v73.07221
- v73.07201
- v73.07181
- v73.07174
- v73.07173
- v73.07171
- v73.07161
- v73.07141
- v73.07123
- v73.07122
- v73.07121
- v73.07021
- v73.06231
- v73.06152
- v73.06151
- v73.06101
- v73.05291
- v73.05201
- v73.05171
- v73.05131
- v73.05121
- v73.05041
- v73.05021
- v73.04291
- v73.04281
- v73.04082
- v73.04071
- v73.04062
- v73.04061
- v73.03291
- v73.03272
- v73.03271
- v73.03111
- v73.03101
- v73.03084
- v73.03083
- v73.03082
- v73.03081
- v73.03071
- v73.02261
- v73.02151
- v73.02111
- v73.02064
- v73.02063
- v73.02062
This package is auto-updated.
Last update: 2024-11-09 17:50:54 UTC
README
CloudFrameWork.io / APPENGINE PHP 7.3 Framework
composer require cloudframework-io/appengine-php-core-7.3
Google Cloud
Package
https://packagist.org/packages/cloudframework-io/appengine-php-core-7.3
Memorystore. Install REDIS to manage Memory Cache
In php7 we have lost MemoryCache :(. To solve it Google provide a solution call Memorystore:
- https://console.cloud.google.com/marketplace/details/google/redis.googleapis.com.
- https://cloud.google.com/appengine/docs/standard/php7/using-memorystore
It is a REDIS server that can also be installed in localhost. You can read more about it in:
- https://medium.com/@petehouston/install-and-config-redis-on-mac-os-x-via-homebrew-eb8df9a4f298
- https://redis.io/topics/quickstart
Configure in Google Cloud a VPC to connect your redis server
https://cloud.google.com/appengine/docs/standard/php7/connecting-vpc#configuring
Install REDIS in localhost
brew install redis
Manual launch (stand alone)
redis-server /usr/local/etc/redis.conf
In Background
brew services start redis
Install the php library
sudo pecl install redis-5.2.0
Setup Env Vars for localhost
export REDIS_HOST=127.0.0.1
export REDIS_PORT=6379
Setup app.yaml vars for Google Cloud
env_variables:
REDIS_HOST: "10.*****"
REDIS_PORT: "6379"
Using it in CloudFramework
$core->cache->get/set/delete