├── .babelrc ├── .github └── workflows │ └── semgrep.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── LICENSE_APACHE ├── LICENSE_MIT ├── README.md ├── index.php ├── package.json └── wrangler.toml /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["php"] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/LICENSE_APACHE -------------------------------------------------------------------------------- /LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/LICENSE_MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/README.md -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/package.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/php-worker-hello-world/HEAD/wrangler.toml --------------------------------------------------------------------------------