-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated to test again PHP 7.4 and to use that for coverage reporting. * Added PHP nightly builds as an allowable failure. * Added a git ignore as well as a `phpunit` configuration. * Updated the tests and CI configuration to better handle the juggling of PHP and `phpunit` versions. * Updated the coveralls dependency to be the latest and greatest instead of the deprecated package. * Tweaked the README, updated the LICENSE years and bumped this package's version. * Dropped Patreon link in favor of using Github Sponsors.
- Loading branch information
1 parent
e41f4f7
commit cdb2e05
Showing
9 changed files
with
106 additions
and
70 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
composer.lock | ||
composer.phar | ||
.phpunit.result.cache | ||
/vendor/ |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
patreon: joshtronic |
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
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,31 +1,30 @@ | ||
{ | ||
"name": "joshtronic/php-loremipsum", | ||
"description": "Lorem ipsum generator in PHP without dependencies", | ||
"version": "1.0.4", | ||
"type": "library", | ||
"keywords": [ | ||
"lorem", | ||
"ipsum", | ||
"generator" | ||
], | ||
"homepage": "https://github.com/joshtronic/php-loremipsum", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Josh Sherman", | ||
"email": "[email protected]", | ||
"homepage": "https://joshtronic.com" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.3.0" | ||
}, | ||
"require-dev": { | ||
"satooshi/php-coveralls": "~1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"joshtronic\\": "src/" | ||
} | ||
"name": "joshtronic/php-loremipsum", | ||
"description": "Lorem ipsum generator in PHP without dependencies", | ||
"version": "1.0.5", | ||
"type": "library", | ||
"keywords": [ | ||
"lorem", | ||
"ipsum", | ||
"generator" | ||
], | ||
"homepage": "https://github.com/joshtronic/php-loremipsum", | ||
"license": "MIT", | ||
"authors": [{ | ||
"name": "Josh Sherman", | ||
"email": "[email protected]", | ||
"homepage": "https://joshtronic.com" | ||
}], | ||
"require": { | ||
"php": ">=5.3" | ||
}, | ||
"require-dev": { | ||
"php-coveralls/php-coveralls": ">=1", | ||
"phpunit/phpunit": ">=4" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"joshtronic\\": "src/" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
failOnRisky="true" | ||
stopOnError="true" | ||
stopOnFailure="true" | ||
stopOnIncomplete="true" | ||
verbose="true" | ||
> | ||
<testsuites> | ||
<testsuite name="Lorem Ipsum"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist addUncoveredFilesFromWhitelist="true"> | ||
<directory>./src</directory> | ||
</whitelist> | ||
</filter> | ||
</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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
* Redistribution of these files must retain the above copyright notice. | ||
* | ||
* @author Josh Sherman <[email protected]> | ||
* @copyright Copyright 2014, 2015, 2016, 2017, 2018, 2019 Josh Sherman | ||
* @copyright Copyright 2014, 2015, 2016, 2017, 2018, 2019, 2020 Josh Sherman | ||
* @license http://www.opensource.org/licenses/mit-license.html | ||
* @link https://github.com/joshtronic/php-loremipsum | ||
*/ | ||
|
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