ramadanproject/config/pixel_grid.php
Ahmed Darrazi 45a147253c
Some checks failed
tests / ci (push) Failing after 6m13s
linter / quality (pull_request) Failing after 58s
linter / quality (push) Failing after 1m19s
tests / ci (pull_request) Failing after 5m28s
feat(public-grid): add QA, quickstart, decision docs; scheduler docs; ignore files; tasks updates; run pint
2026-01-03 04:56:12 +01:00

13 lines
374 B
PHP

<?php
return [
// Size of a single grid cell in pixels
'cell_size' => env('PIXEL_GRID_CELL_SIZE', 20),
// Price per cell in cents (integer)
'price_per_cell' => env('PIXEL_GRID_PRICE_PER_CELL', 100),
// Path (storage disk) to the master image (relative to storage/app/public)
'master_path' => env('PIXEL_GRID_MASTER_PATH', 'master/master.png'),
];