Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 12-Jan-2021 | - | ||||
lib/ | H | 12-Jan-2021 | - | 15,487 | 8,143 | |
resources/schema/ | H | 12-Jan-2021 | - | 1,582 | 1,176 | |
.php_cs.dist | H A D | 11-Jan-2021 | 193 | 12 | 10 | |
CHANGELOG.md | H A D | 11-Jan-2021 | 30.3 KiB | 844 | 630 | |
LICENSE | H A D | 11-Jan-2021 | 1.5 KiB | 28 | 23 | |
README.md | H A D | 11-Jan-2021 | 1.8 KiB | 56 | 32 | |
composer.json | H A D | 11-Jan-2021 | 2.2 KiB | 92 | 91 | |
phpstan.neon | H A D | 11-Jan-2021 | 82 | 4 | 3 |
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/sabre-io/vobject.svg?branch=master)](https://travis-ci.org/sabre-io/vobject) | 37| 3.5 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=3.5)](https://travis-ci.org/sabre-io/vobject) | 38| 3.4 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=3.4)](https://travis-ci.org/sabre-io/vobject) | 39| 3.1 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=3.1)](https://travis-ci.org/sabre-io/vobject) | 40| 2.1 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=2.1)](https://travis-ci.org/sabre-io/vobject) | 41| 2.0 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=2.0)](https://travis-ci.org/sabre-io/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