-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add events, and make lines and tables dumber * test progress bar on table * add some debugging, remove me * remove debug * make table progress bars colourful * progress returns [pos,max,perc] * trigger pool updated event on poll not run * update copyright, 100% coverage * handle exception passthrough * dont require console-diff-renderer * make default bar use ▏characters * copyright * fix composer file * remove PHP_INT_MIN constant * fix examples
- Loading branch information
Harry Bragg
authored
Aug 8, 2018
1 parent
71b5802
commit 6253338
Showing
30 changed files
with
2,208 additions
and
668 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ language: php | |
|
||
dist: trusty | ||
|
||
## Cache composer bits | ||
cache: | ||
directories: | ||
- $HOME/.composer/cache/files | ||
|
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
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,56 +1,58 @@ | ||
{ | ||
"name": "graze/parallel-process", | ||
"description": "run a pool of processes simultaneously", | ||
"keywords": [ | ||
"graze", | ||
"parallel-process" | ||
], | ||
"homepage": "https://github.com/graze/parallel-process", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Harry Bragg", | ||
"email": "harry.bragg@graze.com", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Graze Developers", | ||
"email": "developers@graze.com", | ||
"homepage": "http://www.graze.com", | ||
"role": "Development Team" | ||
} | ||
], | ||
"require": { | ||
"php": "^5.5 | ^7.0", | ||
"symfony/process": "^2.8 | ^3.2 | ^4.0", | ||
"graze/data-structure": "^2.0", | ||
"graze/console-diff-renderer": "^0.6.1" | ||
"name": "graze/parallel-process", | ||
"description": "run a pool of processes simultaneously", | ||
"keywords": [ | ||
"graze", | ||
"parallel-process" | ||
], | ||
"homepage": "https://github.com/graze/parallel-process", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Harry Bragg", | ||
"email": "harry.bragg@graze.com", | ||
"role": "Developer" | ||
}, | ||
"require-dev": { | ||
"mockery/mockery": "^1.0", | ||
"phpunit/phpunit": "^5.7.21|^6|^7", | ||
"squizlabs/php_codesniffer": "^3", | ||
"graze/standards": "^2", | ||
"symfony/console": "^3.1 | ^4" | ||
}, | ||
"suggest": { | ||
"symfony/console": "To use the Table to print current runs" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Graze\\ParallelProcess\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Graze\\ParallelProcess\\Test\\": "tests/src", | ||
"Graze\\ParallelProcess\\Test\\Unit\\": "tests/unit", | ||
"Graze\\ParallelProcess\\Test\\Integration\\": "tests/integration" | ||
} | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "7.2" | ||
} | ||
{ | ||
"name": "Graze Developers", | ||
"email": "developers@graze.com", | ||
"homepage": "http://www.graze.com", | ||
"role": "Development Team" | ||
} | ||
], | ||
"require": { | ||
"php": "^5.5 | ^7.0", | ||
"symfony/process": "^2.8 | ^3.2 | ^4.0", | ||
"graze/data-structure": "^2.0", | ||
"symfony/event-dispatcher": "^2.8 | ^3.2 | ^4.0" | ||
}, | ||
"require-dev": { | ||
"mockery/mockery": "^1.0", | ||
"phpunit/phpunit": "^5.7.21|^6|^7", | ||
"squizlabs/php_codesniffer": "^3", | ||
"graze/standards": "^2", | ||
"symfony/console": "^3.1 | ^4", | ||
"graze/console-diff-renderer": "^0.6.1" | ||
}, | ||
"suggest": { | ||
"symfony/console": "To use the Table to print current runs", | ||
"graze/console-diff-renderer": "required to use Table and Lines" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Graze\\ParallelProcess\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Graze\\ParallelProcess\\Test\\": "tests/src", | ||
"Graze\\ParallelProcess\\Test\\Unit\\": "tests/unit", | ||
"Graze\\ParallelProcess\\Test\\Integration\\": "tests/integration" | ||
} | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "7.2" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.