Skip to content

Commit

Permalink
Merge pull request #12 from neighborhoods/master
Browse files Browse the repository at this point in the history
merge master into 3.x.x
  • Loading branch information
rhift committed Jul 26, 2018
2 parents 98a6798 + d87adff commit 444a196
Show file tree
Hide file tree
Showing 50 changed files with 1,693 additions and 606 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
vendor/
!example/vendor/neighborhoods/kojo
.composer/
phpunit.xml
phpunit.xml
.idea/
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ A distributed task manager.
### Example usage
```bash
$ bin/kojo process:pool:server:start $PWD/example
```
```

### Setting up a Worker.
16 changes: 10 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@
"name": "neighborhoods/kojo",
"type": "library",
"description": "Neighborhoods Kōjō is a distributed task manager.",
"license": "proprietary",
"license": "MIT",
"keywords": [],
"authors": [
{
"name": "Brad Wilson",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"repositories": [
{
"type": "composer",
Expand All @@ -28,20 +31,21 @@
"symfony/finder": "^4.0",
"zendframework/zend-db": "^2.8",
"dragonmantank/cron-expression": "^2.0",
"neighborhoods/pylon": "^1.0",
"doctrine/dbal": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpunit/dbunit": "^4.0",
"neighborhoods/scaffolding": "^1.0"
"phpunit/dbunit": "^4.0"
},
"bin": [
"bin/kojo"
"bin/kojo",
"scaffolding/bin/scaffolding.php"
],
"autoload": {
"psr-4": {
"Neighborhoods\\Kojo\\": "src"
"Neighborhoods\\Kojo\\": "src",
"Neighborhoods\\Scaffolding\\": "scaffolding/src",
"Neighborhoods\\Pylon\\": "pylon/src"
}
},
"autoload-dev": {
Expand Down
Loading

0 comments on commit 444a196

Please sign in to comment.