summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-06-19 12:03:52 +0200
committerRemi Collet <remi@remirepo.net>2019-06-19 12:03:52 +0200
commit950db6737720f7390d68c8e2844b51a9cf8b5c61 (patch)
tree01848ed189d1c09d3f901810f9259c6c7fe9eaa4 /composer.json
parentbe83d23eb51c7904a911bb38974cc0ae2dfa03d3 (diff)
backport stuff
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..ec4a2cf
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,26 @@
+{
+ "name": "brumann/polyfill-unserialize",
+ "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
+ "type": "library",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Denis Brumann",
+ "email": "denis.brumann@sensiolabs.de"
+ }
+ ],
+ "autoload": {
+ "psr-4": {
+ "Brumann\\Polyfill\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Tests\\Brumann\\Polyfill\\": "tests/"
+ }
+ },
+ "minimum-stability": "stable",
+ "require": {
+ "php": "^5.3|^7.0"
+ }
+}