-
Notifications
You must be signed in to change notification settings - Fork 4
アノテーションを PHP 8 Attributes に移行し依存関係を更新 #24
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4193579
refactor: アノテーションを PHP 8 Attributes に移行し依存関係を更新
apple-x-co d90abb9
docs: README のサンプルコードを PHP 8 Attributes 形式に更新 migrate-attribute
apple-x-co e192dc4
test: PHPUnit 設定を最新形式に更新しテストコードを PHP 8 対応に改善 migrate-attribute
apple-x-co d6e5bba
ci: Scrutinizer 設定から `php_mess_detector` を無効化 migrate-attribute
apple-x-co f4e605a
docs: README の `VndError` 表記を Attributes 形式に更新 migrate-attribute
apple-x-co 7bcb17d
ci: Scrutinizer 設定を簡素化し PHP 8.0 ビルド環境に移行 migrate-attribute
apple-x-co 67df167
test: `AuraInputInterceptorTest` の重複した `expectException` 呼び出しを削除 migr…
apple-x-co 47c4b50
ci: Scrutinizer の PHP バージョンを 8.2 に更新し設定構造を最適化 migrate-attribute
apple-x-co 280117b
test: 未使用の `invalidControllerProvider` メソッドをコメントアウト migrate-attribute
apple-x-co 9f408e2
style: 全ソースファイルに `declare(strict_types=1)` を追加し厳密な型チェックを有効化 migrate-a…
apple-x-co 677d1cb
style: namespace 後に空行追加、use 文を整理し FQCN を削減 migrate-attribute
apple-x-co 46414e8
refactor: プロパティと返り値に型宣言を追加し PHP 8 型システムに対応 migrate-attribute
apple-x-co dfafacb
refactor: Doctrine Annotations を削除し PHP 8 Attributes に完全移行 migrate-at…
apple-x-co 2e6d8d9
Address PR review feedback
koriym a1cfe37
Address Copilot review feedback
claude 9f48a96
fix: PHP 8.4 deprecation and add property type declarations
koriym File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,3 +11,6 @@ build | |
| vendor/ | ||
| composer.phar | ||
| composer.lock | ||
| tests/tmp/* | ||
| !tests/tmp/.placefolder | ||
| .phpunit.result.cache | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,12 @@ | ||
| build: | ||
| nodes: | ||
| analysis: | ||
| tests: | ||
| override: | ||
| - php-scrutinizer-run | ||
| environment: | ||
| php: | ||
| version: 8.2 | ||
|
|
||
| filter: | ||
| paths: ["src/*"] | ||
| tools: | ||
| external_code_coverage: true | ||
| php_code_coverage: | ||
| timeout: 1200 | ||
| php_sim: true | ||
| php_mess_detector: true | ||
| php_pdepend: true | ||
| php_analyzer: true | ||
| php_cpd: true | ||
| php_mess_detector: | ||
| enabled: true | ||
| config: | ||
| ruleset: ./phpmd.xml | ||
| php_code_sniffer: | ||
| enabled: true | ||
| config: | ||
| ruleset: ./phpcs.xml |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,21 @@ | ||
| <phpunit bootstrap="tests/bootstrap.php"> | ||
| <testsuites> | ||
| <testsuite> | ||
| <testsuite name="Ray.WebFormModule Test Suite"> | ||
| <directory suffix="Test.php">tests</directory> | ||
| </testsuite> | ||
| </testsuites> | ||
|
|
||
| <coverage> | ||
| <include> | ||
| <directory suffix=".php">src</directory> | ||
| </include> | ||
| <report> | ||
| <html outputDirectory="build/coverage"/> | ||
| <clover outputFile="build/logs/clover.xml"/> | ||
| </report> | ||
| </coverage> | ||
|
|
||
| <logging> | ||
| <log type="coverage-html" target="build/coverage"/> | ||
| <log type="coverage-clover" target="build/logs/clover.xml"/> | ||
| <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/> | ||
| <junit outputFile="build/logs/junit.xml"/> | ||
| </logging> | ||
|
|
||
| <filter> | ||
| <whitelist> | ||
| <directory suffix=".php">src</directory> | ||
| </whitelist> | ||
| </filter> | ||
| </phpunit> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.