aedart / athenaeum-translation
Translation utilities for Laravel
Installs: 1 163
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/aedart/athenaeum-translation
Requires
- php: ^8.3
 - aedart/athenaeum-support: ^9.15
 - illuminate/translation: ^v12.35.1
 - symfony/finder: ^7.3.2
 
- dev-main
 - 9.15.0
 - 9.14.0
 - 9.13.0
 - 9.12.0
 - 9.11.0
 - 9.10.0
 - 9.9.0
 - 9.8.0
 - 9.7.0
 - 9.6.0
 - 9.5.0
 - 9.4.0
 - 9.3.0
 - 9.2.0
 - 9.1.0
 - 9.0.0
 - 8.22.0
 - 8.21.0
 - 8.20.0
 - 8.19.0
 - 8.18.0
 - 8.17.0
 - 8.16.0
 - 8.15.0
 - 8.14.0
 - 8.13.0
 - 8.12.0
 - 8.11.0
 - 8.10.0
 - 8.9.0
 - 8.8.0
 - 8.7.0
 - 8.6.0
 - 8.5.0
 - 8.4.0
 - 8.3.0
 - 8.2.0
 - 8.1.0
 - 8.0.0
 - 7.33.0
 - 7.32.0
 - 7.31.0
 - 7.30.1
 - 7.30.0
 - 7.29.0
 - 7.28.0
 - 7.27.0
 - 7.26.0
 - 7.25.0
 - 7.24.0
 - 7.23.0
 - 7.22.1
 - 7.22.0
 - 7.21.0
 - 7.20.0
 - 7.19.0
 - 7.18.1
 - 7.18.0
 - 7.17.0
 - 7.16.0
 - 7.15.0
 - 7.14.0
 - 7.13.0
 - 7.12.0
 - 7.11.3
 - 7.11.2
 - 7.11.1
 - 7.11.0
 - 7.10.1
 - 7.10.0
 - 7.9.1
 - 7.9.0
 - 7.8.0
 - 7.7.2
 - 7.7.1
 - 7.7.0
 - 7.6.0
 - 7.5.0
 - 7.4.0
 - 7.3.0
 
This package is auto-updated.
Last update: 2025-10-24 07:04:08 UTC
README
The translation package contains a few utilities for Laravel's Localization utilities.
Exporters
Among the available utilities are translation exporters.
$translations = $exporter->export('en', 'auth'); print_r($translations);
Array
(
    [en] => Array
        (
            [__JSON__] => Array
                (
                    [The :attribute must contain one letter.] => The :attribute must contain one letter.
                )
            [auth] => Array
                (
                    [failed] => These credentials do not match our records.
                    [password] => The provided password is incorrect.
                    [throttle] => Too many login attempts. Please try again in :seconds seconds.
                )
        )
)
Documentation
Please read the official documentation for additional information.
Repository
The mono repository is located at github.com/aedart/athenaeum
Versioning
This package follows Semantic Versioning 2.0.0
License
BSD-3-Clause, Read the LICENSE file included in this package