Skip to content

Commit 6ecd193

Browse files
committed
Prepare 2.1.0
1 parent 34c6ef9 commit 6ecd193

File tree

11 files changed

+66
-21
lines changed

11 files changed

+66
-21
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![version](https://img.shields.io/badge/version-2.1.0-green.svg)](https://github.com/steevanb/php-backtrace/tree/2.1.0)
2-
[![php](https://img.shields.io/badge/php-^5.4%20||%20^7.0||%20^8.0-blue.svg)](http://php.net)
3-
![Lines](https://img.shields.io/badge/code%20lines-1463-green.svg)
2+
[![php](https://img.shields.io/badge/php-^5.4%20||%20^7.0%20||%20^8.0-blue.svg)](http://php.net)
3+
![Lines](https://img.shields.io/badge/code%20lines-1575-green.svg)
44
![Total Downloads](https://poser.pugx.org/steevanb/php-backtrace/downloads)
55
[![Scrutinizer](https://scrutinizer-ci.com/g/steevanb/php-backtrace/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/steevanb/php-backtrace/)
66

changelog.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,35 @@
22

33
- Set `DebugBacktraceConsole::dump()` and `DebugBacktraceConsole::eDump()` `$output` parameter facultative
44
- Add PHP 8 compatibility
5-
- Add PHPUnit tests for PHP 5.4 to 8.0
6-
- Move files from root to src (it's not a BC break because you must use this classes with autoload)
5+
- Add PHPUnit tests for PHP `5.4` to `8.0
6+
- Move files from `/` to `/src` (it's not a BC break because you must use this classes with autoload)
77

88
### [2.0.1](../../compare/2.0.0...2.0.1) (2017-03-30)
99

10-
- Fix caller for \DebugBacktraceHtml and \DebugBacktraceConsole
10+
- Fix caller for `\DebugBacktraceHtml` and `\DebugBacktraceConsole`
1111

1212
### [2.0.0](../../compare/1.1.1...2.0.0) (2016-12-31)
1313

14-
- Reverse backtraces : first shown is first call (debug_backtrace() show last call in first)
15-
- Split \DumpBacktrace in 3 classes : \DebugBacktrace, \DebugBacktraceHtml and \DebugBacktraceConsole
16-
- Add dump for symfony/console applications
14+
- Reverse backtraces : first shown is first call (`debug_backtrace()` show last call in first)
15+
- Split `\DumpBacktrace` in 3 classes : `\DebugBacktrace`, `\DebugBacktraceHtml` and `\DebugBacktraceConsole`
16+
- Add dump for `symfony/console` applications
1717

1818
### [1.1.1](../../compare/1.1.0...1.1.1) (2016-10-12)
1919

2020
- Fix file not found errors
21-
- Fix eval()'d code in file path
21+
- Fix `eval()'d` code in file path
2222
- Update backtrace.png
2323

2424
### [1.1.0](../../compare/1.0.1...1.1.0) (2016-10-10)
2525

26-
- Add eDump() and getDump()
26+
- Add `eDump()` and `getDump()`
2727

2828
### [1.0.1](../../compare/1.0.0...1.0.1) (2016-08-16)
2929

30-
- Fix (Unknow call) when function is called
30+
- Fix `(Unknow call)` when function is called
3131
- Add preview only when available
3232
- Show \Closure in File::Line column, instead of (Unknow file)::(Unknow line)
3333

3434
### 1.0.0 (2016-08-02)
3535

36-
- Create \DumpBacktrace class
36+
- Create `\DumpBacktrace` class

docker/php54/composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"repositories": [
1515
{
1616
"type": "path",
17-
"url": "/app"
17+
"url": "/app",
18+
"options": {
19+
"versions": {
20+
"steevanb/php-backtrace": "dev-master"
21+
}
22+
}
1823
}
1924
]
2025
}

docker/php55/composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"repositories": [
1515
{
1616
"type": "path",
17-
"url": "/app"
17+
"url": "/app",
18+
"options": {
19+
"versions": {
20+
"steevanb/php-backtrace": "dev-master"
21+
}
22+
}
1823
}
1924
]
2025
}

docker/php56/composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"repositories": [
1515
{
1616
"type": "path",
17-
"url": "/app"
17+
"url": "/app",
18+
"options": {
19+
"versions": {
20+
"steevanb/php-backtrace": "dev-master"
21+
}
22+
}
1823
}
1924
]
2025
}

docker/php70/composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"repositories": [
1515
{
1616
"type": "path",
17-
"url": "/app"
17+
"url": "/app",
18+
"options": {
19+
"versions": {
20+
"steevanb/php-backtrace": "dev-master"
21+
}
22+
}
1823
}
1924
]
2025
}

docker/php71/composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"repositories": [
1515
{
1616
"type": "path",
17-
"url": "/app"
17+
"url": "/app",
18+
"options": {
19+
"versions": {
20+
"steevanb/php-backtrace": "dev-master"
21+
}
22+
}
1823
}
1924
]
2025
}

docker/php72/composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"repositories": [
1515
{
1616
"type": "path",
17-
"url": "/app"
17+
"url": "/app",
18+
"options": {
19+
"versions": {
20+
"steevanb/php-backtrace": "dev-master"
21+
}
22+
}
1823
}
1924
]
2025
}

docker/php73/composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"repositories": [
1515
{
1616
"type": "path",
17-
"url": "/app"
17+
"url": "/app",
18+
"options": {
19+
"versions": {
20+
"steevanb/php-backtrace": "dev-master"
21+
}
22+
}
1823
}
1924
]
2025
}

docker/php74/composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"repositories": [
1515
{
1616
"type": "path",
17-
"url": "/app"
17+
"url": "/app",
18+
"options": {
19+
"versions": {
20+
"steevanb/php-backtrace": "dev-master"
21+
}
22+
}
1823
}
1924
]
2025
}

0 commit comments

Comments
 (0)