gitextract_3gqhbw41/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── run-php-cs-fixer.yml │ └── run-tests.yml ├── .gitignore ├── .php_cs ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config/ │ └── shared-data.php ├── docs/ │ ├── contributing.md │ ├── installation.md │ ├── javascript-helper.md │ └── sharing-data.md ├── phpunit.xml.dist ├── src/ │ ├── Facades/ │ │ └── SharedData.php │ ├── Providers/ │ │ └── SharedDataServiceProvider.php │ ├── SharedData.php │ └── helpers.php └── tests/ ├── AbstractTestCase.php ├── SharedDataTest.php └── views/ ├── shared.blade.php └── shared_custom.blade.php