source: dotfiles/languages/php/.psysh/rc.php

Last change on this file was 254aa1d, checked in by Mikhail Kirillov <w96k@…>, on Aug 5, 2024 at 6:53:43 AM

Massively update guix home

  • Property mode set to 100644
File size: 308 bytes
Line 
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.