-
-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip * wip * wip * wip * wip * fixing number test * wip * wip * wip * wip * wip * wip * fix pgsql env * actions github * fix phpstan
- Loading branch information
1 parent
059a82b
commit 42eefab
Showing
13 changed files
with
333 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,100 +1,106 @@ | ||
{ | ||
"name": "power-components/livewire-powergrid", | ||
"description": "PowerGrid generates Advanced Datatables using Laravel Livewire.", | ||
"homepage": "https://github.com/power-components/livewire-powergrid", | ||
"license": "MIT", | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"authors": [ | ||
{ | ||
"name": "Luan Freitas", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "DanSysAnalyst", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"livewire/livewire": "^3.4.3", | ||
"laravel/prompts": "^0.1.15" | ||
}, | ||
"require-dev": { | ||
"composer/composer": "^2.6.6", | ||
"laravel/pint": "^1.13.10", | ||
"laradumps/laradumps-core": "^1.1", | ||
"larastan/larastan": "^2.8.1", | ||
"pestphp/pest": "2.28.0", | ||
"orchestra/testbench": "8.19|^9.0" | ||
}, | ||
"suggest": { | ||
"openspout/openspout": "Required to export XLS and CSV" | ||
}, | ||
"conflict": { | ||
"laravel/framework": "10.40.0" | ||
"name": "power-components/livewire-powergrid", | ||
"description": "PowerGrid generates Advanced Datatables using Laravel Livewire.", | ||
"homepage": "https://github.com/power-components/livewire-powergrid", | ||
"license": "MIT", | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"authors": [ | ||
{ | ||
"name": "Luan Freitas", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"PowerComponents\\LivewirePowerGrid\\": "src" | ||
}, | ||
"files": [ | ||
"src/functions.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"PowerComponents\\LivewirePowerGrid\\Tests\\" : "tests" | ||
}, | ||
"files": [ | ||
"tests/Plugins/Autoload.php" | ||
] | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"PowerComponents\\LivewirePowerGrid\\Providers\\PowerGridServiceProvider" | ||
] | ||
} | ||
{ | ||
"name": "DanSysAnalyst", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"livewire/livewire": "^3.4.3", | ||
"laravel/prompts": "^0.1.15" | ||
}, | ||
"require-dev": { | ||
"composer/composer": "^2.6.6", | ||
"laravel/pint": "^1.13.10", | ||
"laradumps/laradumps-core": "^1.1", | ||
"larastan/larastan": "^2.8.1", | ||
"pestphp/pest": "2.28.0", | ||
"orchestra/testbench": "8.19|^9.0" | ||
}, | ||
"suggest": { | ||
"openspout/openspout": "Required to export XLS and CSV" | ||
}, | ||
"conflict": { | ||
"laravel/framework": "10.40.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"PowerComponents\\LivewirePowerGrid\\": "src" | ||
}, | ||
"scripts": { | ||
"pint:fix": "./vendor/bin/pint", | ||
"test": "@test:sqlite", | ||
"test:pint": "./vendor/bin/pint --test", | ||
"test:sqlite": [ | ||
"./vendor/bin/pest --compact" | ||
], | ||
"test:mysql": [ | ||
"./vendor/bin/pest --compact --configuration phpunit.mysql.xml" | ||
], | ||
"test:pgsql": [ | ||
"./vendor/bin/pest --compact --configuration phpunit.pgsql.xml" | ||
], | ||
"test:sqlsrv": [ | ||
"./vendor/bin/pest --configuration phpunit.sqlsrv.xml" | ||
], | ||
"test:types": "./vendor/bin/phpstan analyse --ansi --memory-limit=-1", | ||
"test:dbs": [ | ||
"@test:sqlite", | ||
"@test:mysql", | ||
"@test:pgsql" | ||
], | ||
"ds:check": [ | ||
"@php vendor/bin/laradumps check --dir=src,resources,tests --text=dump,dd --ignore=dumpTo,Dump stop-on-failure" | ||
], | ||
"verify": [ | ||
"@ds:check", | ||
"@test:pint", | ||
"@test:types", | ||
"@test" | ||
] | ||
"files": [ | ||
"src/functions.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"PowerComponents\\LivewirePowerGrid\\Tests\\": "tests" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": true, | ||
"pestphp/pest-plugin": true | ||
} | ||
"files": [ | ||
"tests/Plugins/Autoload.php" | ||
] | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"PowerComponents\\LivewirePowerGrid\\Providers\\PowerGridServiceProvider" | ||
] | ||
} | ||
}, | ||
"scripts": { | ||
"pint:fix": "./vendor/bin/pint", | ||
"test": "@test:sqlite", | ||
"test:pint": "./vendor/bin/pint --test", | ||
"test:sqlite": [ | ||
"./vendor/bin/pest --compact" | ||
], | ||
"test:mysql": [ | ||
"./vendor/bin/pest --compact --configuration phpunit.mysql.xml" | ||
], | ||
"test:pgsql": [ | ||
"./vendor/bin/pest --compact --configuration phpunit.pgsql.xml" | ||
], | ||
"test:sqlsrv": [ | ||
"./vendor/bin/pest --configuration phpunit.sqlsrv.xml" | ||
], | ||
"test:types": "./vendor/bin/phpstan analyse --ansi --memory-limit=-1", | ||
"test:dbs": [ | ||
"@test:sqlite", | ||
"@test:mysql", | ||
"@test:pgsql" | ||
], | ||
"ds:check": [ | ||
"@php vendor/bin/laradumps check --dir=src,resources,tests --text=dump,dd --ignore=dumpTo,Dump stop-on-failure" | ||
], | ||
"verify": [ | ||
"@ds:check", | ||
"@test:pint", | ||
"@test:types", | ||
"@test" | ||
] | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": true, | ||
"pestphp/pest-plugin": true | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "path", | ||
"url": "../../../" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.