Skip to content

Commit c621300

Browse files
committed
first
0 parents  commit c621300

File tree

8 files changed

+3624
-0
lines changed

8 files changed

+3624
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/vendor
2+
/.idea
3+
coverage.xml

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Colour
2+
3+
<p align="center">
4+
<a href="https://github.com/laravel-validation-rules/colour/blob/master/LICENSE">
5+
<img src="https://img.shields.io/github/license/laravel-validation-rules/colour.svg?style=flat-square">
6+
</a>
7+
<a href="https://twitter.com/clarkeash">
8+
<img src="http://img.shields.io/badge/[email protected]?style=flat-square">
9+
</a>
10+
</p>

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "laravel-validation-rules/colour",
3+
"descrption": "validate colours",
4+
"type": "library",
5+
"keywords": [ "laravel", "validation" ],
6+
"require": {
7+
"illuminate/contracts": "^5.5"
8+
},
9+
"require-dev": {
10+
"orchestra/testbench": "^3.5",
11+
"phpunit/phpunit": "^6.3"
12+
},
13+
"license": "Apache-2.0",
14+
"authors": [
15+
{
16+
"name": "Ashley Clarke",
17+
"email": "[email protected]"
18+
}
19+
],
20+
"autoload": {
21+
"psr-4": {
22+
"LVR\\Colour\\": "src/"
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
"LVR\\Colour\\Tests\\": "tests/"
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)