--- /dev/null
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+indent_style = space
+indent_size = 4
+trim_trailing_whitespace = true
+
+[*.md]
+trim_trailing_whitespace = false
+
+[*.yml]
+indent_size = 2
--- /dev/null
+{
+ "name": "cubist\/locale",
+ "description": "Cubist Locale",
+ "type": "library",
+ "license": "proprietary",
+ "minimum-stability": "dev",
+ "prefer-stable": true,
+ "autoload": {
+ "psr-0": {
+ "Cubist\\Locale\\": "src"
+ },
+ "files": [
+
+ ]
+ },
+ "authors": [
+ {
+ "name": "Vincent Vanwaelscappel",
+ "email": "vincent@cubedesigners.com"
+ }
+ ],
+ "require": {
+ "php": ">=7.1.3",
+ "umpirsky/locale-list": "^1.0",
+ "umpirsky/country-list": "^2.0"
+ },
+ "require-dev": {
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Cubist\\Locale\\CubistLocaleServiceProvider"
+ ],
+ "aliases": {
+
+ }
+ }
+ },
+ "repositories": [
+ {
+ "type": "composer",
+ "url": "https:\/\/composer.cubedesigners.com\/"
+ }
+ ]
+}
--- /dev/null
+<?php
+
+namespace Cubist\Locale;
+
+use Illuminate\Support\ServiceProvider;
+
+class CubistBackpackServiceProvider extends ServiceProvider
+{
+ /**
+ * Indicates if loading of the provider is deferred.
+ *
+ * @var bool
+ */
+ protected $defer = false;
+
+ const NAMESPACE = 'cubist_locale';
+
+
+ /**
+ * Perform post-registration booting of services.
+ *
+ * @return void
+ */
+ public function boot()
+ {
+
+ }
+
+
+ /**
+ * Register any package services.
+ *
+ * @return void
+ */
+ public function register()
+ {
+
+ }
+}