Skip to content

Commit

Permalink
Set up composer package definition
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsmith committed Feb 18, 2020
1 parent 9d58770 commit 577b1f5
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/composer.lock
/vendor/
37 changes: 37 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "kevinsmith/laravel-samesite-none-compat",
"description": "Provides support for legacy clients when using SameSite=None cookies in Laravel 5.8+",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Kevin Smith",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"laravel-package",
"samesite",
"samesite-cookies",
"cookies",
"compatibility-layer",
"middleware"
],
"autoload": {
"psr-4": {
"KevinSmith\\SameSiteNoneCompat\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KevinSmith\\SameSiteNoneCompat\\Laravel\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.2"
}
}

0 comments on commit 577b1f5

Please sign in to comment.