Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Packaging: host the Shaarli fork on Packagist #26

Merged
merged 1 commit into from
Aug 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2015-2016 Kafene and contributors
Copyright (c) 2016 Shaarli community

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# netscape-bookmark-parser
[![license](https://img.shields.io/github/license/kafene/netscape-bookmark-parser.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![](https://img.shields.io/travis/shaarli/netscape-bookmark-parser.svg?style=flat-square&label=master)](https://travis-ci.org/shaarli/netscape-bookmark-parser)
[![](https://img.shields.io/github/release/shaarli/netscape-bookmark-parser.svg?style=flat-square)](https://github.com/shaarli/netscape-bookmark-parser/releases/latest/)
[![license](https://img.shields.io/github/license/shaarli/netscape-bookmark-parser.svg?style=flat-square)](https://opensource.org/licenses/MIT)


## About
This library provides a generic `NetscapeBookmarkParser` class that is able
of parsing Netscape bookmark export files.
of parsing Netscape bookmarks as exported by common Web browsers and
bookmarking services.

The motivations behind developing this parser are the following:
- the [Netscape format](https://msdn.microsoft.com/en-us/library/aa753582%28v=vs.85%29.aspx)
Expand All @@ -26,6 +29,14 @@ How it works:
- an associative array containing all successfully parsed links with their
attributes is returned

### Shaarli community fork
This friendly fork is maintained by the Shaarli community at
https://github.com/shaarli/netscape-bookmark-parser and is used by the
open-source [Shaarli](https://github.com/shaarli/Shaarli) bookmarking service.
This is a community fork of the original
[netscape-bookmark-parser](https://github.com/kafene/netscape-bookmark-parser)
project by [Kafene](http://kafene.org/).

## Example
Script:
```php
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "kafene/netscape-bookmark-parser",
"name": "shaarli/netscape-bookmark-parser",
"description": "Generic Netscape bookmark parser",
"license": "MIT",
"homepage": "https://github.com/kafene/netscape-bookmark-parser",
"homepage": "https://github.com/shaarli/netscape-bookmark-parser",
"authors": [
{
"name": "Kafene",
Expand Down