1
0
Fork 0
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:
Samuel Štancl 2021-06-24 23:38:48 +02:00 committed by GitHub
commit 07a2437db8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4321 additions and 5296 deletions

View file

@ -5,7 +5,7 @@
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"php": "^8.0",
"archtechx/airwire": "dev-master",
"blade-ui-kit/blade-heroicons": "^1.2",
"fideloper/proxy": "^4.4",
@ -59,15 +59,6 @@
"preferred-install": "dist",
"sort-packages": true
},
"repositories": [
{
"type": "path",
"url": "/Users/samuel/Projects/airwire",
"options": {
"symlink": false
}
}
],
"minimum-stability": "dev",
"prefer-stable": true
}

9603
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,6 @@
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
@ -15,7 +14,9 @@ class ExampleTest extends TestCase
public function test_example()
{
$response = $this->get('/');
$response->assertStatus(302);
$response = $this->get('/vue');
$response->assertStatus(200);
}
}