Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2018 | - | ||||
bin/ | H | 03-May-2018 | - | 775 | 539 | |
lib/ | H | 03-May-2018 | - | 16,316 | 7,601 | |
resources/schema/ | H | 03-May-2018 | - | 1,582 | 1,176 | |
tests/ | H | 03-May-2018 | - | 25,190 | 19,930 | |
.travis.yml | H A D | 06-Dec-2016 | 293 | 21 | 16 | |
CHANGELOG.md | H A D | 06-Dec-2016 | 28.4 KiB | 783 | 587 | |
LICENSE | H A D | 06-Dec-2016 | 1.5 KiB | 28 | 23 | |
README.md | H A D | 06-Dec-2016 | 1.8 KiB | 56 | 32 | |
composer.json | H A D | 06-Dec-2016 | 2.1 KiB | 89 | 87 |
README.md
1sabre/vobject 2============= 3 4The VObject library allows you to easily parse and manipulate [iCalendar](https://tools.ietf.org/html/rfc5545) 5and [vCard](https://tools.ietf.org/html/rfc6350) objects using PHP. 6 7The goal of the VObject library is to create a very complete library, with an easy to use API. 8 9 10Installation 11------------ 12 13Make sure you have [Composer][1] installed, and then run: 14 15 composer require sabre/vobject "^4.0" 16 17This package requires PHP 5.5. If you need the PHP 5.3/5.4 version of this package instead, use: 18 19 20 composer require sabre/vobject "^3.4" 21 22 23Usage 24----- 25 26* [Working with vCards](http://sabre.io/vobject/vcard/) 27* [Working with iCalendar](http://sabre.io/vobject/icalendar/) 28 29 30 31Build status 32------------ 33 34| branch | status | 35| ------ | ------ | 36| master | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=master)](https://travis-ci.org/fruux/sabre-vobject) | 37| 3.5 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=3.5)](https://travis-ci.org/fruux/sabre-vobject) | 38| 3.4 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=3.4)](https://travis-ci.org/fruux/sabre-vobject) | 39| 3.1 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=3.1)](https://travis-ci.org/fruux/sabre-vobject) | 40| 2.1 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=2.1)](https://travis-ci.org/fruux/sabre-vobject) | 41| 2.0 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=2.0)](https://travis-ci.org/fruux/sabre-vobject) | 42 43 44 45Support 46------- 47 48Head over to the [SabreDAV mailing list](http://groups.google.com/group/sabredav-discuss) for any questions. 49 50Made at fruux 51------------- 52 53This library is being developed by [fruux](https://fruux.com/). Drop us a line for commercial services or enterprise support. 54 55[1]: https://getcomposer.org/ 56