Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 1808a7b

Browse files
committed
chore: initial commit
1 parent 7da4127 commit 1808a7b

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/composer.lock
2+
/composer.phar
3+
/phpunit.xml
4+
/.phpunit.result.cache
5+
/vendor/
6+
/logs/
7+
/.idea
8+
/index.php

composer.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "programmatordev/yet-another-php-validator",
3+
"description": "PHP Validator",
4+
"type": "library",
5+
"keywords": ["PHP", "Validator", "Validation"],
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "André Pimpão",
10+
"email": "[email protected]",
11+
"homepage": "https://programmator.dev/"
12+
}
13+
],
14+
"require": {
15+
"php": ">=8.1"
16+
},
17+
"require-dev": {
18+
"phpunit/phpunit": "^10.0"
19+
},
20+
"autoload": {
21+
"psr-4": {
22+
"ProgrammatorDev\\YetAnotherPhpValidator\\": "src/"
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
"ProgrammatorDev\\YetAnotherPhpValidator\\Test\\": "tests/"
28+
}
29+
},
30+
"config": {
31+
"optimize-autoloader": true,
32+
"sort-packages": true
33+
}
34+
}

0 commit comments

Comments
 (0)