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: genert/bbcode
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.2
Choose a base ref
...
head repository: genert/bbcode
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 15 commits
  • 5 files changed
  • 5 contributors

Commits on Oct 19, 2019

  1. Copy the full SHA
    652a1b4 View commit details

Commits on Oct 30, 2019

  1. Merge pull request #14 from genert/renovate/configure

    Configure Renovate
    genert authored Oct 30, 2019
    Copy the full SHA
    f71ce0c View commit details
  2. Copy the full SHA
    72747db View commit details

Commits on Dec 10, 2019

  1. Merge pull request #15 from genert/renovate/pin-dependencies

    chore(deps): pin dependency phpunit/phpunit to 6.5.14
    genert authored Dec 10, 2019
    Copy the full SHA
    30f4bd1 View commit details

Commits on Feb 21, 2020

  1. Copy the full SHA
    1308a46 View commit details

Commits on Mar 18, 2020

  1. Merge pull request #18 from genert/renovate/phpunit-phpunit-9.x

    chore(deps): update dependency phpunit/phpunit to v9
    genert authored Mar 18, 2020
    Copy the full SHA
    d834f23 View commit details

Commits on Apr 30, 2020

  1. Copy the full SHA
    63b0891 View commit details

Commits on Jun 11, 2020

  1. Merge pull request #19 from genert/renovate/phpunit-phpunit-9.x

    chore(deps): update dependency phpunit/phpunit to v9.1.4
    genert authored Jun 11, 2020
    Copy the full SHA
    82e230a View commit details

Commits on Oct 9, 2020

  1. Update Parser.php

    ITO444 authored Oct 9, 2020
    Copy the full SHA
    4f00786 View commit details
  2. Update BBCode.php

    ITO444 authored Oct 9, 2020
    Copy the full SHA
    063e707 View commit details

Commits on Oct 20, 2021

  1. Copy the full SHA
    82c3c48 View commit details

Commits on Dec 6, 2021

  1. Merge pull request #21 from genert/renovate/phpunit-phpunit-9.x

    chore(deps): update dependency phpunit/phpunit to v9.5.10
    genert authored Dec 6, 2021
    Copy the full SHA
    f5fba4a View commit details
  2. Merge pull request #25 from ITO444/patch-1

    Construct BBCode with custom parsers
    genert authored Dec 6, 2021
    Copy the full SHA
    9778380 View commit details

Commits on Sep 25, 2022

  1. Copy the full SHA
    428b527 View commit details

Commits on Oct 4, 2022

  1. Merge pull request #27 from genert/renovate/phpunit-phpunit-9.x

    chore(deps): update dependency phpunit/phpunit to v9.5.25
    genert authored Oct 4, 2022
    Copy the full SHA
    2480747 View commit details
Showing with 705 additions and 536 deletions.
  1. +1 −1 composer.json
  2. +691 −532 composer.lock
  3. +5 −0 renovate.json
  4. +3 −3 src/BBCode.php
  5. +5 −0 src/Parser/Parser.php
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
"minimum-stability": "stable",
"require": {},
"require-dev": {
"phpunit/phpunit": "^6.1"
"phpunit/phpunit": "9.5.25"
},
"scripts": {
"test": "phpunit --coverage-text"
Loading