@twn39/tencent-php-slim

1.1.4 • Public • Published

Serverless Components

Slim 4.* PHP tencent serverless component.

Install serverless framework

npm i -g serverless

Install Slimphp & components

composer install slim/slim
composer install slim/http
composer install guzzlehttp/psr7
composer install pimple/pimple
composer install slim/psr7

Make sure the composer.json file contains follow section:

  "require": {
        "slim/slim": "^4.3",
        "slim/http": "^0.8.0",
        "ext-json": "*",
        "guzzlehttp/psr7": "^1.6",
        "pimple/pimple": "^3.2",
        "slim/psr7": "^0.6.0"
    }

Create app.php & container.php

The project root must contain two files, app.php and container.php.

app.php:

<?php

use Slim\Http\Response;
use GuzzleHttp\Psr7\Request;   // notice this request namespace
use Slim\Factory\AppFactory;

$app = AppFactory::create();

$app->get('/', function(Request $request, Response $response) {
    var_dump($this->get('event'));

    return $response->withJson([
        'hello' => 'serverless slim php.'
    ]);
});

return $app;

container.php

<?php

$container = new \Pimple\Container();

// here define the dependencies

return $container;

notice: don't require autoload.php in the head of any file.

Configure the serverless

create the serverless configure file, serverless.yml:

# serverless.yml
 
slimphp:
  component: '@twn39/tencent-php-slim'
  inputs:
    region: ap-shanghai

Deploy

serverless --debug

Have fun !

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.4
    0
    • latest

Version History

Package Sidebar

Install

npm i @twn39/tencent-php-slim

Weekly Downloads

0

Version

1.1.4

License

ISC

Unpacked Size

57.9 kB

Total Files

5

Last publish

Collaborators

  • twn39