Skip to content

Commit

Permalink
feat(session): version 0.1 , session framework
Browse files Browse the repository at this point in the history
  • Loading branch information
SolaTyolo committed Dec 2, 2021
1 parent 52ea518 commit e7775f2
Show file tree
Hide file tree
Showing 10 changed files with 455 additions and 522 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
vendor/
.DS_store
.idea
.phpunit.*
.phpunit.*
.coverage
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
CuePhp-Seesion

+ Session Global Manager( id generator, Cookie Path, eg)
+ Session Store Handler
+ Session Service Provider


// Session_Manager::buildSession();
// (new Session()) -> bind()->start();
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"license": "MIT",
"version": "0.1.0",
"require": {
"php": "^7.1 || ^8.0"
"php": "^7.1 | ^8.0",
"symfony/filesystem": "^5.4",
"illuminate/cache": "^8.74"
},
"autoload": {
"psr-4": {
Expand All @@ -23,6 +25,9 @@
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"vlucas/phpdotenv":"loads environment var from .env file"
},
"scripts": {
"fix": [
"./vendor/bin/phpcbf --standard=PSR2 src"
Expand All @@ -31,7 +36,7 @@
"./vendor/bin/phpstan analyse src"
],
"unit-test": [
"./vendor/bin/phpunit"
"php vendor/phpunit/phpunit/phpunit --coverage-clover ./.coverage/clover.xml --verbose"
]
}
}
Loading

0 comments on commit e7775f2

Please sign in to comment.