Skip to content

Commit

Permalink
Merge pull request #21 from BrandEmbassy/php7.1
Browse files Browse the repository at this point in the history
Php7.2
  • Loading branch information
Petr Hejna authored Oct 1, 2018
2 parents 1053e17 + 8242453 commit 554551f
Show file tree
Hide file tree
Showing 28 changed files with 320 additions and 3,146 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- ./vendor
key: v1-dependencies-{{ checksum "composer.json" }}

- run: composer phpcs
- run: composer phpstan

- run: composer test
15 changes: 10 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,25 @@
}
},
"require": {
"php": ">=5.6",
"php": ">=7.2",
"nette/neon": "^2.4",
"slim/slim": "^3.9",
"nette/utils": "^2.5",
"nette/di": "^2.4"
"nette/di": "^2.4",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpunit/phpunit": "^7",
"roave/security-advisories": "dev-master",
"phpstan/phpstan": "^0.9.2",
"mockery/mockery": "^1.0"
"phpstan/phpstan": "^0.10",
"mockery/mockery": "dev-master",
"slevomat/coding-standard": "^4.8",
"phpstan/phpstan-phpunit": "^0.10.0"
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"phpcs": "vendor/bin/phpcs --standard=ruleset.xml src tests --ignore=tests/temp",
"phpcbf": "./vendor/bin/phpcbf --standard=ruleset.xml src tests --ignore=tests/temp",
"phpstan": "vendor/bin/phpstan analyse src tests -l max -c phpstan.neon"
}
}
Loading

0 comments on commit 554551f

Please sign in to comment.