Download the PHP package padosoft/workbench without Composer

On this page you can find all versions of the php package padosoft/workbench. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package workbench

workbench

Latest Version on Packagist Build Status Coverage Status Quality Score Total Downloads SensioLabsInsight

CONSOLE FOR NEW PROJECT: screenshoot

Table of Contents

Prerequisites

Install

This package can be installed through Composer.

You must install this service provider.

You can publish the config file of this package with this command:

The following config file will be published in config/workbench.php

Sometimes in case of problem you can use:

Usage

php artisan workbench:new

l'option --help mostra i parametri

php artisan workbench:new --help Usage: workbench:new [options] [--] [] []

Arguments:

action create or delete

domain domain name

Options:

-t, --type[=TYPE] laravel, normal, laravel_package or agnostic_package

-d, --dirtype[=DIRTYPE] project dir type, public or private, path set in config

-g, --git[=GIT] github or bitbucket

-u, --user[=USER] git user

-p, --password[=PASSWORD] git password

-e, --email[=EMAIL] git email

-o, --organization[=ORGANIZATION] organization in github or bitbucket

-s, --silent no questions

  --sshhost[=SSHHOST]                  host ssh

  --sshuser[=SSHUSER]                  user ssh

  --sshpassword[=SSHPASSWORD]          password ssh

  --filehosts                          add or remove in local file /etc/hosts

  --packagename[=PACKAGENAME]          name of package

  --packagedescr[=PACKAGEDESCR]        description of package

  --packagekeywords[=PACKAGEKEYWORDS]  keywords of package

-h, --help Display this help message

-q, --quiet Do not output any message

-V, --version Display this application version

  --ansi                               Force ANSI output

  --no-ansi                            Disable ANSI output

-n, --no-interaction Do not ask any interactive question

  --env[=ENV]                          The environment the command should run under.

-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

Help:

The workbench:new ....

In the case of the package the part of virtualhost is not required, if inserted in the option is ignored

Example with parameters

Laravel create:

php artisan workbench:new create laravelsite -t laravel -d public -g github -u alevento -p**** -e [email protected] -o b2msrl --sshhost=192.168.0.29 --sshuser=root --sshpassword=***** --packagename=laravelsite --packagedescr=descr --packagekeywords=descr

Laravel package create:

Y:\Public\laravel-packages\www\laravel\5.2.x>php artisan workbench:new create laravelpackage -t laravel_package -d public -g github -u user -p** -e [email protected] -o b2msrl --packagename=laravelpackage --packagedescr=descr --packagekeywords=descr

Agnostic package create:

Y:\Public\laravel-packages\www\laravel\5.2.x>php artisan workbench:new create agnosticpackage -t agnostic_package -d public -g github -u user -p**** -e [email protected] -o b2msrl --packagename=agnosticpackage --packagedescr=descr --packagekeywords=descr

Silent create:

Y:\Public\laravel-packages\www\laravel\5.2.x>php artisan workbench:new create laravelsilent --silent

In silent mode In silent mode, the parameters must be filled in workbench.php

Parameters in workbench.php config file:

return [

'action' => env(

    'WORKBENCH_ACTION',

    'create'

),

'type' => env(

    'WORKBENCH_TYPE',

    'laravel'

),

'dir'  => env(

    'WORKBENCH_DIR',

    'public'

),

'diraccess' => [

    'private' => [

        'apache' => env('WORKBENCH_DIR_PRIVATE_APACHE','/var/www/html/private/'),

        'local' => env('WORKBENCH_DIR_PRIVATE_LOCAL','Y:/private/'),

        'packages' => env('WORKBENCH_DIR_PRIVATE_PACKAGES','Y:/private/laravel-packages/www/packages/'),

        'doc' => env('WORKBENCH_DIR_PRIVATE_DOC','Y:/private/laravel-packages/www/doc/'),

    ],

    'public' => [

        'apache' => env('WORKBENCH_DIR_PUBLIC_APACHE','/var/www/html/public/'),

        'local' => env('WORKBENCH_DIR_PUBLIC_LOCAL','Y:/public/'),

        'packages' => env('WORKBENCH_DIR_PUBLIC_PACKAGES','Y:/public/laravel-packages/www/packages/'),

        'doc' => env('WORKBENCH_DIR_PUBLIC_DOC','Y:/Public/laravel-packages/www/doc/'),

    ],
],
'dirtype' => env(

    'WORKBENCH_DIRTYPE',

    'public'

),

'attemps' => env( 'WORKBENCH_ATTEMPS',

    '5'

),

'git' => [

    'hosting' => env('WORKBENCH_GIT_HOSTING', 'github'),

    'action' => env('WORKBENCH_GIT_ACTION', 'push'),

    'user' => env('WORKBENCH_GIT_USER', ''),

    'password' => env('WORKBENCH_GIT_PASSWORD', ''),

    'email' => env('WORKBENCH_GIT_EMAIL', ''),

],

'organization' => env('WORKBENCH_GIT_GITHUB_ORGANIZATION', 'padosoft'),

'ssh' => [

    'server' => env('WORKBENCH_SSH_SERVER', '192.168.0.29'),

    'user' => env('WORKBENCH_SSH_USER', ''),

    'password' => env('WORKBENCH_SSH_SERVER', ''),

],

'type_repository' => [

    'laravel' => env('WORKBENCH_TYPE_REPOSITORY_LARAVEL', 'laravel5.2.x-skeleton'),

    'normal' => env('WORKBENCH_TYPE_REPOSITORY_NORMAL', ''),

    'laravel_package' => env('WORKBENCH_TYPE_REPOSITORY_LARAVEL_PACKAGE', 'laravel5.2.x-package-skeleton'),

    'agnostic_package' => env('WORKBENCH_TYPE_REPOSITORY_AGNOSTIC_PACKAGE', 'package-skeleton'),

],

'substitute' => [

    'author' =>env('WORKBENCH_SUBSTITUTION_AUTHOR', 'Padosoft'),

    'emailauthor' =>env('WORKBENCH_SUBSTITUTION_EMAILAUTHOR', '[email protected]'),

    'siteauthor' =>env('WORKBENCH_SUBSTITUTION_SITEAUTHOR', 'www.padosoft.com'),

    'vendor' =>env('WORKBENCH_SUBSTITUTION_VENDOR', 'Padosoft'),

    'files' =>env('WORKBENCH_SUBSTITUTION_FILES', 'readme.md,changelog.md,license.md,travis.yml,composer.json,tests/config/sedCommand.sh,tests/config/sedCommandProvider.sh'),
],

];

Example

SCREENSHOOTS

CONSOLE FOR NEW PROJECT:

screenshoot

CONSOLE FOR NEW PACKAGE:

screenshoot

CONSOLE FOR VERSIONING OF PACKAGE:

screenshoot

Change Log

Please see CHANGELOG for more information what has changed recently.

Testing

Contributing

Please see CONDUCT for details.

Security

If you discover any security related issues, please email instead of using the issue tracker.

API Documentation

Please see API documentation at http://padosoft.github.io/workbench

Credits

About Padosoft

Padosoft is a software house based in Florence, Italy. Specialized in E-commerce and web sites.

License

The MIT License (MIT). Please see License File for more information.


All versions of workbench with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0.0
padosoft/test Version 0.*
padosoft/httpclient Version 1.*
padosoft/support Version 1.*
padosoft/io Version 1.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package padosoft/workbench contains the following files

Loading the files please wait ....