Just export the XDEBUG_CONFIG variable:
export XDEBUG_CONFIG="idekey=PHPSTORM"
Remember to enable Xdebug first:
<?php | |
namespace VENDOR\EXTENSION\ViewHelpers; | |
class DebugbarViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper | |
{ | |
/** | |
* Displays the debug informationen in the PHP Debug Bar | |
* | |
* @param null $content |
This littel script fetches all packages, listed on packagist with type typo3-cms-extension
, and iterates over them and collect download data for every single packages.
It will echo it as csv, so it can easily be parsed into a .csv file for better sorting etc.
$ php fetchExtensionDownloadDataFromPackagist.php > downloadData.csv