Download the PHP package haltsir/semantic-date without Composer
On this page you can find all versions of the php package haltsir/semantic-date. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package semantic-date
Semantic Date
Semantic Date is a PHP library that provides an easy way to convert dates into human-readable, semantic expressions. The library is framework-agnostic but includes specific instructions for integration with the Laravel framework. The package supports two calendar types: Orthodox and Catholic.
Table of Contents
- Requirements
- Installation
- Usage
- Examples
- Integration with Laravel
- Contributing
Requirements
- PHP >= 8.0
- Composer
Installation
To install the Semantic Date library, use the following Composer command:
Usage
To use the Semantic Date library, first create an instance of the DateConverter class, then call the convert method with the date you want to convert:
You can also pass additional options to the DateConverter constructor, such as custom holidays, excluded date conditions, and a calendar type. The package supports the Orthodox (default) and Catholic calendars. To use a specific calendar, set the calendarType option.
By default, the locale is set to 'en' (English). The library uses the given locale to determine the translations for holidays and other date-related expressions. You can change the default locale by passing it as the second parameter to the DateConverter constructor.
Laravel
To set up on Laravel, follow these steps:
-
Add the service provider to the providers array:
- Add the facade to the aliases array:
Now you can use the SemanticDate facade in your Laravel application:
Examples
Here are some examples of how to use the Semantic Date library:
Basic usage
Custom holidays
Excluding date conditions
Changing calendar type and locale
Custom Easter observation
You can also set the method to 'none'.
Integration with Laravel
To integrate the Semantic Date library with a Laravel application, follow these steps:
-
Publish the configuration and language files using the following Artisan command:
- Modify the published configuration file (config/semantic-date.php) to customize the library behavior, such as default holidays and other settings.
- If you want to add your own custom translations, create a new translations file in your app's lang directory. For example, if you want to add custom translations for the English language, create a semantic-date.php file inside the resources/lang/en directory and add your translations there.
- In your Laravel application, use the Semantic Date library as shown in the Usage and Examples sections. The library will automatically detect the locale set in your Laravel application's configuration (config/app.php). If you want to change the locale for a specific instance of the DateConverter class, pass the desired locale as the second parameter to the constructor:
Contributing
Contributions to the Semantic Date library are welcome! To contribute, please follow these steps:
- Fork the repository on GitHub.
- Create a new branch for your changes.
- Write extensive tests for your changes using the Pest testing framework.
- Submit a pull request with your proposed changes or feature requests.
If you encounter any problems or need assistance, feel free to create an issue or reach out to the maintainers for help.