Skip to content

Commit

Permalink
Merge pull request #6 from publicwhip/rb-0.4.4
Browse files Browse the repository at this point in the history
Milestone 0.4.4
  • Loading branch information
rbairwell authored Mar 22, 2019
2 parents b690116 + 1f52675 commit ef8583b
Show file tree
Hide file tree
Showing 64 changed files with 4,659 additions and 1,373 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- run:
name: Checking composer.lock
command: composer validate --no-check-all --strict

# Download and cache dependencies
- restore_cache:
keys:
Expand Down
1 change: 1 addition & 0 deletions .idea/PublicWhipV2.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/file.template.settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 36 additions & 8 deletions .phpstorm.meta.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,40 @@
<?php
namespace PHPSTORM_META
{
$STATIC_METHOD_TYPES = [
\Psr\Container\ContainerInterface::get('') => [
"" == "@",
],
\DI\Container::get('') => [
"" == "@",
],
];
override(
\Psr\Container\ContainerInterface::get(0),
map([
'' => '@',
])
);
override(
\DI\Container::get(0),
map([
'' => '@',
])
);
override(
\PHPUnit\Framework\TestCase::createMock(0),
map([
'' => '@|\PHPUnit\Framework\MockObject\MockObject',
])
);
override(
\PHPUnit\Framework\TestCase::getMockForAbstractClass(0),
map([
'' => '@|\PHPUnit\Framework\MockObject\MockObject',
])
);
override(
\PHPUnit_Framework_TestCase::createMock(0),
map([
'' => '@|\PHPUnit_Framework_MockObject_MockObject',
])
);
override(
\PHPUnit_Framework_TestCase::getMockForAbstractClass(0),
map([
'' => '@|\PHPUnit_Framework_MockObject_MockObject',
])
);
}
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"ext-json": "*",
"ext-pdo": "*",
"ext-sodium": "*",
"ext-ctype": " *",
"erusev/parsedown": "^1.7",
"illuminate/container": "^5.8",
"illuminate/contracts": "^5.8",
Expand Down Expand Up @@ -38,6 +39,7 @@
"phpmd/phpmd": "^2",
"phpro/grumphp": "^0.15",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-deprecation-rules": "^0.11.0",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^8",
Expand All @@ -51,10 +53,9 @@
"scripts": {
"phpcs": "phpcs --standard=./phpcs.xml -s",
"test": "phpunit",
"format-code": "php-cs-fixer fix --allow-risky=yes",
"phpstan": "phpstan analyse -l 7 -c ./phpstan.neon src ./src ./tests",
"phpcbf": "phpcbf --standard=./phpcs.xml ./src",
"phpmd": "phpmd ./src,./tests text ./phpmd.xml",
"phpstan": "phpstan analyse -l 7 -c ./phpstan.neon src",
"phpcbf": "phpcbf --standard=./phpcs.xml",
"phpmd": "phpmd src/,tests/ text ./phpmd.xml",
"grumphp": "grumphp run"
},
"license": "MIT",
Expand Down
99 changes: 73 additions & 26 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Internally, it has the following images:
The alpine images can be access via ssh using:

`docker exec -it publicwhip-nginx /bin/ash`
`docker exec -it publicwhip-php /bin/ash`

whilst the others can be accessed using

Expand Down
1 change: 1 addition & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ services:
container_name: publicwhip-nginx
ports:
- "80:80"
- "81:81"
- "443:443"
volumes:
- ../:/data/
Expand Down
Loading

0 comments on commit ef8583b

Please sign in to comment.