diff --git a/.github/workflows/laravel-php-8.2-.yml b/.github/workflows/laravel-php-8.2-.yml new file mode 100644 index 0000000..9f30a48 --- /dev/null +++ b/.github/workflows/laravel-php-8.2-.yml @@ -0,0 +1,35 @@ +name: Laravel + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + laravel-tests: + + runs-on: ubuntu-latest + + steps: + - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e + with: + php-version: '8.2' + - uses: actions/checkout@v3 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist + - name: Generate key + run: php artisan key:generate + - name: Directory Permissions + run: chmod -R 777 storage bootstrap/cache + - name: Create Database + run: | + mkdir -p database + touch database/database.sqlite + - name: Execute tests (Unit and Feature tests) via PHPUnit + env: + DB_CONNECTION: sqlite + DB_DATABASE: database/database.sqlite + run: vendor/bin/phpunit diff --git a/composer.json b/composer.json index e15a9aa..dd50634 100644 --- a/composer.json +++ b/composer.json @@ -12,18 +12,30 @@ "name": "palPalani", "email": "palani.p@gmail.com", "role": "Developer" + }, + { + "name": "Thamarai selvan V", + "email": "thamaraiselvan461@gmail.com", + "role": "Developer" } ], "require": { - "php": "^7.4|^8.0", - "guzzlehttp/guzzle": "^7.0", - "illuminate/contracts": "^8.0|^9.0", - "spatie/laravel-package-tools": "^1.4" + "php": "^8.1|^8.2|^8.3", + "illuminate/contracts": "^10.0 | ^11.0", + "guzzlehttp/guzzle": "^7.8", + "spatie/laravel-package-tools": "^1.14.0" }, "require-dev": { - "orchestra/testbench": "^6.0|^7.0", - "phpunit/phpunit": "^9.0", - "vimeo/psalm": "^4.4" + "laravel/pint": "^1.0", + "nunomaduro/collision": "^7.9|^8.1", + "larastan/larastan": "^2.0.1", + "orchestra/testbench": "^8.0|^9.0", + "pestphp/pest": "^2.0", + "pestphp/pest-plugin-arch": "^2.0", + "pestphp/pest-plugin-laravel": "^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0" }, "autoload": { "psr-4": { @@ -41,7 +53,11 @@ "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { - "sort-packages": true + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true, + "phpstan/extension-installer": true + } }, "extra": { "laravel": {