-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* drop PHP 5.3 and 5.4 support * add travis tests for PHP 5.5+ * Support bicpi/html-converter `^2.0` * switch to PSR-4 * update README and docs * use PHPUnit as a dev dependency * Add travis build image branch restriction
- Loading branch information
Showing
4 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
|
||
before_script: | ||
- composer install --dev | ||
|
||
script: phpunit | ||
script: ./vendor/bin/phpunit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
# HtmlConverterBundle | ||
|
||
The `HtmlConverterBundle` integrates the [HtmlConverter](https://github.com/bicpi/HtmlConverter) | ||
library with Symfony2. This means easy HTML to text conversions. | ||
library with Symfony. This means easy HTML-to-text conversions. | ||
|
||
[![Build Status](https://secure.travis-ci.org/bicpi/HtmlConverterBundle.png)](http://travis-ci.org/bicpi/HtmlConverterBundle) | ||
[![Build Status](https://travis-ci.org/bicpi/HtmlConverter.svg?branch=master)](https://travis-ci.org/bicpi/HtmlConverterBundle) | ||
|
||
Dcumentation for this bundle is available in the `Resources/doc` directory: | ||
|
||
* [HtmlConverterBundle documentation](https://github.com/bicpi/HtmlConverterBundle/blob/master/Resources/doc/index.md) | ||
Documentation for this bundle is available in [Resources/doc](Resources/doc/index.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
{ | ||
"name": "bicpi/html-converter-bundle", | ||
"type": "symfony-bundle", | ||
"description": "This bundle provides Symfony2 integration of bicpi's html-converter library", | ||
"description": "This bundle provides Symfony integration of bicpi's html-converter library", | ||
"keywords": ["html", "text", "converter", "symfony2", "bundle", "bicpi"], | ||
"homepage": "http://github.com/bicpi/HtmlConverterBundle", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Philipp Rieber", | ||
"homepage": "http://philipp-rieber.net" | ||
"homepage": "https://philipp-rieber.net" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.3.2", | ||
"bicpi/html-converter": "1.0.*" | ||
"php": ">=5.5.9", | ||
"bicpi/html-converter": "^2.0" | ||
}, | ||
"require-dev": { | ||
"symfony/dependency-injection": "~2.1", | ||
"symfony/http-kernel": "~2.1", | ||
"symfony/config": "~2.1", | ||
"symfony/yaml": "~2.1" | ||
"phpunit/phpunit": "^4.8", | ||
"symfony/dependency-injection": "^2.7 || ^3.0", | ||
"symfony/http-kernel": "^2.7 || ^3.0", | ||
"symfony/config": "^2.7 || ^3.0", | ||
"symfony/yaml": "^2.7 || ^3.0" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"bicpi\\Bundle\\HtmlConverterBundle": "" | ||
"psr-4": { | ||
"bicpi\\Bundle\\HtmlConverterBundle\\": "" | ||
} | ||
}, | ||
"target-dir": "bicpi/Bundle/HtmlConverterBundle", | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0.x-dev" | ||
"dev-master": "2.0-dev" | ||
} | ||
} | ||
} |