Skip to content
Open

3.0 #91

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "adminarchitect/core",
"name": "donorservices/adminarchitect-core",
"description": "Active Admin for Laravel.",
"authors": [
{
Expand All @@ -9,11 +9,11 @@
],
"license": "MIT",
"require": {
"php": "^7.2",
"php": ">=7.0",
"ext-json": "*",
"ext-dom": "*",
"laravelcollective/html": "^5.0|^6.0|^7.0|dev-master",
"doctrine/dbal": "2.9.*",
"doctrine/dbal": "2.13.9",
"doctrine/annotations": "^1.6",
"terranet/menus": "^2.2",
"terranet/presentable": "^1.0",
Expand All @@ -24,10 +24,10 @@
"spatie/once": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.2",
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.1",
"laravel/framework": "^8.20",
"laravel/laravel": "^8.5"
"laravel/framework": ">=8.20",
"laravel/laravel": "^v9.1.5"
},
"autoload": {
"psr-4": {
Expand All @@ -51,5 +51,7 @@
"Terranet\\Administrator\\ServiceProvider"
]
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
7,827 changes: 7,827 additions & 0 deletions publishes/mix/package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions publishes/mix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@fancyapps/fancybox": "^3.5.6",
"axios": "^0.18",
"axios": "^1.4.0",
"babel-plugin-component": "^1.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
Expand All @@ -23,11 +23,11 @@
"filepond-plugin-image-preview": "^4.0.8",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"laravel-mix": "^2.1",
"laravel-mix": "^6.0.49",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lodash": "^4.17.11",
"tinymce": "^4.6.4",
"tinymce": "^6.4.2",
"vue": "^2.5.7",
"vue-clip": "^1.0.0",
"vue-filepond": "^5.1.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/Collection/GroupTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class GroupTest extends TestCase
{
use CreatesElement, MocksObjects;

protected function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Collection/MutableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MutableTest extends CoreTestCase
*/
protected $collection;

public function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Columns/ElementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ElementTest extends CoreTestCase
/** @var MockObject|Scaffolding */
private $module;

public function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Controllers/AuthControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class AuthControllerTest extends CoreTestCase
/** @var MockObject|SessionGuard */
private $guard;

public function setUp()
protected function setUp(): void
{
$this->controller = $this->getMockBuilder(AuthController::class)
->disableOriginalConstructor()
Expand Down
2 changes: 1 addition & 1 deletion tests/Form/Collection/FormCollectionMutableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class FormCollectionMutableTest extends \PHPUnit\Framework\TestCase
{
use MocksObjects;

public function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down