Skip to content

Commit

Permalink
Set up composer defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Firehed committed Feb 5, 2024
1 parent 15bad7e commit b08bddc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "your/library",
"description": "Description of your library",
"name": "snapauth/sdk",
"description": "SnapAuth SDK",
"keywords": [],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Your Name",
"email": "[email protected]"
"name": "Eric Stern",
"email": "[email protected]"
}
],
"config": {
Expand All @@ -16,16 +15,17 @@
},
"autoload": {
"psr-4": {
"Your\\Library\\": "src"
"SnapAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Your\\Library\\": "tests"
"SnapAuth\\": "tests"
}
},
"require": {
"php": "^7.4 || ^8.0"
"php": "^7.4 || ^8.0",
"ext-curl": "*"
},
"require-dev": {
"maglnet/composer-require-checker": "^2.0 || ^3.0 || ^4.0",
Expand Down

0 comments on commit b08bddc

Please sign in to comment.