-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from veeqtoh/Upgrade-for-laravel-11-compatibility
Upgrade to Laravel 11.* and PHP 8.* with Code Format Enhancements
- Loading branch information
Showing
51 changed files
with
1,433 additions
and
7,911 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,4 @@ | ||
/.phpunit.cache | ||
/node_modules | ||
/public/build | ||
/public/hot | ||
/public/storage | ||
/storage/*.key | ||
/vendor | ||
/packages/acme/door-access/vendor | ||
.env | ||
.env.backup | ||
.env.production | ||
.phpunit.result.cache | ||
Homestead.json | ||
Homestead.yaml | ||
auth.json | ||
npm-debug.log | ||
yarn-error.log | ||
/.fleet | ||
/.idea | ||
/.vscode | ||
.idea/ | ||
vendor/ | ||
composer.lock | ||
phpcs.xml | ||
/.phpunit.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
preset: laravel |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,74 @@ | ||
{ | ||
"name": "veeqtoh/door-access", | ||
"description": "Secure door access system for Acme Ltd, providing unique and random 6-digit codes for team members, adhering to strict security criteria and efficient code management.", | ||
"description": "A Laravel package for creating secure door access systems, providing unique and random 6-digit codes for team members.", | ||
"type": "library", | ||
"scripts": { | ||
"test": "vendor/bin/phpunit tests" | ||
}, | ||
"homepage": "https://github.com/veeqtoh/door-access", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Victor Ukam", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"veeqtoh", | ||
"victor-ukam", | ||
"door-access", | ||
"secure-access", | ||
"unique-codes", | ||
"persistent-codes", | ||
"random-code-allocation", | ||
"clock-in", | ||
"clock-out", | ||
"palindrome", | ||
"repeated characters", | ||
"unique characters", | ||
"laravel", | ||
"laravel-package" | ||
], | ||
"require": { | ||
"php": "^8.1.2", | ||
"laravel/framework": "^8.0", | ||
"ramsey/uuid": "^4.0" | ||
"php": "^8.1", | ||
"nesbot/carbon": "^2.0|^3.0", | ||
"illuminate/container": "^10.0|^11.0", | ||
"illuminate/database": "^10.0|^11.0", | ||
"ramsey/uuid": "^4.0", | ||
"ashallendesign/laravel-config-validator": "^2.6.1" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.0", | ||
"mockery/mockery": "^1.0", | ||
"filp/whoops": "^2.0", | ||
"friendsofphp/php-cs-fixer": "^3.0", | ||
"squizlabs/php_codesniffer": "^3.6", | ||
"phpunit/php-code-coverage": "^9.0" | ||
"orchestra/testbench": "^8.0|^9.0", | ||
"phpunit/phpunit": "^10.0|^11.0", | ||
"larastan/larastan": "^2.0", | ||
"pestphp/pest-plugin-laravel": "^2.3" | ||
}, | ||
"license": "MIT", | ||
"autoload": { | ||
"psr-4": { | ||
"Veeqtoh\\DoorAccess\\": "src/" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Victor Ukam", | ||
"email": "[email protected]" | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Veeqtoh\\DoorAccess\\Tests\\": "tests/" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Veeqtoh\\DoorAccess\\DoorAccessServiceProvider" | ||
] | ||
"Veeqtoh\\DoorAccess\\Providers\\DoorAccessProvider" | ||
], | ||
"aliases": { | ||
"DoorAccess": "Veeqtoh\\DoorAccess\\Facades\\DoorAccess" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/pest" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"allow-plugins": { | ||
"pestphp/pest-plugin": true | ||
} | ||
} | ||
} |
Oops, something went wrong.