Skip to content

Commit

Permalink
Merge pull request #24 from alexander-schranz/enhancement/autoloader-…
Browse files Browse the repository at this point in the history
…tests-directory-exclude

Remove unnecessary dummy test class
  • Loading branch information
Prokyonn authored Mar 15, 2023
2 parents e9b85c6 + c099fed commit 57b3cf7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 22 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
tools: 'composer:v2'
php-cs-fixer: true

- php-version: '8.2'
dependency-versions: 'highest'
tools: 'composer:v2'
php-cs-fixer: false

steps:
- name: Checkout project
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions Command/BuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ protected function renderTargets($builders)
$table->addRow([
$i,
$builder->getName(),
\implode(', ', $builder->getDependencies()
), ]);
\implode(', ', $builder->getDependencies()),
]);
}

$table->render();
Expand Down
19 changes: 0 additions & 19 deletions Console/MassiveOutputFormatterTest.php

This file was deleted.

6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,16 @@
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0.4 || ^6.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0"
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpspec/prophecy": "^1.14"
},
"autoload": {
"psr-4": {"Massive\\Bundle\\BuildBundle\\": "."},
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": {"Massive\\Bundle\\BuildBundle\\Tests\\": "Tests/"}
}
}

0 comments on commit 57b3cf7

Please sign in to comment.