-
Notifications
You must be signed in to change notification settings - Fork 3
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 #37 from heiglandreas/addSessionize
Add Sessionize-Data
- Loading branch information
Showing
42 changed files
with
2,767 additions
and
425 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[*] | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
[{*.js, *.json}] | ||
indent_size = 2 |
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,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" | ||
} | ||
} |
Oops, something went wrong.