mirror of
https://github.com/archtechx/airwire-demo.git
synced 2025-12-12 00:24:03 +00:00
Merge pull request #2 from ijpatricio/fix-demo
Removes local composer repository. Fixes composer PHP requirements.
This commit is contained in:
commit
07a2437db8
3 changed files with 4321 additions and 5296 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
"keywords": ["framework", "laravel"],
|
"keywords": ["framework", "laravel"],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^7.3|^8.0",
|
"php": "^8.0",
|
||||||
"archtechx/airwire": "dev-master",
|
"archtechx/airwire": "dev-master",
|
||||||
"blade-ui-kit/blade-heroicons": "^1.2",
|
"blade-ui-kit/blade-heroicons": "^1.2",
|
||||||
"fideloper/proxy": "^4.4",
|
"fideloper/proxy": "^4.4",
|
||||||
|
|
@ -59,15 +59,6 @@
|
||||||
"preferred-install": "dist",
|
"preferred-install": "dist",
|
||||||
"sort-packages": true
|
"sort-packages": true
|
||||||
},
|
},
|
||||||
"repositories": [
|
|
||||||
{
|
|
||||||
"type": "path",
|
|
||||||
"url": "/Users/samuel/Projects/airwire",
|
|
||||||
"options": {
|
|
||||||
"symlink": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true
|
"prefer-stable": true
|
||||||
}
|
}
|
||||||
|
|
|
||||||
9603
composer.lock
generated
9603
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
namespace Tests\Feature;
|
namespace Tests\Feature;
|
||||||
|
|
||||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
||||||
use Tests\TestCase;
|
use Tests\TestCase;
|
||||||
|
|
||||||
class ExampleTest extends TestCase
|
class ExampleTest extends TestCase
|
||||||
|
|
@ -15,7 +14,9 @@ class ExampleTest extends TestCase
|
||||||
public function test_example()
|
public function test_example()
|
||||||
{
|
{
|
||||||
$response = $this->get('/');
|
$response = $this->get('/');
|
||||||
|
$response->assertStatus(302);
|
||||||
|
|
||||||
|
$response = $this->get('/vue');
|
||||||
$response->assertStatus(200);
|
$response->assertStatus(200);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue