-
- Downloads
init & alpha version
parents
No related branches found
No related tags found
Showing
- .gitignore 38 additions, 0 deletions.gitignore
- README.md 82 additions, 0 deletionsREADME.md
- composer.json 48 additions, 0 deletionscomposer.json
- lupinus.iml 59 additions, 0 deletionslupinus.iml
- src/AuthService.php 190 additions, 0 deletionssrc/AuthService.php
- src/Cache/CacheService.php 34 additions, 0 deletionssrc/Cache/CacheService.php
- src/Cache/Drivers/.gitignore 2 additions, 0 deletionssrc/Cache/Drivers/.gitignore
- src/Cache/Drivers/BeDriver.php 20 additions, 0 deletionssrc/Cache/Drivers/BeDriver.php
- src/Cache/Drivers/JsonDriver.php 86 additions, 0 deletionssrc/Cache/Drivers/JsonDriver.php
- src/Exceptions/LupinusException.php 31 additions, 0 deletionssrc/Exceptions/LupinusException.php
- tests/AuthServiceTest.php 36 additions, 0 deletionstests/AuthServiceTest.php
.gitignore
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "shadoll/lupinus", | |||
"description": "OAuth2 library", | |||
"type": "library", | |||
"license": "MIT", | |||
"homepage": "https://fabrika-klientov.com", | |||
"authors": [ | |||
{ | |||
"name": "sHa", | |||
"email": "sha@shadoll.dev", | |||
"homepage": "https://shadoll.dev", | |||
"role": "Lead Developer" | |||
}, | |||
{ | |||
"name": "Andrew", | |||
"email": "3oosor@gmail.com", | |||
"homepage": "https://github.com/oosor", | |||
"role": "Developer" | |||
} | |||
], | |||
"require": { | |||
"php": ">=7.2", | |||
"guzzlehttp/guzzle": "^6.3" | |||
}, | |||
"require-dev": { | |||
"phpunit/phpunit": "^8", | |||
"phpstan/phpstan": "^0.12", | |||
"phpstan/phpstan-strict-rules": "^0.12", | |||
"phpstan/phpstan-phpunit": "^0.12", | |||
"sebastian/phpcpd": "^4.1" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"Lupinus\\": "src/" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"psr-4": { | |||
"Tests\\": "tests/" | |||
} | |||
}, | |||
"scripts": { | |||
"test": "@php ./vendor/bin/phpunit --no-coverage", | |||
"phpstan": "@php ./vendor/bin/phpstan analyze --ansi --level=8 ./src", | |||
"phpcpd": "@php ./vendor/bin/phpcpd src/ --min-lines=10" | |||
} | |||
} | |||
\ No newline at end of file |
lupinus.iml
0 → 100644
src/AuthService.php
0 → 100644
src/Cache/CacheService.php
0 → 100644
src/Cache/Drivers/.gitignore
0 → 100644
src/Cache/Drivers/BeDriver.php
0 → 100644
src/Cache/Drivers/JsonDriver.php
0 → 100644
src/Exceptions/LupinusException.php
0 → 100644
tests/AuthServiceTest.php
0 → 100644
Please register or sign in to comment