Skip to content

Commit

Permalink
upgrade packages
Browse files Browse the repository at this point in the history
  • Loading branch information
markvaneijk committed Jan 11, 2024
1 parent f976362 commit 031c4b2
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 111 deletions.
142 changes: 68 additions & 74 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,77 +1,71 @@
{
"name": "vormkracht10/laravel-open-graph-image",
"description": "A Laravel package to generate dynamic Open Graph images",
"keywords": [
"vormkracht10",
"laravel",
"laravel-open-graph-image"
],
"homepage": "https://github.com/vormkracht10/laravel-open-graph-image",
"license": "MIT",
"authors": [
{
"name": "Bas van Dinther",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0",
"spatie/browsershot": "^3.0|^4.0",
"spatie/laravel-package-tools": "^1.14"
"name": "vormkracht10/laravel-open-graph-image",
"description": "A Laravel package to generate dynamic Open Graph images",
"keywords": ["vormkracht10", "laravel", "laravel-open-graph-image"],
"homepage": "https://github.com/vormkracht10/laravel-open-graph-image",
"license": "MIT",
"authors": [
{
"name": "Bas van Dinther",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0",
"spatie/browsershot": "^3.0|^4.0",
"spatie/laravel-package-tools": "^1.14"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.30",
"pestphp/pest-plugin-laravel": "^2.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"psr-4": {
"Vormkracht10\\LaravelOpenGraphImage\\": "src",
"Vormkracht10\\LaravelOpenGraphImage\\Database\\Factories\\": "database/factories"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"psr-4": {
"Vormkracht10\\LaravelOpenGraphImage\\": "src",
"Vormkracht10\\LaravelOpenGraphImage\\Database\\Factories\\": "database/factories"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Vormkracht10\\LaravelOpenGraphImage\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Vormkracht10\\LaravelOpenGraphImage\\LaravelOpenGraphImageServiceProvider"
],
"aliases": {
"LaravelOpenGraphImage": "Vormkracht10\\LaravelOpenGraphImage\\Facades\\LaravelOpenGraphImage"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
"files": ["src/helpers.php"]
},
"autoload-dev": {
"psr-4": {
"Vormkracht10\\LaravelOpenGraphImage\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Vormkracht10\\LaravelOpenGraphImage\\LaravelOpenGraphImageServiceProvider"
],
"aliases": {
"LaravelOpenGraphImage": "Vormkracht10\\LaravelOpenGraphImage\\Facades\\LaravelOpenGraphImage"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
58 changes: 21 additions & 37 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,39 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
executionOrder="random"
failOnWarning="true"
failOnRisky="true"
failOnEmptyTestSuite="true"
beStrictAboutOutputDuringTests="true"
verbose="true"
>
<testsuites>
<testsuite name="Vormkracht10 Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="Vormkracht10 Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>
39 changes: 39 additions & 0 deletions phpunit.xml.dist.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
executionOrder="random"
failOnWarning="true"
failOnRisky="true"
failOnEmptyTestSuite="true"
beStrictAboutOutputDuringTests="true"
verbose="true"
>
<testsuites>
<testsuite name="Vormkracht10 Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
</phpunit>

0 comments on commit 031c4b2

Please sign in to comment.