caffeinated / dev
This package is abandoned and no longer maintained.
No replacement package was suggested.
There is no license information available for the latest version (dev-master) of this package.
dev-master
2015-11-29 12:40 UTC
Requires
- php: >=5.5.9
- caffeinated/beverage: ~3.0|dev-master@dev
- fzaninotto/faker: ~1.4
- gitonomy/gitlib: dev-master@dev
- graham-campbell/exceptions: 4.0.*
- graham-campbell/github: ~4.0
- kzykhys/git: dev-master@dev
- laravel/framework: ~5.1
- mockery/mockery: 0.9.*
- orchestra/testbench: ~3.1
- phing/phing: 2.9.*
- php-console/laravel-service-provider: ~5.0
- phpdocumentor/phpdocumentor: 2.*
- phpspec/phpspec: ~2.1
- phpunit/phpunit: 4.*
- radic/blade-extensions: ~6.0
- raveren/kint: ~1.0
- squizlabs/php_codesniffer: 2.*
- vierbergenlars/php-semver: 3.0.*
This package is not auto-updated.
Last update: 2016-07-08 12:48:49 UTC
README
Caffeinated Dev is a development package for the Laravel 5 framework containing unit test abstraction & helpers, a package development workbench and more..
The package follows the FIG standards PSR-1, PSR-2, and PSR-4 to ensure a high level of interoperability between shared PHP code.
Documentation
None yet.
Quick Installation
1. Add to composerBegin by installing the package through Composer.
{
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"wikimedia/composer-merge-plugin": "^1.3",
"caffeinated/dev": "dev-master@dev"
}
}
Then run composer update
to get the packages.
- Add
Caffeinated\Dev\DevServiceProvider::class
to yourproviders
inconfig/app.php
. - Run
php artisan vendor:publish --provider="Caffeinated\Dev\DevServiceProvider"
to publish the config and views. - Open
config/caffeinated.dev.php
and remove/change theworkbench.stubs_path
key.
Most of the configuration is self-explanatory. The most important is to:
- Set
workbench_dir
to the directory you want to use, make sure it exists. - Generate and set the
github.token
. You'll want to have it set, even if you're not doing much with Github.
Set enabled_services.workbench
to true
to enable the service/console commands.
Command | Description |
---|---|
wb:add clone |
Clone a package from github |
wb:add new |
Create a new package. |