Skip to content

Merge rewrite #297

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 23 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b135827
Seperate listeners and checks
AydinHassan May 5, 2024
9cdd0ec
Use new process factory
AydinHassan May 5, 2024
4488e46
Merge pull request #286 from php-school/05-05-use_new_process_factory
AydinHassan May 17, 2024
4b35965
Reorganise event hiearchy
AydinHassan May 5, 2024
046fc81
Merge pull request #287 from php-school/05-05-reorganise_event_hiearchy
AydinHassan May 17, 2024
0a46c70
Introduce new class to prepare environment files
AydinHassan May 9, 2024
e8424d0
Merge pull request #295 from php-school/05-09-introduce_new_class_to_…
AydinHassan May 17, 2024
801f70f
Use scenarios in exercises
AydinHassan May 7, 2024
6515c60
Merge pull request #291 from php-school/05-07-use_scenarios_in_exercises
AydinHassan May 17, 2024
b86f356
Use context objects in dispatcher and runners
AydinHassan May 7, 2024
bb84725
Merge pull request #289 from php-school/05-07-use_context_objects_in_…
AydinHassan May 17, 2024
4af4474
Use context in checks
AydinHassan May 7, 2024
44ceb20
Merge pull request #290 from php-school/05-07-use_context_in_checks
AydinHassan May 17, 2024
11a15f9
Update events to use context
AydinHassan May 9, 2024
6142580
Merge pull request #292 from php-school/05-09-update_events_to_use_co…
AydinHassan May 17, 2024
74bef1f
Remove useless code
AydinHassan May 9, 2024
5345e8b
Merge pull request #293 from php-school/05-09-remove_useless_code
AydinHassan May 17, 2024
1383e65
Remove temporary solution mapper
AydinHassan May 9, 2024
a35a0e1
Merge pull request #294 from php-school/05-09-remove_temporary_soluti…
AydinHassan May 17, 2024
02b0fdc
Migrate to php-cs-fixer
AydinHassan May 11, 2024
90a77ba
Merge pull request #296 from php-school/05-11-migrate_to_php-cs-fixer
AydinHassan May 17, 2024
4f938dc
Merge branch 'master' into context
AydinHassan May 17, 2024
7257a37
CS
AydinHassan May 17, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/php-workshop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
tools: php-cs-fixer,composer:v2
coverage: none

- name: Install Dependencies
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
program.php
.phpunit.result.cache
/build
/vendor-bin/**/vendor/
.php-cs-fixer.cache
13 changes: 13 additions & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('test/res')
;

return (new PhpCsFixer\Config())
->setRules([
'@PER-CS2.0' => true,
'no_unused_imports' => true,
])
->setFinder($finder);
Loading
Loading