Skip to content

Commit

Permalink
Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Mar 15, 2024
1 parent 60de956 commit cd3685d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
name: PHP ${{ matrix.php-version }}
runs-on: ubuntu-latest
strategy:
# fail-fast: true
fail-fast: false
matrix:
php-version: [8.1, 8.2, 8.3]
php-version: [8.2, 8.3]

steps:
- name: Checkout code
Expand Down
36 changes: 18 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,16 @@
"type": "project",
"keywords": ["laravel", "url-shortener", "shorten-urls", "shorturl"],
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-gmp": "*",
"blade-ui-kit/blade-icons": "^1.5",
"doctrine/dbal": "^3.7",
"blade-ui-kit/blade-icons": "^1.6",
"embed/embed": "^4.4",
"endroid/qr-code": "^5.0",
"guzzlehttp/guzzle": "^7.8",
"laravel/fortify": "^1.18",
"laravel/framework": "^10.40",
"laravel/sanctum": "^3.3",
"laravel/tinker": "^2.8",
"livewire/livewire": "^3.0",
"laravel/fortify": "^1.20",
"laravel/framework": "^11.0",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.9",
"livewire/livewire": "^3.4",
"matomo/device-detector": "^6.1",
"power-components/livewire-powergrid": "^5.1",
"spatie/laravel-permission": "^6.4",
Expand All @@ -25,13 +23,13 @@
"require-dev": {
"brianium/paratest": "^7.2",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.7",
"laravel/dusk": "^7.6",
"larastan/larastan": "^2.8",
"laravel/dusk": "^8.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7.9",
"phpunit/phpunit": "^10.3",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^10.5|^11.0",
"realodix/relax": "^1.6",
"spatie/laravel-ignition": "^2.3"
"spatie/laravel-ignition": "^2.4"
},
"minimum-stability": "stable",
"autoload": {
Expand All @@ -57,18 +55,20 @@
}
},
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"test": [
"./vendor/bin/phpunit"
Expand Down
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![screenshot](https://i.imgur.com/MeZvgiz.png)

[![LaravelVersion](https://img.shields.io/badge/Laravel-10-f56857.svg?style=flat-square)](https://laravel.com/docs/10.x/releases#laravel-10)
![PHPVersion](https://img.shields.io/badge/PHP-8.1-777BB4.svg?style=flat-square)
[![LaravelVersion](https://img.shields.io/badge/Laravel-11-f56857.svg?style=flat-square)](https://laravel.com/docs/10.x/releases#laravel-10)
![PHPVersion](https://img.shields.io/badge/PHP-8.2-777BB4.svg?style=flat-square)
[![GitHub license](https://img.shields.io/github/license/realodix/newt.svg?style=flat-square)](https://github.com/realodix/newt/blob/master/LICENSE)
![Build Status](https://github.com/realodix/urlhub/actions/workflows/tests.yml/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/realodix/urlhub/badge.svg?branch=master)](https://coveralls.io/github/realodix/urlhub) <br>
Expand All @@ -22,17 +22,17 @@ UrlHub was created, and is maintained by [Budi Hermawan](https://github.com/real
- **IP anonymization (or IP masking) [optional]:** Anonymizes visitor addresses as soon as technically feasible at the earliest possible stage of the collection network. The full IP address is never written to disk in this case. This feature is designed to help site owners comply with their own privacy policies, recommendations from local data protection authorities and legal regulations like the GDPR, which may prevent the storage of full IP address information.
- **Power of customisation:** Do you want your site to be just for your use, so no one can register? No problem. It's in the configuration. Users must be registered to create Short URL? That's okay. It's in the configuration. From configuration file, you can edit pretty everything of your website. The choice is yours.
- **Sortable list of shortened URLs.**
- **Written in [PHP](https://www.php.net/) and [Laravel 10](https://laravel.com/docs/10.x/releases#laravel-10).**
- **Written in [PHP](https://www.php.net/) and [Laravel 11](https://laravel.com/docs/11.x/releases#laravel-11).**
- **Modern and simple interface.**
- **Made with :heart: &amp; :coffee:.**


## Requirements
UrlHub is a Laravel application. That means it requires this setup:

- PHP 8.1 or newer
- PHP 8.2 or newer
- A web server like Apache or Nginx
- MySQL 5.7+/8.0.23+ or MariaDB 10.0.5+
- MySQL 5.7+/8.0.23+ or MariaDB 10.3+ or SQLite 3.35.0+


## Quick Start
Expand Down

0 comments on commit cd3685d

Please sign in to comment.