Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #73

Merged
merged 5 commits into from
Oct 10, 2024
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
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"require-dev": {
"matthiasnoback/symfony-config-test": "^5.0",
"symfony/framework-bundle": "^6.3|^7.0",
"symfony/phpunit-bridge": "^6.3|^7.0"
"symfony/phpunit-bridge": "^6.3.9|^7.0"
},
"minimum-stability": "dev",
"autoload": {
Expand All @@ -34,6 +34,9 @@
"Symfonycasts\\SassBundle\\Tests\\": "tests/"
}
},
"conflict": {
"phpunit/phpunit": ">=10"
},
"scripts": {
"tools:upgrade": [
"@tools:upgrade:php-cs-fixer",
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<server name="APP_ENV" value="test" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5" />
<server name="SYMFONY_PHPUNIT_VERSION" value="9.6" />
</php>

<testsuites>
Expand Down
2 changes: 1 addition & 1 deletion src/AssetMapper/SassCssCompiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function __construct(
private array $scssPaths,
private string $cssPathDirectory,
private string $projectDir,
private readonly SassBuilder $sassBuilder
private readonly SassBuilder $sassBuilder,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Command/SassBuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
class SassBuildCommand extends Command
{
public function __construct(
private SassBuilder $sassBuilder
private SassBuilder $sassBuilder,
) {
parent::__construct();
}
Expand Down
2 changes: 1 addition & 1 deletion src/SassBinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function __construct(
private string $binaryDownloadDir,
private ?string $binaryPath = null,
private ?SymfonyStyle $output = null,
?HttpClientInterface $httpClient = null
?HttpClientInterface $httpClient = null,
) {
$this->httpClient = $httpClient ?? HttpClient::create();
}
Expand Down
Loading