-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Render, see #67 - Rearranged code, based on usage - Fixed PHPUnit bootstrap - Added PHP 7.1 for testing - Added future tests, currently disabled due to bugs
- Loading branch information
1 parent
3add9f7
commit 814737c
Showing
10 changed files
with
955 additions
and
588 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,10 @@ | ||
sudo: false | ||
language: php | ||
php: | ||
- 7.1 | ||
- 7.0 | ||
- 5.6 | ||
- 5.5 | ||
- 5.4 | ||
- hhvm | ||
before_install: | ||
- composer selfupdate | ||
|
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,32 +1,43 @@ | ||
{ | ||
"name": "t1gor/robots-txt-parser", | ||
"description": "PHP class to parse robots.txt rules according to Google, Yandex, W3C and The Web Robots Pages specifications.", | ||
"keywords": ["robots.txt", "parser", "Google", "Yandex", "W3C", "The Web Robots Pages"], | ||
"homepage": "https://github.com/t1gor/Robots.txt-Parser-Class", | ||
"type": "library", | ||
"license": "MIT", | ||
"minimum-stability": "dev", | ||
"require-dev": { | ||
"php": ">=5.4.0", | ||
"phpunit/phpunit": ">=3.7", | ||
"codeclimate/php-test-reporter": ">=0.2" | ||
"name": "t1gor/robots-txt-parser", | ||
"description": "PHP class to parse robots.txt rules according to Google, Yandex, W3C and The Web Robots Pages specifications.", | ||
"keywords": [ | ||
"robots.txt", | ||
"parser", | ||
"Google", | ||
"Yandex", | ||
"W3C", | ||
"The Web Robots Pages" | ||
], | ||
"homepage": "https://github.com/t1gor/Robots.txt-Parser-Class", | ||
"type": "library", | ||
"license": "MIT", | ||
"require": { | ||
"php": ">=5.4.0", | ||
"ext-mbstring": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": ">=3.7", | ||
"codeclimate/php-test-reporter": ">=0.2" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Igor Timoshenkov", | ||
"email": "[email protected]", | ||
"role": "creator" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Igor Timoshenkov", | ||
"email": "[email protected]", | ||
"role": "creator" | ||
}, | ||
{ | ||
"name": "Jan-Petter Gundersen", | ||
"email": "[email protected]", | ||
"role": "contributor" | ||
} | ||
], | ||
"autoload": { | ||
"classmap": [ "source/robotstxtparser.php" ] | ||
}, | ||
"scripts": { | ||
"test": "phpunit" | ||
{ | ||
"name": "Jan-Petter Gundersen", | ||
"email": "[email protected]", | ||
"role": "contributor" | ||
} | ||
], | ||
"autoload": { | ||
"classmap": [ | ||
"source/robotstxtparser.php" | ||
] | ||
}, | ||
"scripts": { | ||
"test": "phpunit" | ||
} | ||
} |
Oops, something went wrong.