-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a composer.json to enable support for PIE
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!!)" | ||
} | ||
] | ||
} | ||
} |