Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
luizcmarin committed May 22, 2024
1 parent de94166 commit cc7fe8f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://github.com/yiisoft" target="_blank">
<img src="https://yiisoft.github.io/docs/images/yii_logo.svg" height="100px">
<img src="https://yiisoft.github.io/docs/images/yii_logo.svg" height="100px" alt="Yii">
</a>
<h1 align="center">Yii Strings</h1>
<br>
Expand All @@ -21,7 +21,7 @@ The package provides:
- `NumericHelper` that has static methods to work with numeric strings;
- `Inflector` provides methods such as `toPlural()` or `toSlug()` that derive a new string based on the string given;
- `WildcardPattern` is a shell wildcard pattern to match strings against;
- `CombinedRegexp` is a wrapper that optimizes multiple regular expressions matching and
- `CombinedRegexp` is a wrapper that optimizes multiple regular expressions matching and
`MemoizedCombinedRegexp` is a decorator that caches results of `CombinedRegexp` to speed up matching.

## Requirements
Expand Down Expand Up @@ -157,7 +157,7 @@ Overall the inflector has the following method groups.

## WildcardPattern usage

`WildcardPattern` allows a simple POSIX-style string matching.
`WildcardPattern` allows a simple POSIX-style string matching.

```php
use \Yiisoft\Strings\WildcardPattern;
Expand Down
12 changes: 11 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,23 @@
"homepage": "https://www.yiiframework.com/",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/strings/issues?state=open",
"source": "https://github.com/yiisoft/strings",
"issues": "https://github.com/yiisoft/strings/issues",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"chat": "https://t.me/yii3en"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/yiisoft"
},
{
"type": "github",
"url": "https://github.com/sponsors/yiisoft"
}
],
"require": {
"php": "^8.0",
"ext-mbstring": "*"
Expand Down

0 comments on commit cc7fe8f

Please sign in to comment.