Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dusterio/link-preview
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.13
Choose a base ref
...
head repository: dusterio/link-preview
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 12 commits
  • 1 file changed
  • 4 contributors

Commits on Aug 4, 2020

  1. Support for Laravel 7

    ejunker authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4a821ec View commit details
  2. Merge pull request #25 from ejunker/patch-1

    Support for Laravel 7
    dusterio authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ec391de View commit details

Commits on Sep 8, 2020

  1. Support for Laravel 8

    ejunker authored Sep 8, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b494548 View commit details

Commits on Sep 9, 2020

  1. Merge pull request #28 from ejunker/patch-1

    Support for Laravel 8
    dusterio authored Sep 9, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e3e9d23 View commit details

Commits on Sep 10, 2020

  1. Update composer.json

    GCalmels authored Sep 10, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cab7a8a View commit details

Commits on Oct 23, 2020

  1. Update composer.json

    dusterio authored Oct 23, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5a1d95c View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2b87082 View commit details

Commits on Feb 17, 2021

  1. Merge pull request #29 from GCalmels/patch-1

    Add compatibility for Symfony 4 and 5
    dusterio authored Feb 17, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8880cbd View commit details

Commits on Dec 22, 2021

  1. allow version 6 of symfony components

    Allow composer to install version 6 of symfony/dom-crawler and symfony/css-selector
    Note: I have not tested this
    ejunker authored Dec 22, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    48d4e17 View commit details

Commits on Jan 10, 2022

  1. Merge pull request #34 from ejunker/patch-1

    allow version 6 of symfony components
    dusterio authored Jan 10, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ec56f4d View commit details

Commits on Feb 21, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c705305 View commit details

Commits on Mar 8, 2022

  1. Merge pull request #35 from jdrieghe/patch-1

    Allow installation in Laravel 9
    dusterio authored Mar 8, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0be2d5e View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 composer.json
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -14,10 +14,10 @@
],
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.*|6.*",
"guzzlehttp/guzzle": "^6.1",
"symfony/dom-crawler": "^3.0",
"symfony/css-selector": "^3.0"
"illuminate/support": "5.*|6.*|7.*|8.*|9.*",
"guzzlehttp/guzzle": "^6.1|^7.1",
"symfony/dom-crawler": "^3.0|^4.0|^5.0|^6.0",
"symfony/css-selector": "^3.0|^4.0|^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",