Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Oct 7, 2023
1 parent 0ca0c38 commit cdefd19
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 21 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
<<<<<<< HEAD
# 3.7.2 (2023-XX-XX)
=======
# 4.0.0 (2020-XX-XX)

* Drop support for PHP < 8
* Drop support for PHP < 8.2

# 3.1.2 (2020-XX-XX)
>>>>>>> 93817469 (Bump to 4.0 and require PHP 8)
# 3.7.2 (2023-XX-XX)

* n/a

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}
],
"require": {
"php": ">=8.0.0",
"php": ">=8.2",
"symfony/polyfill-mbstring": "^1.3",
"symfony/polyfill-ctype": "^1.8"
},
Expand Down
2 changes: 1 addition & 1 deletion extra/cache-extra/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.2.5",
"php": ">=8.2",
"symfony/cache": "^5.0|^6.0|^7.0",
"twig/twig": "^2.4|^3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion extra/cssinliner-extra/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.1.3",
"php": ">=8.2",
"tijsverkoyen/css-to-inline-styles": "^2.0",
"twig/twig": "^2.7|^3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion extra/html-extra/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.1.3",
"php": ">=8.2",
"symfony/mime": "^5.4|^6.0|^7.0",
"twig/twig": "^2.7|^3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion extra/inky-extra/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.1.3",
"php": ">=8.2",
"lorenzo/pinky": "^1.0.5",
"twig/twig": "^2.7|^3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion extra/intl-extra/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.1.3",
"php": ">=8.2",
"twig/twig": "^2.7|^3.0",
"symfony/intl": "^5.4|^6.0|^7.0"
},
Expand Down
2 changes: 1 addition & 1 deletion extra/markdown-extra/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.1.3",
"php": ">=8.2",
"twig/twig": "^2.7|^3.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion extra/string-extra/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.2.5",
"php": ">=8.2",
"symfony/string": "^5.4|^6.0|^7.0",
"symfony/translation-contracts": "^1.1|^2|^3",
"twig/twig": "^2.7|^3.0"
Expand Down
2 changes: 1 addition & 1 deletion extra/twig-extra-bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.2.5",
"php": ">=8.2",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/twig-bundle": "^5.4|^6.0|^7.0",
"twig/twig": "^2.7|^3.0"
Expand Down
12 changes: 6 additions & 6 deletions src/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
*/
class Environment
{
const VERSION = '4.0.0-DEV';
const VERSION_ID = 40000;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 0;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
public const VERSION = '4.0.0-DEV';
public const VERSION_ID = 40000;
public const MAJOR_VERSION = 4;
public const MINOR_VERSION = 0;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV';

private $charset;
private $loader;
Expand Down

0 comments on commit cdefd19

Please sign in to comment.