1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/skeleton/composer.json.in
James Titcumb d9ca72f891 Add composer.json.in to ext/skeleton for PIE support (#19853)
* Add composer.json.in to ext/skeleton for PIE support

* Add --vendor param to ext_skel.php to provide vendor name for PIE packages
2025-09-23 14:57:33 +02:00

20 lines
475 B
JSON

{
"name": "%VENDORNAME%/%EXTNAME%",
"type": "php-ext",
"license": "BSD-3-Clause",
"description": "Describe your extension here",
"require": {
"php": "^8.3"
},
"php-ext": {
"extension-name": "%EXTNAME%",
"configure-options": [
{
"name": "enable-%EXTNAME%",
"needs-value": false,
"description": "whether to enable %EXTNAME% support"
}
]
}
}