Skip to content

Commit

Permalink
Merge pull request #46 from Laravel-Lang/14.x
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
andrey-helldar committed Aug 9, 2023
2 parents d1e11d6 + f10a928 commit 973385b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 21 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,10 @@
"laravel-lang/publisher": "^14.6"
},
"require-dev": {
"laravel-lang/status-generator": "^1.13",
"phpunit/phpunit": "^9.6",
"laravel-lang/status-generator": "^1.19",
"phpunit/phpunit": "^10.0",
"symfony/var-dumper": "^6.2"
},
"conflict": {
"laravel-lang/publisher": "<14.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
Expand All @@ -46,6 +43,9 @@
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"preferred-install": "dist",
"sort-packages": true
},
Expand Down
30 changes: 14 additions & 16 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,36 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
cacheResult="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
backupStaticProperties="false"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
cacheResult="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<coverage>
<report>
<clover outputFile="build/logs/clover.xml"/>
<html outputDirectory="build/logs/coverage"/>
<text outputFile="build/logs/coverage.txt"/>
<clover outputFile="build/logs/clover.xml" />
<html outputDirectory="build/logs/coverage" />
<text outputFile="build/logs/coverage.txt" />
</report>
</coverage>
<php>
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF" />
</php>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 973385b

Please sign in to comment.