Skip to content

Commit

Permalink
Initial modernization pass
Browse files Browse the repository at this point in the history
Implements interfaces and adds type coverage to public API.

See #200
  • Loading branch information
gocom committed Dec 15, 2019
1 parent 8cb9323 commit 5f0110f
Show file tree
Hide file tree
Showing 20 changed files with 923 additions and 2,097 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.textile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ h1. Changelog

Here's a summary of changes in each release. The list doesn't include some small changes or updates to test cases.

h2. Version 3.7.5 - upcoming

h2. "Version 3.7.4 - 2019/12/15":https://github.com/textile/php-textile/releases/tag/v3.7.4

* Fix issue where an inline tag preceding the last character, that is a glyph, is not rendered if the block tags are disabled with @Parser::setBlockTags@ (closes "#198":https://github.com/textile/php-textile/issues/198).
Expand Down
8 changes: 3 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
},
"autoload": {
"psr-4": {
"Netcarver\\Textile\\": "src/Netcarver/Textile/"
"Netcarver\\Textile\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Netcarver\\Textile\\Test\\": "test/Netcarver/Textile/Test/"
"Netcarver\\Textile\\Test\\": "test/"
}
},
"require": {
Expand All @@ -36,8 +36,6 @@
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cs": "./vendor/bin/phpcs",
"bump": "@php ./scripts/release.php",
"bump-dev": "@php ./scripts/release.php --dev"
"cs": "./vendor/bin/phpcs"
}
}
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<phpunit bootstrap="test/bootstrap.php">
<testsuites>
<testsuite name="Textile Test Suite">
<directory>./test/Netcarver/Textile/Test/</directory>
<directory>./test/</directory>
</testsuite>
</testsuites>
<filter>
Expand Down
111 changes: 0 additions & 111 deletions scripts/release.php

This file was deleted.

Loading

0 comments on commit 5f0110f

Please sign in to comment.