summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-07-05 14:09:19 +0200
committerRemi Collet <remi@remirepo.net>2019-07-05 14:09:19 +0200
commit166eb22d96b63a17f536d9ba2468fd3b869c8671 (patch)
treede525f35033af504b1a75479a522c823fd04e9bf
parente99ebeda517e6ba207176a84bad2bab0dc28cb33 (diff)
old composer.json
-rw-r--r--composer.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..507d5d2
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,44 @@
+{
+ "name": "sabre/http",
+ "description" : "The sabre/http library provides utilities for dealing with http requests and responses. ",
+ "keywords" : [ "HTTP" ],
+ "homepage" : "https://github.com/fruux/sabre-http",
+ "license" : "BSD-3-Clause",
+ "require" : {
+ "php" : ">=5.4",
+ "ext-mbstring" : "*",
+ "ext-ctype" : "*",
+ "sabre/event" : ">=1.0.0,<4.0.0",
+ "sabre/uri" : "~1.0"
+ },
+ "require-dev" : {
+ "phpunit/phpunit" : "~4.3",
+ "sabre/cs" : "~0.0.1"
+ },
+ "suggest" : {
+ "ext-curl" : " to make http requests with the Client class"
+ },
+ "authors" : [
+ {
+ "name" : "Evert Pot",
+ "email" : "me@evertpot.com",
+ "homepage" : "http://evertpot.com/",
+ "role" : "Developer"
+ }
+ ],
+ "support" : {
+ "forum" : "https://groups.google.com/group/sabredav-discuss",
+ "source" : "https://github.com/fruux/sabre-http"
+ },
+ "autoload" : {
+ "files" : [
+ "lib/functions.php"
+ ],
+ "psr-4" : {
+ "Sabre\\HTTP\\" : "lib/"
+ }
+ },
+ "config" : {
+ "bin-dir" : "bin/"
+ }
+}