Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 37 additions & 37 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
{
"name": "assoconnect/php-date-bundle",
"description": "Symfony bundle for assoconnect/php-date library",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"AssoConnect\\PHPDateBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AssoConnect\\PHPDateBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/contracts": "^2.4",
"symfony/translation": "^7.0",
"assoconnect/php-quality-config": "^2",
"assoconnect/validator-bundle": "^2.39.2"
},
"require": {
"ext-intl": "*",
"php": "^8.3",
"symfony/framework-bundle": "^7.0",
"assoconnect/php-date": "^2.11",
"doctrine/dbal": "^2.10|^3.0",
"symfony/serializer": "^7.0",
"twig/twig": "^3",
"symfony/clock": "^7.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
{
"name": "assoconnect/php-date-bundle",
"description": "Symfony bundle for assoconnect/php-date library",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"AssoConnect\\PHPDateBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AssoConnect\\PHPDateBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/contracts": "^2.4",
"symfony/translation": "^7.0",
"assoconnect/php-quality-config": "^2.2",
"assoconnect/validator-bundle": "^2.39.2"
},
"require": {
"ext-intl": "*",
"php": "^8.3",
"symfony/framework-bundle": "^7.0",
"assoconnect/php-date": "^2.11",
"doctrine/dbal": "^2.10|^3.0",
"symfony/serializer": "^7.0",
"twig/twig": "^3",
"symfony/clock": "^7.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
12 changes: 6 additions & 6 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
<testsuites>
<testsuite name="main">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>
2 changes: 1 addition & 1 deletion tests/Doctrine/DBAL/Types/AbsoluteDateTypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

use function date_default_timezone_set;

class DateTest extends TestCase
class AbsoluteDateTypeTest extends TestCase
{
/** @var AbstractPlatform|MockObject */
protected AbstractPlatform $platform;
Expand Down
Loading