diff options
author | Remi Collet <remi@remirepo.net> | 2019-07-01 17:17:40 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-07-01 17:17:40 +0200 |
commit | 10e2f99c2cfd3071e4fe8646d45499e4601a1ac7 (patch) | |
tree | 42bc579826c58b6e7fc57ee30682b9969d5f0f57 /composer.json |
duplicate v1
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..49d69e7 --- /dev/null +++ b/composer.json @@ -0,0 +1,41 @@ +{ + "name": "sabre/uri", + "description": "Functions for making sense out of URIs.", + "keywords": [ + "URI", + "URL", + "rfc3986" + ], + "homepage": "http://sabre.io/uri/", + "license": "BSD-3-Clause", + "require": { + "php": ">=5.4.7" + }, + "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-uri" + }, + "autoload": { + "files" : [ + "lib/functions.php" + ], + "psr-4" : { + "Sabre\\Uri\\" : "lib/" + } + }, + "require-dev": { + "sabre/cs": "~1.0.0", + "phpunit/phpunit" : ">=4.0,<6.0" + }, + "config" : { + "bin-dir" : "bin/" + } +} |