Skip to content

Commit

Permalink
Merge pull request #1 from fabis94/fabians.geikins/php-8
Browse files Browse the repository at this point in the history
PHP8 update + local env stuff
  • Loading branch information
fabis94 authored Sep 22, 2021
2 parents 55879b5 + dff925e commit 299d2be
Show file tree
Hide file tree
Showing 10 changed files with 1,011 additions and 1,525 deletions.
910 changes: 910 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.idea/
/vendor/
/.vscode/
/.vscode/
composer.lock
53 changes: 28 additions & 25 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
{
"name": "fabis94/php-twiddle",
"description": "The Chase's Twiddle algorithm rewritten in PHP that returns all combinations of m out of n objects.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fabis94",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fabis94\\Twiddle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php":"^7.0"
},
"require-dev": {
"phpunit/phpunit": "^6"
"name": "fabis94/php-twiddle",
"description": "The Chase's Twiddle algorithm rewritten in PHP that returns all combinations of m out of n objects.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fabis94",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fabis94\\Twiddle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"scripts": {
"test": "phpunit tests/"
}
}
Loading

0 comments on commit 299d2be

Please sign in to comment.