PHP 作为 Web 平台曾经部署最为广泛的语言,其易于部署的特性使它赢得了广 大开发者的支持。今天我们很高兴地发布基于 PHP 的 LeanCloud SDK,0.1.0 版,方便 PHP 开发者能够第一时间测试使用,并为我们提供意见和建议。
0.1.0 版本主要支持数据存储,包括用户的管理,对象的存储查询,以及文件存 储,可以在 PHP 5.3 及以上的运行环境中使用。部署到 LeanEngine 的功能将 在后续版本中支持。
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "precise64a" |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
set -e | |
function error { echo -e "[Error] $*"; exit 1; } | |
function warn { echo -e "[Warning] $*"; } | |
ARCH=$(uname -m) | |
DOCKER_BINARY=/usr/bin/docker | |
DOCKER_REPO=homeassistant | |
DOCKER_SERVICE=docker.service |