Skip to content

Commit

Permalink
Milestone/Release 0.3 - Ready for Github push.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbairwell committed Mar 12, 2019
0 parents commit 0467fd0
Show file tree
Hide file tree
Showing 98 changed files with 9,917 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[*]
charset=utf-8
end_of_line=lf
insert_final_newline=false
indent_style=space
indent_size=4

[{.babelrc,.stylelintrc,jest.config,.eslintrc,*.json,*.jsb3,*.jsb2,*.bowerrc}]
indent_style=space
indent_size=2

[{*.cql,*.ddl,*.sql}]
indent_style=space
indent_size=2

[{*.yaml,*.yml}]
indent_style=space
indent_size=2

[{composer.lock,composer.json}]
indent_style=space
indent_size=2

14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.idea
.php_cs.cache
logs/*
!logs/.gitkeep
!logs/README.md
cache/*
!cache/.gitkeep
!cache/README.md
vendor/*
qa/*
!qa/.gitkeep
!qa/README.md
.phpunit.result.cache
!.gitkeep
12 changes: 12 additions & 0 deletions .phpstorm.meta.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
namespace PHPSTORM_META
{
$STATIC_METHOD_TYPES = [
\Psr\Container\ContainerInterface::get('') => [
"" == "@",
],
\DI\Container::get('') => [
"" == "@",
],
];
}
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Bairwell Ltd t/a PublicWhip.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# PublicWhip v2

This HEAVILY UNDER DEVELOPMENT [repository](https://github.com/publicwhip/publicwhipv2) is the home of the
new [PublicWhip](https://www.publicwhip.org.uk) application and website.

It is nowhere near ready for usage at the moment though.

Things that are in place:
* A basic `docker-compose` setup (within the `Docker` folder) enabling you to have a test environment (complete
with test database) setup within a few minutes by running `docker-compose up`.
* Coding standards and base application.

To see what else has been achieved so far, please have a look at the [Milestones](docs/Milestones.md).

If you are considering [Contributing](docs/CONTRIBUTING.md) to the development of PublicWhip v2, please ensure you have
read the [Code of Conduct](docs/CODE_OF_CONDUCT.md) first. All contributions to PublicWhip v2 must be licensed under
the [MIT](LICENSE.txt) license allowing free usage of the code in any form without restriction.
Empty file added cache/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions cache/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is where Twig and other sub-systems store their cache files.
62 changes: 62 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"name": "bairwell/publicwhip",
"description": "Publicwhip v2 website",
"type": "project",
"homepage": "https://www.publicwhip.org.uk/",
"require": {
"php": ">=7.2",
"ext-pdo": "*",
"slim/slim": "^3",
"psr/log": "^1",
"twig/twig": "^2",
"slim/twig-view": "^2",
"monolog/monolog": "^1.24",
"php-di/php-di": "^6.0",
"php-di/slim-bridge": "^2.0",
"psr/http-message": "^1.0",
"psr/container": "^1",
"slim/csrf": "^0.5",
"slim/flash": "^0.1",
"maximebf/debugbar": "^1.15",
"swiftmailer/swiftmailer": "^5.4",
"illuminate/database": "^5.1",
"illuminate/events": "^5.1",
"illuminate/container": "^5.8",
"illuminate/support": "^5.8",
"illuminate/contracts": "^5.8",
"slim/http-cache": "^0.4.0",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^8",
"roave/security-advisories": "dev-master",
"phpstan/phpstan-strict-rules": "^0.11",
"phpmd/phpmd": "^2",
"maglnet/composer-require-checker": "^1",
"phpro/grumphp": "^0.15",
"phpstan/phpstan": "^0.11",
"sensiolabs/security-checker": "^5",
"squizlabs/php_codesniffer": "^3",
"infection/infection": "^0.12",
"sebastian/phpcpd": "^4",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Richard Bairwell",
"email": "team@publicwhip.org.uk"
}
],
"support": {
"issues": "https://github.com/publicwhip/publicwhipv2/issues",
"docs": "https://github.com/publicwhip/publicwhip/tree/master/docs",
"email": "team@publicwhip.org.uk"
},
"autoload": {
"psr-4": {
"PublicWhip\\": "src/"
}
},
"minimum-stability": "stable"
}
Loading

0 comments on commit 0467fd0

Please sign in to comment.