Skip to content

Commit

Permalink
First commit for version 11
Browse files Browse the repository at this point in the history
  • Loading branch information
freost committed Jan 7, 2024
1 parent 27e12d2 commit 16679e2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.1"
- "8.2"
steps:
- name: "Checkout code"
uses: "actions/checkout@v4"
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
fail-fast: false
matrix:
include:
- php-version: "8.1"
experimental: false
- php-version: "8.2"
experimental: false
- php-version: "8.3"
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,24 @@
}
},
"require": {
"php": ">=8.1.0",
"php": ">=8.2.0",
"ext-json": "*",
"ext-mbstring": "*",
"monolog/monolog": "^3.4",
"symfony/var-dumper": "^6.3",
"monolog/monolog": "^3.5",
"symfony/var-dumper": "^7.0",
"doctrine/sql-formatter": "^1.1",
"psr/log": "^2.0|^3.4"
"psr/log": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"mockery/mockery": "^1.6.6",
"phpstan/phpstan": "^1.10.32"
"phpunit/phpunit": "^10.5",
"mockery/mockery": "^1.6.7",
"phpstan/phpstan": "^1.10.54"
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "10.1-dev"
"dev-master": "11.0-dev"
}
},
"suggest": {
Expand Down
6 changes: 3 additions & 3 deletions src/mako/Mako.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ class Mako
*
* @var string
*/
public const VERSION = '10.1.0';
public const VERSION = '11.0.0';

/**
* Mako major version.
*
* @var int
*/
public const VERSION_MAJOR = 10;
public const VERSION_MAJOR = 11;

/**
* Mako minor version.
*
* @var int
*/
public const VERSION_MINOR = 1;
public const VERSION_MINOR = 0;

/**
* Mako patch version.
Expand Down

0 comments on commit 16679e2

Please sign in to comment.