Сравнить коммиты

..

Нет общих коммитов. «master» и «1.0» имеют совершенно разные истории.
master ... 1.0

3 изменённых файлов: 2 добавлений и 22 удалений

2
.gitignore поставляемый
Просмотреть файл

@ -1,4 +1,4 @@
# files
vendor/
#phpunit.xml
phpunit.xml
composer.lock

Просмотреть файл

@ -2,8 +2,8 @@ PHP TOC Generator
=================
Geneates Table of Contents from H1...H6 Tags in HTML Content
------------------------------------------------------------
[![Build Status](https://travis-ci.org/IgorVBelousov/toc.svg)](https://travis-ci.org/IgorVBelousov/toc)
This package provides a simple, framework-agnostic library to build
a Table-of-Contents from HTML markup. It does so by parsing *H1...H6* tags. It can also automatically add appropriate *id* anchor attributes to header tags.

Просмотреть файл

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="PHP TOC Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>