Skip to content

Commit

Permalink
🔧 chore(composer.json): update laravel/framework dependency to suppor…
Browse files Browse the repository at this point in the history
…t versions 10.44.0 and 11.0 to ensure compatibility with both versions

🔧 chore(composer.json): update flagsmith/flagsmith-php-client dependency to version 4.2.0 for bug fixes and new features
🔧 chore(composer.json): update guzzlehttp/psr7 dependency to version 2.6.2 for bug fixes
🔧 chore(composer.json): update guzzlehttp/guzzle dependency to version 7.8.1 for bug fixes
🔧 chore(composer.json): update orchestra/testbench dependency to version 8.22.0 for bug fixes
🔧 chore(composer.json): update phpunit/phpunit dependency to version 10.5.13 for bug fixes
🔧 chore(composer.json): update vimeo/psalm dependency to version 5.23.1 for bug fixes
🔧 chore(composer.json): update squizlabs/php_codesniffer dependency to version 3.9.0 for bug fixes
🔧 chore(ServiceProvider.php): change FLAGSMITH_CONFIG_PATH constant to public to improve accessibility
  • Loading branch information
tm1000 committed Mar 18, 2024
1 parent 7dd34bd commit c8c9692
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
18 changes: 6 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
],
"require": {
"php": "^8.2",
"laravel/framework": "^10.44.0",
"flagsmith/flagsmith-php-client": "dev-working as 4.1.2"
"laravel/framework": "^10.44.0 || ^11.0",
"flagsmith/flagsmith-php-client": "^4.2.0"
},
"extra": {
"laravel": {
Expand All @@ -32,9 +32,9 @@
"require-dev": {
"guzzlehttp/psr7": "^2.6.2",
"guzzlehttp/guzzle": "^7.8.1",
"orchestra/testbench": "^8.21.1",
"phpunit/phpunit": "^10.5.10",
"vimeo/psalm": "^5.22.1",
"orchestra/testbench": "^8.22.0",
"phpunit/phpunit": "^10.5.13",
"vimeo/psalm": "^5.23.1",
"squizlabs/php_codesniffer": "^3.9.0"
},
"config": {
Expand Down Expand Up @@ -68,11 +68,5 @@
"psalm": "psalm",
"phpcs": "phpcs --standard=phpcs.xml",
"phpcbf": "phpcbf --standard=phpcs.xml"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:tm1000/flagsmith-php-client.git"
}
]
}
}
2 changes: 1 addition & 1 deletion src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class ServiceProvider extends LaravelServiceProvider
{
const FLAGSMITH_CONFIG_PATH = __DIR__ . '/../config/flagsmith.php';
public const FLAGSMITH_CONFIG_PATH = __DIR__ . '/../config/flagsmith.php';

/**
* Register bindings in the container.
Expand Down

0 comments on commit c8c9692

Please sign in to comment.