diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-04-26 07:31:03 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-04-26 07:31:03 +0200 |
commit | b3035fe5e23c9e36c9028d5509c7281612efacd4 (patch) | |
tree | ce9659812233888978f6e9ea93e2310b01aa454a /composer.json | |
parent | 0ee479623252dd826c9da99236fb4c2394cf1ad0 (diff) |
php-sabre-vobject: 3.5.2
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..309c08a --- /dev/null +++ b/composer.json @@ -0,0 +1,50 @@ +{ + "name": "sabre/vobject", + "description" : "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects", + "keywords" : [ "VObject", "iCalendar", "vCard", "jCard", "jCal" ], + "homepage" : "http://sabre.io/vobject/", + "license" : "BSD-3-Clause", + "require" : { + "php" : ">=5.3.1", + "ext-mbstring" : "*" + }, + "require-dev" : { + "phpunit/phpunit" : "*", + "squizlabs/php_codesniffer": "*" + }, + "authors" : [ + { + "name" : "Evert Pot", + "email" : "me@evertpot.com", + "homepage" : "http://evertpot.com/", + "role" : "Developer" + }, + { + "name" : "Dominik Tobschall", + "email" : "dominik@fruux.com", + "homepage" : "http://tobschall.de/", + "role" : "Developer" + } + ], + "support" : { + "forum" : "https://groups.google.com/group/sabredav-discuss", + "source" : "https://github.com/fruux/sabre-vobject" + }, + "autoload" : { + "psr-4" : { + "Sabre\\VObject\\" : "lib/" + } + }, + "bin" : [ + "bin/vobject", + "bin/generate_vcards" + ], + "extra" : { + "branch-alias" : { + "dev-master" : "3.2.x-dev" + } + }, + "config" : { + "bin-dir" : "bin" + } +} |