├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── config └── example.php ├── resources └── views │ └── example.blade.php └── src ├── Console └── ExampleCommand.php ├── Example.php ├── Facades └── Example.php └── Providers └── ExampleServiceProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/composer.lock -------------------------------------------------------------------------------- /config/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/config/example.php -------------------------------------------------------------------------------- /resources/views/example.blade.php: -------------------------------------------------------------------------------- 1 | {{ Example::getQuote() }} 2 | -------------------------------------------------------------------------------- /src/Console/ExampleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/src/Console/ExampleCommand.php -------------------------------------------------------------------------------- /src/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/src/Example.php -------------------------------------------------------------------------------- /src/Facades/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/src/Facades/Example.php -------------------------------------------------------------------------------- /src/Providers/ExampleServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn-example-package/HEAD/src/Providers/ExampleServiceProvider.php --------------------------------------------------------------------------------