Skip to content

Commit 8958bc2

Browse files
Merge branch '10.1'
2 parents ceaeeea + 8b818f1 commit 8958bc2

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

.phive/phars.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
33
<phar name="php-cs-fixer" version="^3.59" installed="3.64.0" location="./tools/php-cs-fixer" copy="true"/>
4-
<phar name="composer" version="^2.7" installed="2.7.9" location="./tools/composer" copy="true"/>
5-
<phar name="phpstan" version="^1.11" installed="1.12.5" location="./tools/phpstan" copy="true"/>
4+
<phar name="composer" version="^2.7" installed="2.8.1" location="./tools/composer" copy="true"/>
5+
<phar name="phpstan" version="^1.11" installed="1.12.6" location="./tools/phpstan" copy="true"/>
66
</phive>

build.xml

+15
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,21 @@
1616
</exec>
1717
</target>
1818

19+
<target name="update-dependencies" description="Update (and bump) dependencies with Composer">
20+
<exec executable="${basedir}/tools/composer" taskname="composer">
21+
<arg value="update"/>
22+
<arg value="--no-interaction"/>
23+
<arg value="--no-progress"/>
24+
<arg value="--no-ansi"/>
25+
</exec>
26+
27+
<exec executable="${basedir}/tools/composer" taskname="composer">
28+
<arg value="bump"/>
29+
<arg value="--no-interaction"/>
30+
<arg value="--no-ansi"/>
31+
</exec>
32+
</target>
33+
1934
<target name="update-tools">
2035
<exec executable="phive" taskname="phive">
2136
<arg value="--no-progress"/>

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@
3333
"ext-dom": "*",
3434
"ext-libxml": "*",
3535
"ext-xmlwriter": "*",
36-
"nikic/php-parser": "^5.1.0",
37-
"phpunit/php-file-iterator": "^5.0.1",
36+
"nikic/php-parser": "^5.3.1",
37+
"phpunit/php-file-iterator": "^5.1.0",
3838
"phpunit/php-text-template": "^4.0.1",
3939
"sebastian/code-unit-reverse-lookup": "^4.0.1",
4040
"sebastian/complexity": "^4.0.1",
4141
"sebastian/environment": "^7.2.0",
4242
"sebastian/lines-of-code": "^3.0.1",
43-
"sebastian/version": "^5.0.1",
43+
"sebastian/version": "^5.0.2",
4444
"theseer/tokenizer": "^1.2.3"
4545
},
4646
"require-dev": {
47-
"phpunit/phpunit": "^11.3"
47+
"phpunit/phpunit": "^11.4.1"
4848
},
4949
"suggest": {
5050
"ext-pcov": "PHP extension that provides line coverage",

tools/composer

34.9 KB
Binary file not shown.

tools/phpstan

44.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)