Skip to content

Commit fb9e4f1

Browse files
committed
PHP ^8.2.4
1 parent 09cbe3a commit fb9e4f1

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

bin/vanilleplugin

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env php
22
<?php
33
/**
4-
* @author : JIHAD SINNAOUR
4+
* @author : Jihad Sinnaour
55
* @package : VanillePlugin Packager
6-
* @version : 0.3.2
7-
* @copyright : (c) 2022 Jihad Sinnaour <mail@jihadsinnaour.com>
6+
* @version : 0.3.3
7+
* @copyright : (c) 2023 Jihad Sinnaour <mail@jihadsinnaour.com>
88
* @link : https://github.com/Jakiboy/VanillePlugin-Packager
99
* @license : MIT
1010
* @todo : Rebuild with symfony/console
@@ -26,12 +26,12 @@ ini_set('memory_limit','256M');
2626
* Check PHP SAPI & Version.
2727
*/
2828
if ( (php_sapi_name() !== 'cli')
29-
|| (PHP_VERSION_ID < 70200) ) exit();
29+
|| (PHP_VERSION_ID < 80204) ) exit();
3030

3131
define('PACKAGER_NAME','VanillePlugin Packager');
3232
define('PACKAGER_DESC','Composer Namespaces Prefixer for WordPress Plugins');
3333
define('PACKAGER_SYNOPSIS','Resolve dependencies versions conflicts of WordPress plugins built using Composer.');
34-
define('PACKAGER_VERSION','0.3.2');
34+
define('PACKAGER_VERSION','0.3.3');
3535
define('PACKAGER_AUTHOR','Jihad Sinnaour');
3636
define('PACKAGER_LINK','https://jakiboy.github.io/VanillePlugin-Packager/');
3737

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jakiboy/vanilleplugin-packager",
3-
"version" : "0.3.2",
3+
"version" : "0.3.3",
44
"description": "Composer Namespaces Prefixer for WordPress Plugins",
55
"keywords": ["php","WordPress","WordPress-plugins-namespaces-prefixer","dependencies","prefixer"],
66
"license": "MIT",
@@ -17,7 +17,7 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^7.2.5"
20+
"php": "^8.2.4"
2121
},
2222
"bin": [
2323
"bin/vanilleplugin"

0 commit comments

Comments
 (0)