Skip to content

Commit 858bd1d

Browse files
committed
Updated dependencies
1 parent d0a1ae1 commit 858bd1d

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ composer.lock
33
vendor
44
coverage
55
.idea
6+
.phpunit.result.cache

README.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,17 @@ composer require --dev beyondcode/laravel-dump-server
2020

2121
You can find the documentation on the [Beyond Code website](https://beyondco.de/docs/laravel-dump-server/installation).
2222

23-
### Changelog
23+
## Looking for `dump` on steroids? Check out Laravel Herd!
24+
<img src="https://github.com/beyondcode/laravel-dump-server/assets/26432041/28a74ab1-35bd-42d1-bcfe-98e7f7101c1e" alt="Herd logo" style="width: 150px"/>
2425

25-
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
26+
27+
Herd Pro gives you a powerful interface to help you watch and collect your debug information.
28+
29+
All of your application's `dump()` and `dd()` calls will be beautifully formatted and can be filtered from Herd's separate Dump window.
30+
31+
Just keep using `dump()` as usual – Herd will take care of the rest.
32+
33+
[herd.laravel.com](https://herd.laravel.com)
2634

2735
## Contributing
2836

@@ -40,4 +48,3 @@ If you discover any security related issues, please email [email protected] ins
4048
## License
4149

4250
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
43-

composer.json

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
"role": "Developer"
1616
}
1717
],
18+
"conflict": {
19+
"spatie/laravel-ray": "*"
20+
},
1821
"require": {
1922
"php": ">=7.2.5",
2023
"illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",

phpunit.xml.dist

+1-12
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,5 @@
1414
<directory>tests</directory>
1515
</testsuite>
1616
</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>
17+
2918
</phpunit>

0 commit comments

Comments
 (0)