From a6b9b7b7b523eaf35285dfb78f4559bf424cf359 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 7 Feb 2020 15:18:35 +0100 Subject: duplicate v2 --- composer.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a5e2320 --- /dev/null +++ b/composer.json @@ -0,0 +1,33 @@ +{ + "name": "sebastian/resource-operations", + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "require": { + "php": "^7.1" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "config": { + "platform": { + "php": "7.1.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + } +} + -- cgit