source: dotfiles/php/.psysh/rc.php@ c53d99e

Last change on this file since c53d99e was c53d99e, checked in by Mikhail Kirillov <w96k@…>, on Jul 3, 2022 at 8:18:15 PM

Update dotfiles

  • Property mode set to 100644
File size: 308 bytes
RevLine 
[c53d99e]1<?php
2
3$config = [
4 'pager' => 'more',
5 'usePcntl' => true,
6 'useReadline' => true,
7 'commands' => [
8 new \Psy\Command\ParseCommand,
9 ],
10];
11
12$f = getenv('HOME') . '/.composer/vendor/autoload.php';
13if (file_exists($f)) { $config['defaultIncludes'] = [$f]; }
14
15return $config;
Note: See TracBrowser for help on using the repository browser.