Файловый менеджер - Редактировать - /home/easybachat/hisabat365.com/4a7891/laravel-datatables.tar
Ðазад
tests/Unit/ExampleTest.php 0000644 00000000107 15060250133 0011562 0 ustar 00 <?php test('example', function () { expect(true)->toBeTrue(); }); tests/Feature/PackageTest.php 0000644 00000000755 15060250133 0012207 0 ustar 00 <?php test('it loads all the packages', function () { expect(class_exists(\Yajra\DataTables\DataTablesServiceProvider::class))->toBeTrue(); expect(class_exists(\Yajra\DataTables\HtmlServiceProvider::class))->toBeTrue(); expect(class_exists(\Yajra\DataTables\FractalServiceProvider::class))->toBeTrue(); expect(class_exists(\Yajra\DataTables\ButtonsServiceProvider::class))->toBeTrue(); expect(class_exists(\Yajra\DataTables\ExportServiceProvider::class))->toBeTrue(); }); tests/Pest.php 0000644 00000003013 15060250133 0007322 0 ustar 00 <?php /* |-------------------------------------------------------------------------- | Test Case |-------------------------------------------------------------------------- | | The closure you provide to your test functions is always bound to a specific PHPUnit test | case class. By default, that class is "PHPUnit\Framework\TestCase". Of course, you may | need to change it using the "uses()" function to bind a different classes or traits. | */ use Yajra\DataTables\Installer\Tests\TestCase; uses(TestCase::class)->in('Feature'); /* |-------------------------------------------------------------------------- | Expectations |-------------------------------------------------------------------------- | | When you're writing tests, you often need to check that values meet certain conditions. The | "expect()" function gives you access to a set of "expectations" methods that you can use | to assert different things. Of course, you may extend the Expectation API at any time. | */ expect()->extend('toBeOne', function () { return $this->toBe(1); }); /* |-------------------------------------------------------------------------- | Functions |-------------------------------------------------------------------------- | | While Pest is very powerful out-of-the-box, you may have some testing code specific to your | project that you don't want to repeat in every file. Here you can also expose helpers as | global functions to help you to reduce the number of lines of code in your test files. | */ function something() { // .. } tests/TestCase.php 0000644 00000000651 15060250133 0010127 0 ustar 00 <?php namespace Yajra\DataTables\Installer\Tests; use Illuminate\Foundation\Testing\LazilyRefreshDatabase; use Orchestra\Testbench\TestCase as BaseTestCase; use Yajra\DataTables\ButtonsServiceProvider; abstract class TestCase extends BaseTestCase { use LazilyRefreshDatabase; protected function getPackageProviders($app): array { return [ ButtonsServiceProvider::class, ]; } } phpstan.neon.dist 0000644 00000000410 15060250133 0010032 0 ustar 00 includes: - ./vendor/larastan/larastan/extension.neon parameters: paths: - src level: max ignoreErrors: - '#Unsafe usage of new static\(\).#' excludePaths: - src/helper.php checkMissingIterableValueType: false src/.gitkeep 0000644 00000000000 15060250133 0006745 0 ustar 00 LICENSE.md 0000644 00000002117 15060250133 0006144 0 ustar 00 (The MIT License) Copyright (c) 2013-2017 Arjay Angeles <aqangeles@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. phpunit.xml.dist 0000644 00000001001 15060250133 0007702 0 ustar 00 <?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> <testsuites> <testsuite name="Package Test Suite"> <directory suffix="Test.php">./tests/</directory> </testsuite> </testsuites> </phpunit> rector.php 0000644 00000001070 15060250133 0006544 0 ustar 00 <?php declare(strict_types=1); use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector; use Rector\Config\RectorConfig; use Rector\Set\ValueObject\LevelSetList; return static function (RectorConfig $rectorConfig): void { $rectorConfig->paths([ __DIR__.'/config', __DIR__.'/database', __DIR__.'/src', ]); // register a single rule $rectorConfig->rule(InlineConstructorDefaultToPropertyRector::class); // define sets of rules $rectorConfig->sets([ LevelSetList::UP_TO_PHP_80, ]); }; CHANGELOG.md 0000644 00000000522 15060250133 0006347 0 ustar 00 # Laravel DataTables Complete Package ## Change Log ### v11.0.0 - 2024-03-16 - Add Laravel 11 support ### v10.1.0 - 2023-02-20 - Install export package by default. ### v10.0.0 - 2023-02-07 - Add Laravel 10 specific support ### v9.0.0 - 2022-05-08 - Add Laravel 9 specific support - Match package major version with the framework composer.json 0000644 00000002776 15060250133 0007275 0 ustar 00 { "name": "yajra/laravel-datatables", "description": "Laravel DataTables Complete Package.", "keywords": [ "laravel", "datatables", "jquery" ], "license": "MIT", "authors": [ { "name": "Arjay Angeles", "email": "aqangeles@gmail.com" } ], "require": { "php": "^8.2", "yajra/laravel-datatables-buttons": "^11", "yajra/laravel-datatables-editor": "^11", "yajra/laravel-datatables-export": "^11", "yajra/laravel-datatables-fractal": "^11", "yajra/laravel-datatables-html": "^11", "yajra/laravel-datatables-oracle": "^11" }, "require-dev": { "larastan/larastan": "^2.9.1", "orchestra/testbench": "^9", "laravel/pint": "^1.14", "rector/rector": "^1.0" }, "autoload-dev": { "psr-4": { "Yajra\\DataTables\\Installer\\Tests\\": "tests" } }, "extra": { "branch-alias": { "dev-master": "11.x-dev" } }, "config": { "sort-packages": true, "allow-plugins": { "pestphp/pest-plugin": true } }, "scripts": { "test": "./vendor/bin/phpunit", "pint": "./vendor/bin/pint", "rector": "./vendor/bin/rector", "stan": "./vendor/bin/phpstan analyse --memory-limit=2G --ansi --no-progress --no-interaction --configuration=phpstan.neon.dist", "pr": [ "@pint", "@rector", "@stan", "@test" ] }, "minimum-stability": "dev", "prefer-stable": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/yajra" } ] } README.md 0000644 00000006202 15060250133 0006016 0 ustar 00 # Laravel DataTables Complete Package [](https://gitter.im/yajra/laravel-datatables?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://www.paypal.me/yajra) [](https://www.patreon.com/bePatron?u=4521203) [](http://laravel.com) [](https://packagist.org/packages/yajra/laravel-datatables-oracle) [](https://github.com/yajra/laravel-datatables/actions/workflows/continuous-integration.yml) [](https://github.com/yajra/laravel-datatables/actions/workflows/static-analysis.yml) [](https://packagist.org/packages/yajra/laravel-datatables-oracle) [](https://packagist.org/packages/yajra/laravel-datatables-oracle) This package is a complete installer of [Laravel DataTables](https://github.com/yajra/laravel-datatables) core & plugins. ## Requirements - [PHP >= 8.2](http://php.net/) - [Laravel 11.x](https://github.com/laravel/framework) - [jQuery DataTables v1.10.x](http://datatables.net/) - [jQuery DataTables Buttons Extension](https://datatables.net/reference/button/) ## Documentations - [Laravel DataTables Documentation](http://yajrabox.com/docs/laravel-datatables) ## Laravel Version Compatibility | Laravel | Package | |:--------------|:--------| | 8.x and below | 1.x | | 9.x | 9.x | | 10.x | 10.x | | 11.x | 11.x | ## Installation `composer require yajra/laravel-datatables:^11` #### Service Providers Update `config/app.php` and register the following providers. > This step is optional if you are using Laravel 5.5. ```php Yajra\DataTables\DataTablesServiceProvider::class, Yajra\DataTables\ButtonsServiceProvider::class, Yajra\DataTables\FractalServiceProvider::class ``` #### Configuration and Assets (Optional) `$ php artisan vendor:publish` And that's it! Start building out some awesome DataTables! ## Contributing Please see [CONTRIBUTING](https://github.com/yajra/laravel-datatables/blob/master/.github/CONTRIBUTING.md) for details. ## Security If you discover any security related issues, please email [aqangeles@gmail.com](mailto:aqangeles@gmail.com) instead of using the issue tracker. ## Credits - [Arjay Angeles](https://github.com/yajra) - [All Contributors](https://github.com/yajra/laravel-datatables/graphs/contributors) ## License The MIT License (MIT). Please see [License File](https://github.com/yajra/laravel-datatables/blob/master/LICENSE.md) for more information.
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка