Skip to content

Commit

Permalink
Add missing phpunit dependency.
Browse files Browse the repository at this point in the history
Attempt to fix scrutinizer.
  • Loading branch information
bummzack committed Mar 1, 2018
1 parent 091915d commit c8a845a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
17 changes: 10 additions & 7 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
inherit: true

tools:
external_code_coverage: false

checks:
php:
code_rating: true
duplication: true
php: true

build:
nodes:
analysis:
tests:
override: [php-scrutinizer-run]

filter:
paths: [src/*, tests/*]
paths:
- src/*
- tests/*
10 changes: 9 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
"name": "bummzack/sortablefile",
"description": "An extension for SilverStripe 4 that adds sorting to UploadField.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "CMS", "sortable", "file"],
"keywords": [
"silverstripe",
"CMS",
"sortable",
"file"
],
"license": "BSD-3-Clause",
"authors": [
{
Expand All @@ -12,6 +17,9 @@
"require": {
"silverstripe/asset-admin": "1.1.x-dev"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
Expand Down

0 comments on commit c8a845a

Please sign in to comment.