-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: set up
graham-campbell/analyzer
- Loading branch information
1 parent
56e5536
commit 0964beb
Showing
61 changed files
with
154 additions
and
113 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -9,19 +9,22 @@ | |
"currency" | ||
], | ||
"license": "MIT", | ||
"authors": [{ | ||
"name": "Brian Faust", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/faustbrian" | ||
}], | ||
"authors": [ | ||
{ | ||
"name": "Brian Faust", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/faustbrian" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.2", | ||
"bitwasp/bitcoin": "^1.0", | ||
"kodekeep/bytebuffer": "^1.0", | ||
"kodekeep/binary": "^1.0" | ||
"kodekeep/binary": "^1.0", | ||
"kodekeep/bytebuffer": "^1.0" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^2.16", | ||
"graham-campbell/analyzer": "^3.0", | ||
"illuminate/support": "^7.0.0", | ||
"mockery/mockery": "^1.2", | ||
"pestphp/drift": "^0.3.0", | ||
|
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
namespace Tests\Analysis; | ||
|
||
use GrahamCampbell\Analyzer\AnalysisTrait; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @coversNothing | ||
*/ | ||
class AnalysisTest extends TestCase | ||
{ | ||
use AnalysisTrait; | ||
|
||
public function getPaths(): array | ||
{ | ||
return [ | ||
__DIR__.'/../../src', | ||
__DIR__.'/../../tests', | ||
]; | ||
} | ||
|
||
public function getIgnored(): array | ||
{ | ||
return []; | ||
} | ||
} |
Oops, something went wrong.