Skip to content

Commit 589b69f

Browse files
committed
Changed repo ownership to tylercd100
1 parent 2b91b12 commit 589b69f

File tree

8 files changed

+27
-20
lines changed

8 files changed

+27
-20
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22

33
All notable changes to `laravel-validator-color` will be documented in this file.
44

5+
### 2.0.0
6+
- Changing repository ownership to 'tylercd100'
7+
58
### 1.0.0
69
- Initial release and connected with packagist

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Zenapply
3+
Copyright (c) 2017 Tylercd100
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
# Validate colors with Laravel 5
2-
[![Latest Version](https://img.shields.io/github/release/zenapply/laravel-validator-color.svg?style=flat-square)](https://github.com/zenapply/laravel-validator-color/releases)
2+
[![Latest Version](https://img.shields.io/github/release/tylercd100/laravel-validator-color.svg?style=flat-square)](https://github.com/tylercd100/laravel-validator-color/releases)
33
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
4-
[![Build Status](https://travis-ci.org/zenapply/laravel-validator-color.svg?branch=master)](https://travis-ci.org/zenapply/laravel-validator-color)
5-
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/zenapply/laravel-validator-color/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/zenapply/laravel-validator-color/?branch=master)
6-
[![Code Coverage](https://scrutinizer-ci.com/g/zenapply/laravel-validator-color/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/zenapply/laravel-validator-color/?branch=master)
4+
[![Build Status](https://travis-ci.org/tylercd100/laravel-validator-color.svg?branch=master)](https://travis-ci.org/tylercd100/laravel-validator-color)
5+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/tylercd100/laravel-validator-color/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/tylercd100/laravel-validator-color/?branch=master)
6+
[![Code Coverage](https://scrutinizer-ci.com/g/tylercd100/laravel-validator-color/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/tylercd100/laravel-validator-color/?branch=master)
77
[![Dependency Status](https://www.versioneye.com/user/projects/56f3252c35630e0029db0187/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56f3252c35630e0029db0187)
8-
[![Total Downloads](https://img.shields.io/packagist/dt/zenapply/laravel-validator-color.svg?style=flat-square)](https://packagist.org/packages/zenapply/laravel-validator-color)
8+
[![Total Downloads](https://img.shields.io/packagist/dt/tylercd100/laravel-validator-color.svg?style=flat-square)](https://packagist.org/packages/tylercd100/laravel-validator-color)
99

1010
This package will let you validate that a certain value is a valid CSS color string.
1111

1212
## Installation
1313

1414
Install via [composer](https://getcomposer.org/) - In the terminal:
1515
```bash
16-
composer require zenapply/laravel-validator-color
16+
composer require tylercd100/laravel-validator-color
1717
```
1818

1919
Now add the following to the `providers` array in your `config/app.php`
2020
```php
21-
Zenapply\Validator\Providers\ColorValidatorServiceProvider::class
21+
Tylercd100\Validator\Providers\ColorValidatorServiceProvider::class
2222
```
2323

2424
## Usage

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "zenapply/laravel-validator-color",
2+
"name": "tylercd100/laravel-validator-color",
33
"description": "Validate that a certain value is a valid CSS color string in Laravel 5",
44
"keywords": [
55
"laravel",
66
"validator",
77
"color",
88
"tylercd100",
9-
"zenapply"
9+
"tylercd100"
1010
],
11-
"homepage": "https://github.com/zenapply/laravel-validator-color",
11+
"homepage": "https://github.com/tylercd100/laravel-validator-color",
1212
"license": "MIT",
1313
"authors": [
1414
{
@@ -18,12 +18,12 @@
1818
],
1919
"autoload":{
2020
"psr-4":{
21-
"Zenapply\\Validator\\":"src/"
21+
"Tylercd100\\Validator\\":"src/"
2222
}
2323
},
2424
"autoload-dev": {
2525
"psr-4": {
26-
"Zenapply\\Validator\\Tests\\": "tests/"
26+
"Tylercd100\\Validator\\Tests\\": "tests/"
2727
}
2828
},
2929
"minimum-stability": "stable",

src/Providers/ColorValidatorServiceProvider.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
<?php namespace Zenapply\Validator\Providers;
1+
<?php
2+
3+
namespace Tylercd100\Validator\Providers;
24

35
use Illuminate\Support\ServiceProvider;
4-
use Zenapply\Validator\Validators\ColorValidator;
6+
use Tylercd100\Validator\Validators\ColorValidator;
57

68
class ColorValidatorServiceProvider extends ServiceProvider
79
{

src/Validators/ColorValidator.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php namespace Zenapply\Validator\Validators;
1+
<?php
2+
3+
namespace Tylercd100\Validator\Validators;
24

35
class ColorValidator {
46

tests/ColorValidatorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Zenapply\Validator\Tests;
3+
namespace Tylercd100\Validator\Tests;
44

55
use Validator;
6-
use Zenapply\Validator\Validators\ColorValidator;
6+
use Tylercd100\Validator\Validators\ColorValidator;
77

88
class ColorValidatorTest extends TestCase
99
{

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Zenapply\Validator\Tests;
3+
namespace Tylercd100\Validator\Tests;
44

55
use Orchestra\Testbench\TestCase as Orchestra;
66

@@ -24,7 +24,7 @@ public function tearDown()
2424
*/
2525
protected function getPackageProviders($app)
2626
{
27-
return ['Zenapply\Validator\Providers\ColorValidatorServiceProvider'];
27+
return ['Tylercd100\Validator\Providers\ColorValidatorServiceProvider'];
2828
}
2929

3030
/**

0 commit comments

Comments
 (0)