Skip to content

Commit 36ad48e

Browse files
Sergey PodgornyySergey Podgornyy
authored andcommitted
Add Changelog changes + customize scrutinizer with phpunit.xml
1 parent 17244e5 commit 36ad48e

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

docs/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to `larapulse/support` will be documented in this file.
44

55
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
66

7+
## 2017-11-22
8+
9+
### Added
10+
- `Larapulse\Support\Handlers\RegEx` to work with Regular Expressions
11+
- Init `Larapulse\Support\Helpers\RegEx` to generate Regular Expressions
12+
- Unit tests for `Larapulse\Support\Handlers\Str` class
13+
- Unit tests for `Larapulse\Support\Handlers\Regex` class
14+
- Unit tests for `Larapulse\Support\Helpers\Regex` class
15+
- Unit tests for array and string functions
16+
17+
### Changed
18+
- `Larapulse\Support\Handlers\Str::pop()` add `encoding` attribute
19+
- `Larapulse\Support\Handlers\Str::shift()` add `encoding` attribute
20+
- `Larapulse\Support\Handlers\Str::cutStart()` add `repeat` and `caseSensitive` attributes
21+
- `Larapulse\Support\Handlers\Str::cutEnd()` add `repeat` and `caseSensitive` attributes
22+
23+
### Removed
24+
- Array functions: `array_only`, `array_head`, `array_last`
25+
726
## 2017-11-21
827

928
### Added

phpunit.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit bootstrap="vendor/autoload.php"
3+
backupGlobals="false"
4+
backupStaticAttributes="false"
5+
colors="true"
6+
verbose="true"
7+
convertErrorsToExceptions="true"
8+
convertNoticesToExceptions="true"
9+
convertWarningsToExceptions="true"
10+
processIsolation="false"
11+
stopOnFailure="false">
12+
<testsuites>
13+
<testsuite name="Larapulse/Support Test Suite">
14+
<directory>tests</directory>
15+
</testsuite>
16+
</testsuites>
17+
<filter>
18+
<whitelist>
19+
<directory suffix=".php">src/</directory>
20+
</whitelist>
21+
</filter>
22+
<logging>
23+
<log type="tap" target="build/report.tap"/>
24+
<log type="junit" target="build/report.junit.xml"/>
25+
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
26+
<log type="coverage-text" target="build/coverage.txt"/>
27+
<log type="coverage-clover" target="build/logs/clover.xml"/>
28+
</logging>
29+
</phpunit>

0 commit comments

Comments
 (0)