Is it possible to autoload dd() and or other dev tools at the IDE level not project

264 Views Asked by At

I was working in a scratch file and tried to use a non native function (muscle memory) and of cause it threw an error

The PHP Fatal error: Uncaught Error: Call to undefined function dd() in .../.scratch.php

What I wanted to know is can I make dd() for example available globally across all projects/scratch files without having to autoload it myself.

Essentially you would set a PSR-4 autoload path or directory to include.

After exploring the settings I didn't come up with a way of doing it so this is what I did instead.

composer global require --dev symfony/var-dumper
<?php
include $_SERVER['APPDATA']. '/Composer/vendor/autoload.php';
$var = '';
dd($var);
1

There are 1 best solutions below

0
On

I just complete the answer above

To use 'vendor' projects and components in your phpstorm scratch file
include the file vendor/autoload.php
and for the example to check a Symfony component... :

require '/path/to/my/project/app/vendor/autoload.php';

use Symfony\Component\Intl\Currencies;

\Locale::setDefault('sv');
$res = Currencies::getSymbol('SEK');
print_r($res);