gitextract_gu99l6kr/ ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src/ │ ├── ComponentInstaller/ │ │ ├── ComponentInstallerPlugin.php │ │ ├── Installer.php │ │ ├── Process/ │ │ │ ├── BuildJsProcess.php │ │ │ ├── CopyProcess.php │ │ │ ├── Process.php │ │ │ ├── ProcessInterface.php │ │ │ ├── RequireCssProcess.php │ │ │ └── RequireJsProcess.php │ │ ├── Resources/ │ │ │ └── require.js │ │ └── Util/ │ │ └── Filesystem.php │ └── bootstrap.php └── tests/ ├── ComponentInstaller/ │ └── Test/ │ ├── InstallerTest.php │ ├── Process/ │ │ ├── CopyProcessTest.php │ │ ├── ProcessTest.php │ │ ├── RequireCssProcessTest.php │ │ └── RequireJsProcessTest.php │ ├── Resources/ │ │ ├── test.css │ │ ├── test.js │ │ ├── test2.css │ │ └── test2.js │ └── Util/ │ └── FilesystemTest.php └── bootstrap.php