Skip to content

Commit

Permalink
Remove not longer required stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Mar 13, 2024
1 parent dfa3e26 commit b08af9e
Show file tree
Hide file tree
Showing 7 changed files with 1,674 additions and 1,048 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.1"
- "7.2"

dependencies:
- "locked"
Expand Down Expand Up @@ -90,8 +90,6 @@ jobs:
- "7.4"

phpunit-version:
- "6.0.0"
- "7.0.0"
- "8.0.0"
- "9.0.0"

Expand Down Expand Up @@ -157,6 +155,9 @@ jobs:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"

dependencies:
- "locked"
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/.build/
/.notes/
/vendor/
/.php-cs-fixer.php
/.php-cs-fixer.cache
/phpunit.xml
/.phpunit.result.cache
/.phpunit.cache/
38 changes: 19 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,38 @@
{
"name": "jangregor/phpstan-prophecy",
"type": "phpstan-extension",
"description": "Provides a phpstan/phpstan extension for phpspec/prophecy",
"license": "MIT",
"type": "phpstan-extension",
"authors": [
{
"name": "Jan Gregor Emge-Triebel",
"email": "jan@jangregor.me"
}
],
"require": {
"php": "^7.1 || ^8.0",
"php": "^7.2 || ^8.0",
"phpstan/phpstan": "^1.0.0"
},
"conflict": {
"phpspec/prophecy": "<1.7.0,>=2.0.0",
"phpunit/phpunit": "<6.0.0,>=10.0.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.1.1",
"ergebnis/license": "^1.0.0",
"ergebnis/php-cs-fixer-config": "~2.2.0",
"phpspec/prophecy": "^1.7.0",
"phpunit/phpunit": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
"ergebnis/php-cs-fixer-config": "^2.2 || ^3.0 || ^4.0 || ^5.0",
"phpspec/prophecy": "^1.17.0",
"phpunit/phpunit": "^8.0.0 || ^9.0.0"
},
"conflict": {
"phpspec/prophecy": "<1.17.0,>=2.0.0",
"phpunit/phpunit": "<8.0.0,>=10.0.0"
},
"autoload": {
"psr-4": {
"JanGregor\\Prophecy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JanGregor\\Prophecy\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
Expand All @@ -36,15 +46,5 @@
"extension.neon"
]
}
},
"autoload": {
"psr-4": {
"JanGregor\\Prophecy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JanGregor\\Prophecy\\Test\\": "test/"
}
}
}
Loading

0 comments on commit b08af9e

Please sign in to comment.