Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ vendor
demo/cache
.phpunit.result.cache
.DS_store
.phpunit.cache
.phpunit.cache
.coveralls.yml export-ignore
phpstan.neon export-ignore
phpunit.xml export-ignore
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Easy peasy, ain't it?

---

The following matrix is has been continuously tested by the great and awesome **GitHub Actions**!
The following matrix has been continuously tested by the great and awesome **GitHub Actions**!

| ----- | Browser Detect 1.x | Browser Detect 2.x | Browser Detect 3.x | Browser Detect 4.x | Browser Detect 5.x |
| :----------: | :----------------: | :----------------: | :----------------: | :----------------: | :----------------: |
Expand Down Expand Up @@ -174,7 +174,7 @@ Every call on the **Browser** facade is proxied to a result object, so the follo
If You are using Laravel then after installation run the following command:

```sh
// Will copy a config file to ~/app/config/browser-detect.php
# Will copy a config file to ~/app/config/browser-detect.php
php artisan vendor:publish
```

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"php": "^8.1",
"ua-parser/uap-php": "~3.9",
"league/pipeline": "^1.0",
"mobiledetect/mobiledetectlib": "~3.74",
"mobiledetect/mobiledetectlib": "~4.0",
"jaybizzle/crawler-detect": "~1.2",
"matomo/device-detector": "^6.0"
},
Expand Down Expand Up @@ -55,7 +55,7 @@
}
},
"scripts": {
"test-dev": "phpunit --coverage-text",
"test-dev": "phpunit",
"test": "phpunit --coverage-clover ./tests/logs/clover.xml"
}
}
Loading