Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ramazancetinkaya/seconds-converter
A PHP library to convert seconds into minutes, hours, and days.
https://github.com/ramazancetinkaya/seconds-converter
php php8 seconds-converter
Last synced: 15 days ago
JSON representation
A PHP library to convert seconds into minutes, hours, and days.
- Host: GitHub
- URL: https://github.com/ramazancetinkaya/seconds-converter
- Owner: ramazancetinkaya
- License: mit
- Created: 2024-04-10T10:29:45.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-27T16:38:32.000Z (9 months ago)
- Last Synced: 2024-11-23T21:08:50.932Z (2 months ago)
- Topics: php, php8, seconds-converter
- Language: PHP
- Homepage:
- Size: 10.7 KB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Seconds Converter
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![GitHub issues](https://img.shields.io/github/issues/ramazancetinkaya/seconds-converter)](https://github.com/ramazancetinkaya/seconds-converter/issues)
[![GitHub stars](https://img.shields.io/github/stars/ramazancetinkaya/seconds-converter)](https://github.com/ramazancetinkaya/seconds-converter/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/ramazancetinkaya/seconds-converter)](https://github.com/ramazancetinkaya/seconds-converter/network)Seconds Converter is a PHP library designed to simplify the conversion of seconds into various time units such as minutes, hours, and days. It provides a convenient and easy-to-use interface for developers to integrate time conversion functionality into their projects.
## Table of Contents
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
- [Copyright](#copyright)## Installation
### Composer
You can install the library via [Composer](https://getcomposer.org/), a dependency manager for PHP. Make sure you have Composer installed on your system. If not, you can follow the [official installation guide](https://getcomposer.org/doc/00-intro.md).
1. Open your terminal or command prompt.
2. Navigate to your project directory.
3. Run the following command to add `Seconds Converter` to your project's dependencies:
```bash
composer require ramazancetinkaya/seconds-converter
```
Composer will download and install the library and its dependencies into your project's vendor directory.### Manual Installation
If you prefer not to use Composer, you can manually include the library in your project:
1. **Download:** Download the latest release from the [GitHub releases page](https://github.com/ramazancetinkaya/seconds-converter/releases).
2. **Extract:** Extract the downloaded ZIP file.
3. **Copy Files:** Copy the contents of the `src` directory into your project's desired location.## Usage
```php
convert(123456); // Output: "1 days, 10 hours, 17 minutes, 36 seconds"
} catch (InvalidArgumentException $e) {
echo "Error: " . $e->getMessage();
}?>
```## Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or create a pull request.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Copyright
© 2024 Ramazan Çetinkaya. All rights reserved.