Skip to content

Apply fixes from StyleCI #6

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

Closed
wants to merge 2 commits into from
Closed
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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[![Scrutinizer](https://img.shields.io/scrutinizer/g/laravel-validation-rules/timezone.svg)]()
[![Travis](https://img.shields.io/travis/laravel-validation-rules/timezone.svg)]()
[![Packagist](https://img.shields.io/packagist/dt/laravel-validation-rules/timezone.svg)]()
[![Github All Releases](https://img.shields.io/github/downloads/laravel-validation-rules/timezone/total.svg)]()
[![Scrutinizer](https://img.shields.io/scrutinizer/g/ssx/php-ssh-keypairs.svg)]()
[![Travis](https://img.shields.io/travis/ssx/php-ssh-keypairs.svg)]()
[![Packagist](https://img.shields.io/packagist/dt/ssx/php-ssh-keypairs.svg)]()
[![Github All Releases](https://img.shields.io/github/downloads/ssx/php-ssh-keypairs/total.svg)]()

# Laravel Validator Rules - Timezone
# PHP RSA/SSH Key-pair Generator

This rule will validate that a given timezone is valid within the systems datetime database.
This package will generate RSA/SSH key-pairs.

### License
This project is licensed under an Apache 2.0 license which you can find
[in this LICENSE](https://github.com/laravel-validation-rules/timezone/blob/master/LICENSE).
[in this LICENSE](https://github.com/ssx/php-ssh-keypairs/blob/master/LICENSE).


### Feedback
Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "laravel-validation-rules/timezone",
"description": "Validate that a given timezone is valid.",
"name": "ssx/php-ssh-keypairs",
"description": "Simple wrapper to generate RSA/SSH keypairs.",
"type": "library",
"keywords": [ "laravel", "validation" ],
"keywords": [ "ssh", "keys", "rsa" ],
"license": "Apache-2.0",
"authors": [
{
Expand All @@ -12,20 +12,19 @@
}
],
"require": {
"illuminate/validation": "^5.5",
"illuminate/translation": "^5.5"
"phpseclib/phpseclib": "2.0.6"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"LVR\\Timezone\\": "src/"
"SSX\\SSH\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LVR\\Timezone\\Tests\\": "tests/"
"SSX\\SSH\\Tests\\": "tests/"
}
},
"scripts": {
Expand Down
Loading