Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.x] Implements new UI #283

Draft
wants to merge 14 commits into
base: 3.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"require": {
"php": "^8.1",
"illuminate/support": "^9.0||^10.0",
"joedixon/laravel-translation-core": "dev-main"
"joedixon/laravel-translation-core": "dev-main",
"livewire/livewire": "^3.0@beta"
},
"require-dev": {
"mockery/mockery": "^1.0.0",
Expand All @@ -33,7 +34,19 @@
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": [
"@prepare",
"@clear",
"@php vendor/bin/testbench workbench:build"
],
"start": [
"@build",
"Composer\\Config::disableProcessTimeout",
"@php vendor/bin/testbench serve"
]
},
"extra": {
"laravel": {
Expand All @@ -44,8 +57,8 @@
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/joedixon/laravel-translation-core"
"type": "path",
"url": "/Users/joe/Code/laravel-translation-core"
}
],
"config": {
Expand Down
2 changes: 1 addition & 1 deletion config/translation.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
| Define the URL used to access the language management too.
|
*/
'ui_url' => 'languages',
'ui_url' => 'translations',

/*
|--------------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions dist/assets/translation-1119ce9b.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dist/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"resources/css/translation.css": {
"file": "assets/translation-1119ce9b.css",
"isEntry": true,
"src": "resources/css/translation.css"
}
}
4 changes: 0 additions & 4 deletions mix-manifest.json

This file was deleted.

Loading
Loading