|
1 | 1 | { |
2 | | - "name": "yajra/laravel-datatables-export", |
3 | | - "description": "Laravel DataTables Queued Export Plugin.", |
4 | | - "keywords": [ |
5 | | - "laravel", |
6 | | - "datatables", |
7 | | - "export", |
8 | | - "excel", |
9 | | - "livewire", |
10 | | - "queue" |
11 | | - ], |
12 | | - "license": "MIT", |
13 | | - "authors": [ |
14 | | - { |
15 | | - "name": "Arjay Angeles", |
16 | | - "email": "aqangeles@gmail.com" |
17 | | - } |
18 | | - ], |
19 | | - "require": { |
20 | | - "php": "^8.1", |
21 | | - "ext-json": "*", |
22 | | - "livewire/livewire": "^2.11.2|^3.0.1", |
23 | | - "openspout/openspout": "^4.12.1", |
24 | | - "phpoffice/phpspreadsheet": "^1.27", |
25 | | - "yajra/laravel-datatables": "^10.0" |
26 | | - }, |
27 | | - "require-dev": { |
28 | | - "nunomaduro/larastan": "^2.4.1", |
29 | | - "orchestra/testbench": "^8.0.1" |
30 | | - }, |
31 | | - "autoload": { |
32 | | - "psr-4": { |
33 | | - "Yajra\\DataTables\\": "src/" |
34 | | - } |
35 | | - }, |
36 | | - "autoload-dev": { |
37 | | - "psr-4": { |
38 | | - "Yajra\\DataTables\\Exports\\Tests\\": "tests/" |
39 | | - } |
40 | | - }, |
41 | | - "config": { |
42 | | - "preferred-install": "dist", |
43 | | - "sort-packages": true, |
44 | | - "optimize-autoloader": true |
45 | | - }, |
46 | | - "extra": { |
47 | | - "branch-alias": { |
48 | | - "dev-master": "10.0-dev" |
| 2 | + "name": "yajra/laravel-datatables-export", |
| 3 | + "description": "Laravel DataTables Queued Export Plugin.", |
| 4 | + "keywords": [ |
| 5 | + "laravel", |
| 6 | + "datatables", |
| 7 | + "export", |
| 8 | + "excel", |
| 9 | + "livewire", |
| 10 | + "queue" |
| 11 | + ], |
| 12 | + "license": "MIT", |
| 13 | + "authors": [ |
| 14 | + { |
| 15 | + "name": "Arjay Angeles", |
| 16 | + "email": "aqangeles@gmail.com" |
| 17 | + } |
| 18 | + ], |
| 19 | + "require": { |
| 20 | + "php": "^8.2", |
| 21 | + "ext-json": "*", |
| 22 | + "livewire/livewire": "^2.11.2|^3.0.1", |
| 23 | + "openspout/openspout": "^4.12.1", |
| 24 | + "phpoffice/phpspreadsheet": "^1.27", |
| 25 | + "yajra/laravel-datatables-buttons": "^11.0", |
| 26 | + "pestphp/pest": "^2.34", |
| 27 | + "pestphp/pest-plugin-laravel": "^2.3" |
49 | 28 | }, |
50 | | - "laravel": { |
51 | | - "providers": [ |
52 | | - "Yajra\\DataTables\\ExportServiceProvider" |
53 | | - ] |
54 | | - } |
55 | | - }, |
56 | | - "minimum-stability": "dev", |
57 | | - "prefer-stable": true, |
58 | | - "funding": [ |
59 | | - { |
60 | | - "type": "github", |
61 | | - "url": "https://github.com/sponsors/yajra" |
62 | | - } |
63 | | - ] |
| 29 | + "require-dev": { |
| 30 | + "larastan/larastan": "^2.9.1", |
| 31 | + "orchestra/testbench": "^9", |
| 32 | + "laravel/pint": "^1.14", |
| 33 | + "rector/rector": "^1.0" |
| 34 | + }, |
| 35 | + "autoload": { |
| 36 | + "psr-4": { |
| 37 | + "Yajra\\DataTables\\": "src/" |
| 38 | + } |
| 39 | + }, |
| 40 | + "autoload-dev": { |
| 41 | + "psr-4": { |
| 42 | + "Yajra\\DataTables\\Exports\\Tests\\": "tests/" |
| 43 | + } |
| 44 | + }, |
| 45 | + "scripts": { |
| 46 | + "test": "./vendor/bin/pest", |
| 47 | + "pint": "./vendor/bin/pint", |
| 48 | + "rector": "./vendor/bin/rector", |
| 49 | + "stan": "./vendor/bin/phpstan analyse --memory-limit=2G --ansi --no-progress --no-interaction --configuration=phpstan.neon.dist", |
| 50 | + "pr": [ |
| 51 | + "@rector", |
| 52 | + "@pint", |
| 53 | + "@stan", |
| 54 | + "@test" |
| 55 | + ] |
| 56 | + }, |
| 57 | + "config": { |
| 58 | + "preferred-install": "dist", |
| 59 | + "sort-packages": true, |
| 60 | + "optimize-autoloader": true, |
| 61 | + "allow-plugins": { |
| 62 | + "pestphp/pest-plugin": true |
| 63 | + } |
| 64 | + }, |
| 65 | + "extra": { |
| 66 | + "branch-alias": { |
| 67 | + "dev-master": "11.x-dev" |
| 68 | + }, |
| 69 | + "laravel": { |
| 70 | + "providers": [ |
| 71 | + "Yajra\\DataTables\\ExportServiceProvider" |
| 72 | + ] |
| 73 | + } |
| 74 | + }, |
| 75 | + "minimum-stability": "dev", |
| 76 | + "prefer-stable": true, |
| 77 | + "funding": [ |
| 78 | + { |
| 79 | + "type": "github", |
| 80 | + "url": "https://github.com/sponsors/yajra" |
| 81 | + } |
| 82 | + ] |
64 | 83 | } |
0 commit comments