Skip to content

Commit e90f291

Browse files
authored
chore: update PHP and development dependencies in composer.json and phpunit.xml.dist (#14)
* chore: update PHP and development dependencies in composer.json and phpunit.xml.dist * chore: update PHP and development dependencies in composer.json and phpunit.xml.dist
1 parent 4fc18ab commit e90f291

File tree

3 files changed

+13
-34
lines changed

3 files changed

+13
-34
lines changed

composer.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
"description": "Typed Array",
44
"type": "library",
55
"require": {
6-
"php": ">=8.0.2",
7-
"symfony/property-access": "^6.0"
6+
"php": "^8.2",
7+
"symfony/property-access": "^6.0 | ^7.0"
88
},
99
"require-dev": {
10-
"phpunit/phpunit": "^9.5",
11-
"squizlabs/php_codesniffer": "^3.6",
12-
"phpstan/phpstan": "^1.0"
10+
"phpunit/phpunit": "^11.0",
11+
"squizlabs/php_codesniffer": "^4.0",
12+
"phpstan/phpstan": "^2.0",
13+
"doctrine/deprecations": "^1.1",
14+
"doctrine/dbal": "^4.4"
1315
},
1416
"suggest": {
1517
"doctrine/dbal": "For using type_array directly with Doctrine"

phpunit.xml.dist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3-
<coverage>
4-
<include>
5-
<directory>./src</directory>
6-
</include>
7-
</coverage>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
83
<testsuites>
94
<testsuite name="TypeArray Test Suite">
105
<directory>tests</directory>
116
</testsuite>
127
</testsuites>
8+
<source>
9+
<include>
10+
<directory>./src</directory>
11+
</include>
12+
</source>
1313
</phpunit>

phpunit.xml.dist.bak

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)