13 lines
374 B
PHP
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'),
|
|
];
|