Skip to content
This repository was archived by the owner on May 17, 2021. It is now read-only.

Commit 9f945e7

Browse files
committed
wip
1 parent 14bd4a2 commit 9f945e7

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

composer.json

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,14 @@
88
],
99
"homepage": "https://github.com/facade/code-editor",
1010
"license": "MIT",
11-
"repositories": [
12-
{
13-
"type": "vcs",
14-
"url": "[email protected]:facade/ignition.git"
15-
},
16-
{
17-
"type": "vcs",
18-
"url": "[email protected]:facade/flare-client-php.git"
19-
},
20-
{
21-
"type": "vcs",
22-
"url": "[email protected]:facade/ignition-contracts.git"
23-
}
24-
],
2511
"require": {
2612
"php": "^7.1",
2713
"illuminate/support": " 5.8.*|^6.0",
2814
"facade/ignition": "~1.0"
2915
},
16+
"require-dev": {
17+
"phpunit/phpunit": "^8.0"
18+
},
3019
"minimum-stability": "dev",
3120
"prefer-stable": true,
3221
"autoload": {

tests/StackTraceTabTest.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace Facade\IgnitionTinkerTab\Tests;
4+
5+
use Facade\IgnitionTinkerTab\TinkerTab;
6+
use PHPUnit\Framework\TestCase;
7+
8+
class StackTraceTabTest extends TestCase
9+
{
10+
/** @test */
11+
public function it_can_return_the_tab_name()
12+
{
13+
$tab = new StackTraceTabTest();
14+
15+
$this->assertEquals('Stack trace', $tab->name());
16+
}
17+
}

0 commit comments

Comments
 (0)