Skip to content

Commit 9bd1df7

Browse files
committed
upgrade phel:0.23
1 parent 3dbe3ee commit 9bd1df7

File tree

8 files changed

+72
-74
lines changed

8 files changed

+72
-74
lines changed

build/src/php/FileGenerator/Application/ApiMarkdownGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace PhelDocBuild\FileGenerator\Application;
66

7-
use Phel\Api\ApiFacadeInterface;
87
use Phel\Api\Transfer\PhelFunction;
8+
use Phel\Shared\Facade\ApiFacadeInterface;
99

1010
final readonly class ApiMarkdownGenerator
1111
{

build/src/php/FileGenerator/Application/ApiSearchGenerator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
namespace PhelDocBuild\FileGenerator\Application;
66

7-
use Phel\Api\ApiFacadeInterface;
8-
use Phel\Api\Transfer\PhelFunction;
7+
use Phel\Shared\Facade\ApiFacadeInterface;
98

109
final readonly class ApiSearchGenerator
1110
{

build/src/php/FileGenerator/DependencyProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414
final class DependencyProvider extends AbstractProvider
1515
{
16-
public const FACADE_PHEL_API = 'FACADE_PHEL_API';
16+
public const string FACADE_PHEL_API = 'FACADE_PHEL_API';
1717

1818
public function provideModuleDependencies(Container $container): void
1919
{

build/src/php/FileGenerator/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use Gacela\Framework\AbstractFactory;
88
use Gacela\Framework\Config\Config;
9-
use Phel\Api\ApiFacadeInterface;
9+
use Phel\Shared\Facade\ApiFacadeInterface;
1010
use PhelDocBuild\FileGenerator\Application\ApiMarkdownGenerator;
1111
use PhelDocBuild\FileGenerator\Application\ApiSearchGenerator;
1212
use PhelDocBuild\FileGenerator\Infrastructure\ApiMarkdownFile;

build/tests/php/FileGenerator/Domain/ApiMarkdownGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace PhelDocBuildTests\FileGenerator\Domain;
66

7-
use Phel\Api\ApiFacadeInterface;
87
use Phel\Api\Transfer\PhelFunction;
8+
use Phel\Shared\Facade\ApiFacadeInterface;
99
use PhelDocBuild\FileGenerator\Application\ApiMarkdownGenerator;
1010
use PHPUnit\Framework\TestCase;
1111

build/tests/php/FileGenerator/Domain/ApiSearchGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace PhelDocBuildTests\FileGenerator\Domain;
66

7-
use Phel\Api\ApiFacadeInterface;
87
use Phel\Api\Transfer\PhelFunction;
8+
use Phel\Shared\Facade\ApiFacadeInterface;
99
use PhelDocBuild\FileGenerator\Application\ApiSearchGenerator;
1010
use PHPUnit\Framework\TestCase;
1111

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
"require": {
1212
"php": ">=8.3",
1313
"ext-json": "*",
14-
"phel-lang/phel-lang": "dev-main",
14+
"phel-lang/phel-lang": "^0.23",
1515
"gacela-project/gacela": "^1.10"
1616
},
1717
"require-dev": {
1818
"roave/security-advisories": "dev-latest",
19-
"phpunit/phpunit": "^10.0",
20-
"symfony/var-dumper": "^6.4"
19+
"phpunit/phpunit": "^10.5",
20+
"symfony/var-dumper": "^7.3"
2121
},
2222
"autoload": {
2323
"psr-4": {

0 commit comments

Comments
 (0)