Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
Merge pull request #36 from Naoray/dev
Browse files Browse the repository at this point in the history
Version 1.2.7
  • Loading branch information
Naoray authored Sep 2, 2018
2 parents 99c0b89 + 29c67b0 commit 4dd95ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Commands/ClonePackage.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function gitClone()
*/
public function srcIsRemote()
{
return str_contains($this->getSrcInput(), 'https');
return str_contains($this->getSrcInput(), ['https', 'git@']);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/Package/stubs/base-test.stub
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DummyNamespace;
namespace DummyNamespace\Tests;

use Orchestra\Testbench\TestCase as Orchestra;

Expand Down
2 changes: 1 addition & 1 deletion src/Commands/Package/stubs/composer.stub
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"autoload-dev": {
"psr-4": {
"DummyComposerNamespaceTest\\": "tests"
"DummyComposerNamespaceTests\\": "tests"
}
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/Package/stubs/phpunit.stub
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
stopOnFailure="false">

<testsuites>
<testsuite name="DummyVendorName/DummyPackageName Test Suite">
<testsuite name="DummyVendor/DummyPackageName Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
Expand Down

0 comments on commit 4dd95ff

Please sign in to comment.