/webtrees/ |
H A D | CONTRIBUTING.md | 36 * [`composer`](https://getcomposer.org) - to install PHP dependencies, build releases, and run test… 58 …run `composer install` before starting any development. This loads all the development tools, inc… 60 * You can use a "pre-commit hook" to run checks on your code before you commit them to your local r… 64 …uild the files in `public/js` and `public/css`. You do this with the command `npm run production`. 77 These are created using the command `npm run production`. 87 2. Run `composer install` to update the PHP dependencies. 88 3. Run `npm install` to update the JS and HTML files. 89 4. Run `php -S localhost:8080` and open your browser at [localhost:8080](http://localhost:8080) 96 Then run the tests with `vendor/bin/phpunit`
|
H A D | LICENSE.md | 53 Some devices are designed to deny users access to install or run 135 produce the work, or an object code interpreter used to run it. 139 work) run the object code and to modify the work, including scripts to 162 permission to run the unmodified Program. The output from running a 167 You may make, run and propagate covered works that you do not 441 run a copy of the Program. Ancillary propagation of a covered work 452 receives a license from the original licensors, to run, modify and 492 make, use, sell, offer for sale, import and otherwise run, modify and
|
H A D | README.md | 171 Then run this command:: 176 Then run the commands: 179 * npm run production 181 You will need to re-run the second of these any time you modify the file `webtrees.js`.
|
H A D | index.php | 24 return Webtrees::new()->run(PHP_SAPI);
|
/webtrees/.github/workflows/ |
H A D | phpstan.yaml | 6 run: 25 - run: composer validate 27 - run: composer global config --no-plugins allow-plugins.phpstan/extension-installer true 29 …- run: composer global require phpstan/phpstan phpstan/extension-installer phpstan/phpstan-depreca… 31 - run: composer install --no-progress 33 - run: ~/.composer/vendor/bin/phpstan analyze --no-progress --level=max app index.php
|
H A D | phpcs.yaml | 6 run: 25 - run: composer validate 27 - run: composer global require squizlabs/php_codesniffer 30 …run: ~/.composer/vendor/bin/phpcs --colors --standard=PSR12 --exclude=Generic.Files.LineLength --e… 33 run: ~/.composer/vendor/bin/phpcs --colors --extensions=css resources/css
|
H A D | phpunit.yaml | 6 run: 27 - run: composer validate 29 - run: composer install --no-progress 31 - run: vendor/bin/phpunit --coverage-clover=tests/coverage.xml
|
/webtrees/app/Services/ |
H A D | MigrationService.php | 36 * Run a series of scripts to bring the database schema up to date. 77 (new SeedUserTable())->run(); 78 (new SeedGedcomTable())->run(); 79 (new SeedDefaultResnTable())->run();
|
H A D | TimeoutService.php | 29 //Long-running scripts run in small chunks 32 // Seconds until we run out of time 57 // If there's no time limit, then we can't run out of time.
|
/webtrees/app/Http/Middleware/ |
H A D | DoHousekeeping.php | 32 * Run the housekeeping service at irregular intervals. 50 // Run the cleanup every N requests. 73 // Run the cleanup after random page requests. 82 * Run the various housekeeping services.
|
H A D | Router.php | 126 // This middleware cannot run until after the routing, as it needs to know the route. 135 // Finally, run the handler using middleware
|
H A D | RequestHandler.php | 32 * Middleware to run a request-handler.
|
H A D | CheckForNewVersion.php | 52 // Only run on full page requests.
|
H A D | ReadConfigIni.php | 64 // No configuration file? Run the setup wizard to create one.
|
/webtrees/tests/app/Http/RequestHandlers/ |
H A D | RedirectReportEnginePhpTest.php | 53 ['ged' => 'tree1', 'action' => 'run', 'report' => 'foo/report.xml'], 63 'https://www.example.com/index.php?route=%2Ftree1%2Freport-run%2Ffoo', 80 ['ged' => 'tree1', 'action' => 'run', 'report' => 'foo/report.xml']
|
/webtrees/app/Schema/ |
H A D | SeedInterface.php | 28 * Run the seeder. 32 public function run(): void; function
|
H A D | SeedDefaultResnTable.php | 38 * Run the seeder. 42 public function run(): void function in Fisharebest\\Webtrees\\Schema\\SeedDefaultResnTable
|
H A D | SeedGedcomTable.php | 30 * Run the seeder. 34 public function run(): void function in Fisharebest\\Webtrees\\Schema\\SeedGedcomTable
|
H A D | SeedUserTable.php | 30 * Run the seeder. 34 public function run(): void function in Fisharebest\\Webtrees\\Schema\\SeedUserTable
|
/webtrees/app/ |
H A D | Webtrees.php | 243 * Run the application. 245 public function run(string $php_sapi): int|ResponseInterface function in Fisharebest\\Webtrees\\Webtrees 261 return $console->loadCommands()->bootstrap()->run();
|
/webtrees/tests/ |
H A D | TestCase.php | 133 * Things to run before every test. 168 * Things to run after every test
|
/webtrees/resources/views/help/ |
H A D | relationship-privacy.phtml | 18 …ger path lengths require a lot of calculation, which can make your website run slowly for these us…
|
/webtrees/app/Report/ |
H A D | AbstractRenderer.php | 173 * Run the report. 177 abstract public function run(): void; function in Fisharebest\\Webtrees\\Report\\AbstractRenderer
|
/webtrees/app/Http/RequestHandlers/ |
H A D | DataFixSelect.php | 33 * Run a data-fix.
|
H A D | ReportListPage.php | 63 $title = I18N::translate('Choose a report to run');
|