├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── config └── currency.php ├── database └── migrations │ └── 2013_11_26_161501_create_currency_table.php ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml ├── resources └── currencies.php ├── src ├── Console │ ├── Cleanup.php │ ├── Manage.php │ └── Update.php ├── Contracts │ ├── DriverInterface.php │ └── FormatterInterface.php ├── Currency.php ├── CurrencyServiceProvider.php ├── Drivers │ ├── AbstractDriver.php │ ├── Database.php │ └── Filesystem.php ├── Facades │ └── Currency.php ├── Formatters │ └── PHPIntl.php ├── Middleware │ └── CurrencyMiddleware.php └── helpers.php └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/composer.json -------------------------------------------------------------------------------- /config/currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/config/currency.php -------------------------------------------------------------------------------- /database/migrations/2013_11_26_161501_create_currency_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/database/migrations/2013_11_26_161501_create_currency_table.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/currencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/resources/currencies.php -------------------------------------------------------------------------------- /src/Console/Cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Console/Cleanup.php -------------------------------------------------------------------------------- /src/Console/Manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Console/Manage.php -------------------------------------------------------------------------------- /src/Console/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Console/Update.php -------------------------------------------------------------------------------- /src/Contracts/DriverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Contracts/DriverInterface.php -------------------------------------------------------------------------------- /src/Contracts/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Contracts/FormatterInterface.php -------------------------------------------------------------------------------- /src/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Currency.php -------------------------------------------------------------------------------- /src/CurrencyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/CurrencyServiceProvider.php -------------------------------------------------------------------------------- /src/Drivers/AbstractDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Drivers/AbstractDriver.php -------------------------------------------------------------------------------- /src/Drivers/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Drivers/Database.php -------------------------------------------------------------------------------- /src/Drivers/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Drivers/Filesystem.php -------------------------------------------------------------------------------- /src/Facades/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Facades/Currency.php -------------------------------------------------------------------------------- /src/Formatters/PHPIntl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Formatters/PHPIntl.php -------------------------------------------------------------------------------- /src/Middleware/CurrencyMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/Middleware/CurrencyMiddleware.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torann/laravel-currency/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------