Download the PHP package renanbr/bibtex-parser without Composer

On this page you can find all versions of the php package renanbr/bibtex-parser. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package bibtex-parser

PHP BibTeX Parser 2.x

This is a BibTeX parser written in PHP.

BibTeX logo PHP logo

Tests codecov Static Analysis Coding Standards

You are browsing the documentation of BibTeX Parser 2.x, the latest version.

Table of contents

Installing

Usage

This will output:

Vocabulary

BibTeX is all about "entry", "tag's name" and "tag's content".

A BibTeX entry consists of the type (the word after @), a citation-key and a number of tags which define various characteristics of the specific BibTeX entry. (...) A BibTeX tag is specified by its name followed by an equals sign, and the content.

Source: http://www.bibtex.org/Format/

Note: This library considers "type" and "citation-key" as tags. This behavior can be changed implementing your own Listener.

Processors

Processor is a callable that receives an entry as argument and returns a modified entry.

This library contains three main parts:

Despite you can't configure the Parser, you can append as many Processor as you want to the Listener through Listener::addProcessor() before exporting the contents. Be aware that Listener provides, by default, these features:

This project ships some useful processors.

Tag name case

In BibTeX the tag's names aren't case-sensitive. This library exposes entries as array, in which keys are case-sensitive. To avoid this misunderstanding, you can force the tags' name character case using TagNameCaseProcessor.

Usage

Authors and editors

BibTeX recognizes four parts of an author's name: First Von Last Jr. If you would like to parse the author and editor tags included in your entries, you can use the NamesProcessor class.

Usage

Keywords

The keywords tag contains a list of expressions represented as string, you might want to read them as an array instead.

Usage

Date

It adds a new tag _date as DateTimeImmutable. This processor adds the new tag if and only if this the tags month and year are fulfilled.

Usage

Fill missing tag

It puts a default value to some missing field.

Usage

Trim tags

Apply trim() to all tags.

Usage

Determine URL from the DOI

Sets url tag with DOI if doi tag is present and url tag is missing.

Usage

LaTeX to unicode

BibTeX files store LaTeX contents. You might want to read them as unicode instead. The LatexToUnicodeProcessor class solves this problem, but before adding the processor to the listener you must:

Usage

Note: Order matters, add this processor as the last.

Custom

The Listener::addProcessor() method expects a callable as argument. In the example shown below, we append the text with laser to the title tags for all entries.

Usage

Handling errors

This library throws two types of exception: ParserException and ProcessorException. The first one may happen during the data extraction. When it occurs it probably means the parsed BibTeX isn't valid. The second exception may happen during the data processing. When it occurs it means the listener's processors can't handle properly the data found. Both implement ExceptionInterface.

Advanced usage

The core of this library contains these main classes:

You can attach listeners to the parser through Parser::addListener(). The parser is able to detect BibTeX units, such as "type", "tag's name", "tag's content". As the parser finds a unit, it triggers the listeners attached to it.

You can code your own listener! All you have to do is handle units.

$type may assume one of these values:

$context is an array with these keys:


All versions of bibtex-parser with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package renanbr/bibtex-parser contains the following files

Loading the files please wait ....