From 8e97de7700b42e0bebc9cd7dae64088237f300bc Mon Sep 17 00:00:00 2001 From: Aaron Gerig Date: Fri, 22 Dec 2017 15:48:23 +0100 Subject: [PATCH] Code style and adjust copyright --- LICENSE.md | 2 +- README.md | 2 +- composer.json | 27 +++++++++++++++------------ deploy.sample.php | 20 ++++++++++++++------ recipes/npm.php | 15 ++++++++++++++- recipes/pimcore.php | 12 +++++++++++- recipes/yarn.php | 14 ++++++++++++-- 7 files changed, 68 insertions(+), 24 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 150b229..a918d19 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,5 +1,5 @@ # License -Copyright (C) 2015-2017 Dominik Pfaffenbauer +Copyright (C) 2015-2017 w-vision AG This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/README.md b/README.md index f72ce40..4d4bf93 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# W-Vision Pimcore Deployer +# w-vision Pimcore Deployer This library gives you a clean example of how to use deployer with Pimcore 5.*. diff --git a/composer.json b/composer.json index 5143e30..00e9fea 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,18 @@ { - "name": "w-vision/pimcore-deployer", - "description": "Pimcore Deployer Scripts", - "type": "library", - "license": "GPLv3", - "authors": [ - { - "name": "Dominik Pfaffenbauer", - "email": "dominik@pfaffenbauer.at" - } - ], - "require": { - "deployer/deployer": "^6.0" + "name": "w-vision/pimcore-deployer", + "type": "library", + "license": "GPLv3", + "description": "Pimcore Deployer Scripts", + "homepage": "https://github.com/w-vision/pimcore-deployer", + "authors": [ + { + "name": "w-vision AG", + "email": "support@w-vision.ch", + "homepage": "https://www.w-vision.ch", + "role": "Web Development Agency" } + ], + "require": { + "deployer/deployer": "^6.0" + } } diff --git a/deploy.sample.php b/deploy.sample.php index b52bc40..c29dc8a 100755 --- a/deploy.sample.php +++ b/deploy.sample.php @@ -1,10 +1,20 @@ user('username') @@ -14,11 +24,10 @@ ->stage('dev') ->set('branch', 'master'); -set('repository', 'ssh://git@server:22/vendor/project.git'); // Can be done via http as well. +set('repository', 'ssh://git@server:22/vendor/project.git'); -//There maybe some files or directories missing. - +// There may be some files or directories missing. set('default_stage', 'dev'); set('shared_files', [ 'app/config/parameters.yml', @@ -43,8 +52,7 @@ });*/ // If you want to use a custom composer file, use this -/* -set('bin/composer', function() { +/*set('bin/composer', function() { return '{{bin/php}} composer.phar'; });*/ diff --git a/recipes/npm.php b/recipes/npm.php index d626343..b15c336 100644 --- a/recipes/npm.php +++ b/recipes/npm.php @@ -1,4 +1,14 @@