Skip to content

Commit

Permalink
setup package
Browse files Browse the repository at this point in the history
  • Loading branch information
agcodex01 committed May 30, 2024
0 parents commit 10470c3
Show file tree
Hide file tree
Showing 8 changed files with 3,888 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vendor/
30 changes: 30 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "agcodex/enum-helper",
"version": "1.0.0",
"description": "Enum helper methods",
"type": "library",
"require": {
"php": "^8.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Agcodex\\EnumHelper\\": "src/"
}
},
"authors": [
{
"name": "agcodex",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require-dev": {
"pestphp/pest": "3.x-dev"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}
Loading

0 comments on commit 10470c3

Please sign in to comment.