Skip to content

Commit

Permalink
Merge pull request #37 from heiglandreas/addSessionize
Browse files Browse the repository at this point in the history
Add Sessionize-Data
  • Loading branch information
heiglandreas authored Feb 3, 2020
2 parents ceb6fa4 + 13d18da commit e3e8624
Show file tree
Hide file tree
Showing 42 changed files with 2,767 additions and 425 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[*]
end_of_line = lf
indent_size = 4
indent_style = space

[{*.js, *.json}]
indent_size = 2
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@ sudo: false
language: php

php:
- 7.1
- 7.2
- 7.3
- 7.4
- nightly

matrix:
fast_finish: true
allow_failures:
- php: nightly
- php: 7.1

stages:
- check
Expand Down
1 change: 1 addition & 0 deletions bin/callingallpapers
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use Symfony\Component\Console\Application;
$app = new Application();
$app->add(new \Callingallpapers\Command\ParseEvents());
$app->add(new \Callingallpapers\Command\ParseEventsConfsTech());
$app->add(new \Callingallpapers\Subcommands\Sessionize\Command());
$app->add(new \Callingallpapers\Command\NotifyClosingCfps());

$app->run();
100 changes: 59 additions & 41 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,62 @@
{
"name": "callingallpapers/cli",
"desciption" : "A CLI to fetch as many CfPs as possible for callingallpapers.com",
"type": "project",
"authors" : [{
"name" : "Andreas Heigl",
"email" : "andreas@heigl.org",
"homepage" : "https://andreas.heigl.org",
"role" : "Developer"
}],
"support" : {
"email" : "support@callingallpapers.com",
"irc" : "irc://irc.freenode.org/joindin",
"issues" : "https://github.com/joindin/callingallpapers-cli/issues",
"source" : "https://github.com/joindin/callingallpapers-cli"
},
"keywords" : ["cfp", "cli", "parser", "callingallpapers"],
"homepage" : "https://callingallpapers.com",
"license" : "MIT",
"require": {
"symfony/console": "^2.7",
"org_heigl/trait-iterator": "^1.0",
"guzzlehttp/guzzle": "^6.2",
"guzzlehttp/oauth-subscriber": "^0.3.0",
"ivopetkov/html5-dom-document-php": "^0.5.5"
},
"autoload": {
"psr-4": {
"Callingallpapers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CallingallpapersTest\\Cli\\": "tests/"
}
},
"require-dev": {
"phing/phing": "^2.14",
"mockery/mockery": "^0.9.9",
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^7.2",
"phpunit/dbunit": "^4.0"
"name": "callingallpapers/cli",
"description": "A CLI to fetch as many CfPs as possible for callingallpapers.com",
"type": "project",
"authors": [
{
"name": "Andreas Heigl",
"email": "andreas@heigl.org",
"homepage": "https://andreas.heigl.org",
"role": "Developer"
}
],
"support": {
"email": "support@callingallpapers.com",
"irc": "irc://irc.freenode.org/joindin",
"issues": "https://github.com/joindin/callingallpapers-cli/issues",
"source": "https://github.com/joindin/callingallpapers-cli"
},
"keywords": [
"cfp",
"cli",
"parser",
"callingallpapers"
],
"homepage": "https://callingallpapers.com",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"symfony/console": "^2.7",
"org_heigl/trait-iterator": "^1.0",
"guzzlehttp/guzzle": "^6.2",
"guzzlehttp/oauth-subscriber": "^0.3.0",
"ivopetkov/html5-dom-document-php": "^0.5.5"
},
"autoload": {
"psr-4": {
"Callingallpapers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CallingallpapersTest\\Cli\\": "tests/"
}
},
"require-dev": {
"phing/phing": "^2.14",
"mockery/mockery": "^1.2",
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^8.0"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs": "vendor/bin/phpcs",
"csfix": "vendor/bin/phpcbf"
}
}
Loading

0 comments on commit e3e8624

Please sign in to comment.