mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-01 21:00:58 +00:00
* docs: rewrite InvoiceShelf 3 onboarding * fix(installer): align minimum PHP requirement * docs: keep README screenshot in release packages
8 lines
215 B
PHP
8 lines
215 B
PHP
<?php
|
|
|
|
test('installer uses the application minimum php version', function () {
|
|
expect(config('installer.core.minPhpVersion'))
|
|
->toBe(config('invoiceshelf.min_php_version'))
|
|
->toBe('8.4.0');
|
|
});
|