gitextract_vi8hg7za/ ├── .editorconfig ├── .github/ │ ├── .kodiak.toml │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug.md │ │ ├── Feature.md │ │ └── Question.md │ ├── dependabot.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE ├── Makefile ├── README.md ├── conf/ │ └── build.ini ├── errors/ │ └── now-dev-no-local-php.md ├── jest.config.js ├── package.json ├── src/ │ ├── index.ts │ ├── launchers/ │ │ ├── builtin.ts │ │ ├── cgi.ts │ │ ├── cli.ts │ │ └── helpers.ts │ ├── types.d.ts │ └── utils.ts ├── test/ │ ├── examples/ │ │ ├── 00-php/ │ │ │ ├── .gitignore │ │ │ ├── api/ │ │ │ │ ├── api/ │ │ │ │ │ ├── index.php │ │ │ │ │ └── users.php │ │ │ │ ├── ext/ │ │ │ │ │ ├── ds.php │ │ │ │ │ ├── gd.php │ │ │ │ │ ├── index.php │ │ │ │ │ └── phalcon.php │ │ │ │ ├── hello.php │ │ │ │ ├── index.php │ │ │ │ ├── ini/ │ │ │ │ │ └── index.php │ │ │ │ ├── libs.php │ │ │ │ └── test.php │ │ │ └── vercel.json │ │ ├── 00-test/ │ │ │ ├── .gitignore │ │ │ ├── api/ │ │ │ │ ├── hey.txt │ │ │ │ ├── index.php │ │ │ │ ├── php.ini │ │ │ │ └── test.php │ │ │ ├── src/ │ │ │ │ └── foo.txt │ │ │ └── vercel.json │ │ ├── 01-cowsay/ │ │ │ ├── index.php │ │ │ ├── subdirectory/ │ │ │ │ └── index.php │ │ │ └── vercel.json │ │ ├── 02-extensions/ │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 03-env-vars/ │ │ │ ├── env/ │ │ │ │ └── index.php │ │ │ └── vercel.json │ │ ├── 04-include-files/ │ │ │ ├── excluded_file.php │ │ │ ├── included_file.php │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 05-globals/ │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 06-setcookie/ │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 07-function/ │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 08-opcache/ │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 09-routes/ │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 10-composer-builds/ │ │ │ ├── .gitignore │ │ │ ├── .vercelignore │ │ │ ├── composer.json │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 11-composer-env/ │ │ │ ├── .gitignore │ │ │ ├── .vercelignore │ │ │ ├── composer-test.json │ │ │ ├── index.php │ │ │ └── vercel.json │ │ ├── 12-composer/ │ │ │ ├── .gitignore │ │ │ ├── .vercelignore │ │ │ ├── api/ │ │ │ │ └── index.php │ │ │ ├── composer.json │ │ │ └── vercel.json │ │ ├── 13-composer-scripts/ │ │ │ ├── .gitignore │ │ │ ├── .vercelignore │ │ │ ├── api/ │ │ │ │ └── index.php │ │ │ ├── composer.json │ │ │ └── vercel.json │ │ ├── 14-folders/ │ │ │ ├── .gitignore │ │ │ ├── api/ │ │ │ │ ├── index.php │ │ │ │ └── users/ │ │ │ │ ├── index.php │ │ │ │ └── users.php │ │ │ └── vercel.json │ │ ├── 16-php-ini/ │ │ │ ├── .gitignore │ │ │ ├── api/ │ │ │ │ ├── index.php │ │ │ │ └── php.ini │ │ │ └── vercel.json │ │ ├── 17-zero/ │ │ │ ├── .gitignore │ │ │ ├── api/ │ │ │ │ ├── index.php │ │ │ │ └── test.html │ │ │ ├── src/ │ │ │ │ └── index.txt │ │ │ └── vercel.json │ │ ├── 18-exclude-files/ │ │ │ ├── .gitignore │ │ │ ├── .vercelignore │ │ │ ├── api/ │ │ │ │ └── index.php │ │ │ ├── baz/ │ │ │ │ └── index.html │ │ │ ├── foo/ │ │ │ │ └── index.txt │ │ │ └── vercel.json │ │ ├── 19-server-workers/ │ │ │ ├── .gitignore │ │ │ ├── api/ │ │ │ │ └── index.php │ │ │ └── vercel.json │ │ └── 20-read-files/ │ │ ├── .gitignore │ │ ├── api/ │ │ │ └── index.php │ │ ├── src/ │ │ │ └── users.json │ │ └── vercel.json │ └── spec/ │ ├── index.dev.js │ ├── index.js │ ├── launchers/ │ │ └── cgi.js │ ├── path.js │ └── url.js └── tsconfig.json