mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
* Add composer.json.in to ext/skeleton for PIE support * Add --vendor param to ext_skel.php to provide vendor name for PIE packages
20 lines
475 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|