We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 378c6f4 commit c7d5e21Copy full SHA for c7d5e21
.gitignore
@@ -1,15 +1,6 @@
1
-
2
-node_modules/
3
-.idea/
4
5
-# Laravel 4 specific
6
-bootstrap/compiled.php
7
-app/storage/
8
9
-# Laravel 5 & Lumen specific
10
-bootstrap/cache/
11
-storage/
12
-.env.*.php
13
-.env.php
14
-.env
15
-.env.example
+/vendor
+/.env
+composer.phar
+composer.lock
+.DS_Store
+Thumbs.db
phpunit.xml phpunit.xml.dist
tests/DemoTest.php
@@ -0,0 +1,11 @@
+<?php
+
+namespace Tests;
+class DemoTest extends \PHPUnit_Framework_TestCase
+{
+ public function testSomethingIsTrue()
+ {
+ $this->assertTrue(true);
+ }
+}
0 commit comments