diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..73f69e0
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/.idea/laravel-idea.xml b/.idea/laravel-idea.xml
new file mode 100644
index 0000000..3b7a51e
--- /dev/null
+++ b/.idea/laravel-idea.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/laravel-translation-manager.iml b/.idea/laravel-translation-manager.iml
new file mode 100644
index 0000000..6d9bb4b
--- /dev/null
+++ b/.idea/laravel-translation-manager.iml
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..1499991
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/php-test-framework.xml b/.idea/php-test-framework.xml
new file mode 100644
index 0000000..80b13e3
--- /dev/null
+++ b/.idea/php-test-framework.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/php.xml b/.idea/php.xml
new file mode 100644
index 0000000..b17f685
--- /dev/null
+++ b/.idea/php.xml
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/phpunit.xml b/.idea/phpunit.xml
new file mode 100644
index 0000000..4f8104c
--- /dev/null
+++ b/.idea/phpunit.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..9523a0c
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/composer.json b/composer.json
index 1c2c679..53de93c 100755
--- a/composer.json
+++ b/composer.json
@@ -1,55 +1,54 @@
{
- "name": "vsch/laravel-translation-manager",
- "description": "Enhanced Laravel Translation Manager",
- "keywords": [
- "laravel",
- "translations",
- "translator"
+ "name": "vsch/laravel-translation-manager",
+ "description": "Enhanced Laravel Translation Manager",
+ "keywords": [
+ "laravel",
+ "translations",
+ "translator"
+ ],
+ "homepage": "https://github.com/vsch/laravel-translation-manager",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Vladimir Schneider",
+ "email": "vladimir.schneider@gmail.com",
+ "role": "Developer"
+ }
+ ],
+ "require": {
+ "php": ">=7.1.3",
+ "illuminate/support": "^5.0|^6.0|^7.0|^8.0",
+ "laravelcollective/html": "^5.0|^6.0",
+ "illuminate/translation": "^5.0|^6.0|^7.0|^8.0",
+ "doctrine/dbal": "~2.6",
+ "symfony/finder": "^4.0|^5.0"
+ },
+ "require-dev": {
+ "phpspec/phpspec": "~7.0.1",
+ "mockery/mockery": "0.9.*",
+ "phpunit/phpunit": "~7.0"
+ },
+ "autoload": {
+ "classmap": [
+ "src/Classes"
],
- "homepage": "https://github.com/vsch/laravel-translation-manager",
- "license": "MIT",
- "authors": [
- {
- "name": "Vladimir Schneider",
- "email": "vladimir.schneider@gmail.com",
- "role": "Developer"
- }
+ "files": [
+ "src/Support/helpers.php"
],
- "require": {
- "php": ">=7.1.3",
- "illuminate/support": "^5.6",
- "laravelcollective/html": "^5.6",
- "illuminate/translation": "^5.6",
- "doctrine/dbal": "~2.6",
- "symfony/finder": "~4.0"
- },
- "require-dev": {
- "phpspec/phpspec": "~3.0",
- "fzaninotto/faker": "~1.4",
- "mockery/mockery": "0.9.*",
- "phpunit/phpunit": "~7.0"
- },
- "autoload": {
- "classmap": [
- "src/Classes"
- ],
- "files": [
- "src/Support/helpers.php"
- ],
- "psr-4": {
- "Vsch\\TranslationManager\\": "src/"
- }
- },
- "autoload-dev": {
- "classmap": [
- "tests/"
- ],
- "psr-4": {
- }
- },
- "scripts": {
- "post-update-cmd": [
- ]
- },
- "minimum-stability": "stable"
+ "psr-4": {
+ "Vsch\\TranslationManager\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/"
+ ],
+ "psr-4": {
+ }
+ },
+ "scripts": {
+ "post-update-cmd": [
+ ]
+ },
+ "minimum-stability": "stable"
}