Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marksabbath committed Jul 23, 2019
2 parents 908b41d + b54b79e commit 3a31dce
Show file tree
Hide file tree
Showing 12 changed files with 924 additions and 11,022 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2.1

jobs:
test:
docker:
- image: circleci/php:7.3.3-stretch-node-browsers
steps:
- checkout
- prepare-environment
- run: composer phpcs

commands:
prepare-environment:
description: "Install dependencies."
steps:
- run: composer install

workflows:
version: 2
check-wp-cs:
jobs:
- test
122 changes: 0 additions & 122 deletions Gruntfile.js

This file was deleted.

41 changes: 31 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
{
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^0.13.1",
"wimg/php-compatibility": "^8.0"
},
"scripts": {
"post-update-cmd": [
"./vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs/,vendor/wimg/php-compatibility/"
]
}
"name": "studiopress/genesis-portfolio-pro",
"type": "wordpress-plugin",
"description": "Plugin that add a new Portfolio post type where you can add portfolio entries with images and galleries to show of your visual content.",
"homepage": "https://github.com/studiopress/genesis-portfolio-pro",
"license": "GPL-2.0-or-later",
"require": {
"php": "^5.6 || ^7",
"composer/installers": "^1"
},
"require-dev": {
"php": "^5.6 || ^7",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"squizlabs/php_codesniffer": "^3.3.1",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "^1"
},
"config": {
"sort-order": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpcs": "phpcs --standard=WordPress --ignore=vendor/,node_modules/,assets/ --extensions=php -p ./",
"phpcs-compat": "phpcs --extensions=php --standard=PHPCompatibilityWP --ignore=vendor/,node_modules/,assets/ --runtime-set testVersion 5.6- -p ./",
"phpcbf": "phpcbf --standard=WordPress --ignore=vendor/,node_modules/,assets/ --extensions=php -p ./"
},
"support": {
"issues": "https://github.com/studiopress/genesis-portfolio-pro/issues",
"source": "https://github.com/studiopress/genesis-portfolio-pro"
}
}

Loading

0 comments on commit 3a31dce

Please sign in to comment.