Skip to content
Snippets Groups Projects
Verified Commit 5066f6b8 authored by Bartek Jaskulski's avatar Bartek Jaskulski
Browse files

build: update tools

parent 93e2eaf5
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive"> <phive xmlns="https://phar.io/phive">
<phar name="phpstan" version="^1.6.7" installed="1.6.7" location="./tools/phpstan" copy="true"/> <phar name="phpstan" version="^1.9.2" installed="1.9.2" location="./tools/phpstan" copy="true"/>
<phar name="phpunit" version="^9.5.20" installed="9.5.20" location="./tools/phpunit" copy="true"/> <phar name="phpunit" version="^9.5.20" installed="9.5.27" location="./tools/phpunit" copy="true"/>
<phar name="phpcs" version="^3.6.2" installed="3.6.2" location="./tools/phpcs" copy="true"/> <phar name="phpcs" version="^3.6.2" installed="3.7.1" location="./tools/phpcs" copy="true"/>
<phar name="phpcbf" version="^3.6.2" installed="3.6.2" location="./tools/phpcbf" copy="true"/> <phar name="phpcbf" version="^3.6.2" installed="3.7.1" location="./tools/phpcbf" copy="true"/>
<phar name="grumphp" version="^1.12.0" installed="1.12.0" location="./tools/grumphp" copy="true"/> <phar name="grumphp" version="^1.12.0" installed="1.13.0" location="./tools/grumphp" copy="true"/>
<phar name="composer" version="^2.3.4" installed="2.3.4" location="./tools/composer" copy="true"/> <phar name="composer" version="^2.3.4" installed="2.4.4" location="./tools/composer" copy="true"/>
</phive> </phive>
...@@ -19,6 +19,14 @@ ...@@ -19,6 +19,14 @@
"WPDesk\\Migrations\\": "src" "WPDesk\\Migrations\\": "src"
} }
}, },
"autoload-dev": {
"psr-4": {
"WPDesk\\Migrations\\Tests\\": "tests"
},
"classmap": [
"tests/stubs"
]
},
"require-dev": { "require-dev": {
"szepeviktor/phpstan-wordpress": "^1.1", "szepeviktor/phpstan-wordpress": "^1.1",
"wp-coding-standards/wpcs": "^2" "wp-coding-standards/wpcs": "^2"
...@@ -26,9 +34,11 @@ ...@@ -26,9 +34,11 @@
"scripts": { "scripts": {
"test:phpstan": "./tools/phpstan --configuration=phpstan.neon.dist --memory-limit=-1 analyze", "test:phpstan": "./tools/phpstan --configuration=phpstan.neon.dist --memory-limit=-1 analyze",
"test:phpcs": "./tools/phpcs", "test:phpcs": "./tools/phpcs",
"test:phpunit": "./tools/phpunit --bootstrat=tests/bootstrap.php",
"test": [ "test": [
"@test:phpcs", "@test:phpcs",
"@test:phpstan" "@test:phpstan",
"@test:phpunit"
] ]
} }
} }
...@@ -60,16 +60,16 @@ ...@@ -60,16 +60,16 @@
"packages-dev": [ "packages-dev": [
{ {
"name": "php-stubs/wordpress-stubs", "name": "php-stubs/wordpress-stubs",
"version": "v5.9.3", "version": "v6.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/php-stubs/wordpress-stubs.git", "url": "https://github.com/php-stubs/wordpress-stubs.git",
"reference": "18d56875e5078a50b8ea4bc4b20b735ca61edeee" "reference": "19e7966c8e70a99a4824b3e5d1526680a151f13b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-stubs/wordpress-stubs/zipball/18d56875e5078a50b8ea4bc4b20b735ca61edeee", "url": "https://api.github.com/repos/php-stubs/wordpress-stubs/zipball/19e7966c8e70a99a4824b3e5d1526680a151f13b",
"reference": "18d56875e5078a50b8ea4bc4b20b735ca61edeee", "reference": "19e7966c8e70a99a4824b3e5d1526680a151f13b",
"shasum": "" "shasum": ""
}, },
"replace": { "replace": {
...@@ -101,22 +101,22 @@ ...@@ -101,22 +101,22 @@
], ],
"support": { "support": {
"issues": "https://github.com/php-stubs/wordpress-stubs/issues", "issues": "https://github.com/php-stubs/wordpress-stubs/issues",
"source": "https://github.com/php-stubs/wordpress-stubs/tree/v5.9.3" "source": "https://github.com/php-stubs/wordpress-stubs/tree/v6.1.0"
}, },
"time": "2022-04-06T15:33:59+00:00" "time": "2022-11-09T05:33:25+00:00"
}, },
{ {
"name": "phpstan/phpstan", "name": "phpstan/phpstan",
"version": "1.7.14", "version": "1.9.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phpstan/phpstan.git", "url": "https://github.com/phpstan/phpstan.git",
"reference": "e6f145f196a59c7ca91ea926c87ef3d936c4305f" "reference": "d6fdf01c53978b6429f1393ba4afeca39cc68afa"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/e6f145f196a59c7ca91ea926c87ef3d936c4305f", "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d6fdf01c53978b6429f1393ba4afeca39cc68afa",
"reference": "e6f145f196a59c7ca91ea926c87ef3d936c4305f", "reference": "d6fdf01c53978b6429f1393ba4afeca39cc68afa",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -140,9 +140,13 @@ ...@@ -140,9 +140,13 @@
"MIT" "MIT"
], ],
"description": "PHPStan - PHP Static Analysis Tool", "description": "PHPStan - PHP Static Analysis Tool",
"keywords": [
"dev",
"static analysis"
],
"support": { "support": {
"issues": "https://github.com/phpstan/phpstan/issues", "issues": "https://github.com/phpstan/phpstan/issues",
"source": "https://github.com/phpstan/phpstan/tree/1.7.14" "source": "https://github.com/phpstan/phpstan/tree/1.9.2"
}, },
"funding": [ "funding": [
{ {
...@@ -153,29 +157,25 @@ ...@@ -153,29 +157,25 @@
"url": "https://github.com/phpstan", "url": "https://github.com/phpstan",
"type": "github" "type": "github"
}, },
{
"url": "https://www.patreon.com/phpstan",
"type": "patreon"
},
{ {
"url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-06-14T13:09:35+00:00" "time": "2022-11-10T09:56:11+00:00"
}, },
{ {
"name": "squizlabs/php_codesniffer", "name": "squizlabs/php_codesniffer",
"version": "3.7.0", "version": "3.7.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
"reference": "a2cd51b45bcaef9c1f2a4bda48f2dd2fa2b95563" "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/a2cd51b45bcaef9c1f2a4bda48f2dd2fa2b95563", "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619",
"reference": "a2cd51b45bcaef9c1f2a4bda48f2dd2fa2b95563", "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -218,20 +218,20 @@ ...@@ -218,20 +218,20 @@
"source": "https://github.com/squizlabs/PHP_CodeSniffer", "source": "https://github.com/squizlabs/PHP_CodeSniffer",
"wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
}, },
"time": "2022-06-13T06:31:38+00:00" "time": "2022-06-18T07:21:10+00:00"
}, },
{ {
"name": "symfony/polyfill-php73", "name": "symfony/polyfill-php73",
"version": "v1.26.0", "version": "v1.27.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php73.git", "url": "https://github.com/symfony/polyfill-php73.git",
"reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85" "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85", "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
"reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85", "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -240,7 +240,7 @@ ...@@ -240,7 +240,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.26-dev" "dev-main": "1.27-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -281,7 +281,7 @@ ...@@ -281,7 +281,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0" "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
}, },
"funding": [ "funding": [
{ {
...@@ -297,26 +297,26 @@ ...@@ -297,26 +297,26 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-05-24T11:49:31+00:00" "time": "2022-11-03T14:55:06+00:00"
}, },
{ {
"name": "szepeviktor/phpstan-wordpress", "name": "szepeviktor/phpstan-wordpress",
"version": "v1.1.1", "version": "v1.1.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/szepeviktor/phpstan-wordpress.git", "url": "https://github.com/szepeviktor/phpstan-wordpress.git",
"reference": "99cfea6b4c15af12dec09110b25dbc7521363f78" "reference": "27784541f184a1ea3b6656fc8a882bb9adf45fc2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/szepeviktor/phpstan-wordpress/zipball/99cfea6b4c15af12dec09110b25dbc7521363f78", "url": "https://api.github.com/repos/szepeviktor/phpstan-wordpress/zipball/27784541f184a1ea3b6656fc8a882bb9adf45fc2",
"reference": "99cfea6b4c15af12dec09110b25dbc7521363f78", "reference": "27784541f184a1ea3b6656fc8a882bb9adf45fc2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.2 || ^8.0", "php": "^7.2 || ^8.0",
"php-stubs/wordpress-stubs": "^4.7 || ^5.0", "php-stubs/wordpress-stubs": "^4.7 || ^5.0 || ^6.0",
"phpstan/phpstan": "^1.6", "phpstan/phpstan": "^1.8.7",
"symfony/polyfill-php73": "^1.12.0" "symfony/polyfill-php73": "^1.12.0"
}, },
"require-dev": { "require-dev": {
...@@ -324,8 +324,8 @@ ...@@ -324,8 +324,8 @@
"dealerdirect/phpcodesniffer-composer-installer": "^0.7", "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"php-parallel-lint/php-parallel-lint": "^1.1", "php-parallel-lint/php-parallel-lint": "^1.1",
"phpstan/phpstan-strict-rules": "^1.2", "phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "^8 || ^9", "phpunit/phpunit": "^8.0 || ^9.0",
"szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset": "^0.6" "szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset": "^0.6.1"
}, },
"type": "phpstan-extension", "type": "phpstan-extension",
"extra": { "extra": {
...@@ -354,15 +354,19 @@ ...@@ -354,15 +354,19 @@
], ],
"support": { "support": {
"issues": "https://github.com/szepeviktor/phpstan-wordpress/issues", "issues": "https://github.com/szepeviktor/phpstan-wordpress/issues",
"source": "https://github.com/szepeviktor/phpstan-wordpress/tree/v1.1.1" "source": "https://github.com/szepeviktor/phpstan-wordpress/tree/v1.1.6"
}, },
"funding": [ "funding": [
{ {
"url": "https://www.paypal.me/szepeviktor", "url": "https://www.paypal.me/szepeviktor",
"type": "custom" "type": "custom"
},
{
"url": "https://github.com/szepeviktor",
"type": "github"
} }
], ],
"time": "2022-05-11T18:41:40+00:00" "time": "2022-12-01T14:56:51+00:00"
}, },
{ {
"name": "wp-coding-standards/wpcs", "name": "wp-coding-standards/wpcs",
......
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment