Skip to content

Commit 10470c3

Browse files
committed
setup package
0 parents commit 10470c3

File tree

8 files changed

+3888
-0
lines changed

8 files changed

+3888
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor/

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "agcodex/enum-helper",
3+
"version": "1.0.0",
4+
"description": "Enum helper methods",
5+
"type": "library",
6+
"require": {
7+
"php": "^8.1"
8+
},
9+
"license": "MIT",
10+
"autoload": {
11+
"psr-4": {
12+
"Agcodex\\EnumHelper\\": "src/"
13+
}
14+
},
15+
"authors": [
16+
{
17+
"name": "agcodex",
18+
"email": "agcodex01@gmail.com"
19+
}
20+
],
21+
"minimum-stability": "dev",
22+
"require-dev": {
23+
"pestphp/pest": "3.x-dev"
24+
},
25+
"config": {
26+
"allow-plugins": {
27+
"pestphp/pest-plugin": true
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)