├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── RyanNielson │ └── Shareable │ │ ├── Buttons │ │ ├── Button.php │ │ ├── Facebook.php │ │ ├── GooglePlus.php │ │ └── Twitter.php │ │ ├── Facades │ │ └── Shareable.php │ │ ├── Shareable.php │ │ └── ShareableServiceProvider.php ├── config │ └── config.php └── views │ ├── all.blade.php │ ├── facebook.blade.php │ ├── google_plus.blade.php │ └── twitter.blade.php └── tests └── Buttons ├── ButtonsFacebookTest.php ├── ButtonsGooglePlusTest.php └── ButtonsTwitterTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/RyanNielson/Shareable/Buttons/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/RyanNielson/Shareable/Buttons/Button.php -------------------------------------------------------------------------------- /src/RyanNielson/Shareable/Buttons/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/RyanNielson/Shareable/Buttons/Facebook.php -------------------------------------------------------------------------------- /src/RyanNielson/Shareable/Buttons/GooglePlus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/RyanNielson/Shareable/Buttons/GooglePlus.php -------------------------------------------------------------------------------- /src/RyanNielson/Shareable/Buttons/Twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/RyanNielson/Shareable/Buttons/Twitter.php -------------------------------------------------------------------------------- /src/RyanNielson/Shareable/Facades/Shareable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/RyanNielson/Shareable/Facades/Shareable.php -------------------------------------------------------------------------------- /src/RyanNielson/Shareable/Shareable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/RyanNielson/Shareable/Shareable.php -------------------------------------------------------------------------------- /src/RyanNielson/Shareable/ShareableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/RyanNielson/Shareable/ShareableServiceProvider.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/config/config.php -------------------------------------------------------------------------------- /src/views/all.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/views/all.blade.php -------------------------------------------------------------------------------- /src/views/facebook.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/views/facebook.blade.php -------------------------------------------------------------------------------- /src/views/google_plus.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/views/google_plus.blade.php -------------------------------------------------------------------------------- /src/views/twitter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/src/views/twitter.blade.php -------------------------------------------------------------------------------- /tests/Buttons/ButtonsFacebookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/tests/Buttons/ButtonsFacebookTest.php -------------------------------------------------------------------------------- /tests/Buttons/ButtonsGooglePlusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/tests/Buttons/ButtonsGooglePlusTest.php -------------------------------------------------------------------------------- /tests/Buttons/ButtonsTwitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanNielson/shareable/HEAD/tests/Buttons/ButtonsTwitterTest.php --------------------------------------------------------------------------------