Skip to content

Commit

Permalink
Added a composer.json to enable support for PIE
Browse files Browse the repository at this point in the history
  • Loading branch information
asgrim committed Sep 18, 2024
1 parent 3299efc commit e701ffb
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "krakjoe/apcu",
"type": "php-ext",
"license": "PHP-3.01",
"description": "APCu - APC User Cache",
"require": {
"php": ">= 7.0.0"
},
"php-ext": {
"extension-name": "apcu",
"configure-options": [
{
"name": "enable-apcu",
"description": "Enable APCu support"
},
{
"name": "disable-apcu-rwlocks",
"description": "Disable rwlocks in APCu"
},
{
"name": "enable-apcu-debug",
"description": "Enable APCu debugging"
},
{
"name": "enable-apcu-clear-signal",
"description": "Enable SIGUSR1 clearing handler"
},
{
"name": "disable-apcu-mmap",
"description": "Disable mmap, falls back on shm"
},
{
"name": "enable-apcu-spinlocks",
"description": "Use spinlocks before flocks"
},
{
"name": "disable-valgrind-checks",
"description": "Disable Valgrind-based memory checks"
},
{
"name": "enable-coverage",
"description": "Include code coverage symbols (DEVELOPERS ONLY!!)"
}
]
}
}

0 comments on commit e701ffb

Please sign in to comment.