0.0.1-canary.1 β€’ Published 5 years ago

@now-bref/lib v0.0.1-canary.1

Weekly downloads
14
License
MIT
Repository
github
Last release
5 years ago

🐣 Versions

PkgTagStabilityInfo
βœ…now-phplatestproductionRock-solid stable.
πŸ”₯now-phpcanarytestingFor early-adopters.
⚠️now-phpexperimentaldevelopmentTesting and high danger.

Need to know how things are changing? Here is changelog.

πŸ€— Features

  • Architecture: PHP development server (πŸš€ fast enough)
  • PHP version: 7.3.8
  • Extensions: apcu, bcmath, bz2, calendar, Core, ctype, curl, date, dom, ds, exif, fileinfo, filter, ftp, gettext, hash, iconv, json, libxml, mbstring, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_mysql, pdo_pgsql, pdo_sqlite, phalcon, Phar, readline, Reflection, session, SimpleXML, soap, sockets, sodium, SPL, sqlite3, ssh2, standard, swoole, tokenizer, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zlib
  • Speed: cold ~250ms / warm ~5ms
  • Memory: ~90mb
  • Frameworks: Nette, Symfony, Lumen, Slim, Phalcon

List of all installable extensions is on this page https://blog.remirepo.net/pages/PECL-extensions-RPM-status.

βš™οΈ Usage

Take a look at ZEIT's blogpost about Serverless Functions.

You should define functions property in now.json and list PHP files directly or using wildcard (*).

{
  "functions": {
    "api/*.php": {
      "runtime": "now-php@0.0.7"
    }
  }
}

If you need to show index page define routes properly.

{
  "functions": {
    "api/index.php": {
      "runtime": "now-php@0.0.7"
    }
  },
  "routes": [
    { "src": "/(.*)",  "dest": "/api/index.php" }
  ]
}

Additional function properties are memory, maxDuration.

{
  "functions": {
    "api/*.php": {
      "runtime": "now-php@0.0.7",
      "memory": 3008,
      "maxDuration": 500
    }
  }
}

πŸ‘¨β€πŸ’»now dev

For running now dev properly, you need to have PHP installed on your computer, learn more.

πŸ‘€ Demo

npm.io

🎯Examples

Browse more examples. πŸ‘€

πŸ“œ Resources

🚧 Roadmap

  • next-gen PHP runtime βœ…
  • Composer
    • config.composer: true βœ…
    • composer.json detection βœ…
  • zero config βœ…
  • now dev βœ…
  • rewrite to typescript βœ…
  • setup CI βœ…
  • configure php.ini 🚧
    • using builds.config βœ…
    • using build.env 🚧

Help wanted

  • create many examples (majority frameworks and other use-cases)
  • cover by tests
  • adopt PHP 7.4

πŸ‘¨πŸ»β€πŸ’»CHANGELOG

Show me CHANGELOG

πŸ“ License

Copyright Β© 2019 f3l1x. This project is MIT licensed.