Skip to content

Commit

Permalink
Remove extra PHP config, will it now run on 8.0?
Browse files Browse the repository at this point in the history
  • Loading branch information
codecop committed Jun 8, 2024
1 parent f46ba22 commit 65049f2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5,033 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/php-simple-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ jobs:
php-version: ${{ matrix.php-version }}

- name: Set up dependencies
run: |
composer update
composer install
run: composer update

- name: Test
run: ./vendor/bin/phpunit
15 changes: 0 additions & 15 deletions php-simple/.editorconfig

This file was deleted.

2 changes: 1 addition & 1 deletion php-simple/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/vendor
composer.lock
/.idea
Homestead.json
Homestead.yaml

24 changes: 8 additions & 16 deletions php-simple/composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
{
"name": "laravel/lumen",
"description": "The Laravel Lumen Framework.",
"keywords": ["framework", "laravel", "lumen"],
"license": "MIT",
"name": "codecop/lift-pass-pricing",
"type": "project",
"require": {
"php": ">=7.1.3",
"laravel/lumen-framework": "5.8.*"
"php": ">=7.3.0",
"laravel/lumen-framework": "8.3.*"
},
"require-dev": {
"fzaninotto/faker": "^1.4",
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.0"
"phpunit/phpunit": "9.6.*",
"mockery/mockery": "1.6.*"
},
"autoload": {
"classmap": [
Expand All @@ -28,15 +25,10 @@
]
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
"test": "phpunit",
"tests": "phpunit"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
Loading

0 comments on commit 65049f2

Please sign in to comment.