-
Notifications
You must be signed in to change notification settings - Fork 2
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 #10 from recoilphp/php-8
Update to build under PHP 8
- Loading branch information
Showing
4 changed files
with
1,336 additions
and
533 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
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,46 +1,68 @@ | ||
{ | ||
"name": "recoil/kernel", | ||
"description": "Reusable components for implementing Recoil kernels.", | ||
"require": { | ||
"php": "^7.1", | ||
"icecave/repr": "^4|^3|^2", | ||
"recoil/api": "^1" | ||
"name": "recoil/kernel", | ||
"description": "Reusable components for implementing Recoil kernels.", | ||
"require": { | ||
"php": ">=7.4", | ||
"icecave/repr": "^4|^3|^2", | ||
"recoil/api": "^1.0.2" | ||
}, | ||
"require-dev": { | ||
"eloquent/phony": "^5", | ||
"friendsofphp/php-cs-fixer": "^2", | ||
"hamcrest/hamcrest-php": "^2", | ||
"peridot-php/leo": "dev-php-8 as 1.999.999", | ||
"peridot-php/peridot": "dev-php-8 as 1.999.999", | ||
"peridot-php/peridot-code-coverage-reporters": "dev-php-8 as 2.999.999" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/recoilphp/leo" | ||
}, | ||
"require-dev": { | ||
"eloquent/phony": "^3.2", | ||
"friendsofphp/php-cs-fixer": "^2", | ||
"hamcrest/hamcrest-php": "^2", | ||
"peridot-php/leo": "^1", | ||
"peridot-php/peridot-code-coverage-reporters": "^2", | ||
"peridot-php/peridot": "^1" | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/recoilphp/peridot" | ||
}, | ||
"autoload": { "psr-4": { "Recoil\\Kernel\\": "src" } }, | ||
"autoload-dev": { "psr-4": { "Recoil\\Kernel\\": "test/src" } }, | ||
"keywords": [ | ||
"coroutine", | ||
"generator", | ||
"event", | ||
"async", | ||
"asynchronous", | ||
"react", | ||
"green", | ||
"thread", | ||
"multitasking", | ||
"continuation" | ||
], | ||
"homepage": "https://github.com/recoilphp/kernel", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "James Harris", | ||
"email": "james.harris@icecave.com.au", | ||
"homepage": "https://github.com/jmalloc" | ||
} | ||
], | ||
"config": { | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.1" | ||
} | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/recoilphp/peridot-code-coverage-reporters" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Recoil\\Kernel\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Recoil\\Kernel\\": "test/src" | ||
} | ||
}, | ||
"keywords": [ | ||
"coroutine", | ||
"generator", | ||
"event", | ||
"async", | ||
"asynchronous", | ||
"react", | ||
"green", | ||
"thread", | ||
"multitasking", | ||
"continuation" | ||
], | ||
"homepage": "https://github.com/recoilphp/kernel", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "James Harris", | ||
"email": "james.harris@icecave.com.au", | ||
"homepage": "https://github.com/jmalloc" | ||
} | ||
], | ||
"config": { | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.4" | ||
} | ||
} | ||
} |
Oops, something went wrong.