1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00
This commit is contained in:
Viktor Szépe 2024-10-02 12:28:32 +02:00 committed by GitHub
parent 3a503d1805
commit 8728a75930
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 19 additions and 19 deletions

View file

@ -707,11 +707,11 @@ class InitCommandTest extends TestCase
$appTester->setInputs([
'vendor/pkg', // Pkg name
'my desciption', // Description
'my description', // Description
'Mr. Test <test@example.org>', // Author
'stable', // Minimum stability
'library', // Type
'AGPL-3.0-only', // License
'AGPL-3.0-only', // License
'no', // Define dependencies
'no', // Define dev dependencies
'n', // Add PSR-4 autoload mapping
@ -724,7 +724,7 @@ class InitCommandTest extends TestCase
$expected = [
'name' => 'vendor/pkg',
'description' => 'my desciption',
'description' => 'my description',
'type' => 'library',
'license' => 'AGPL-3.0-only',
'authors' => [['name' => 'Mr. Test', 'email' => 'test@example.org']],