mirror of
https://github.com/superhelio/commands.git
synced 2026-01-31 17:46:55 +00:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
310d5979e9 | ||
|
|
06039cdcfd | ||
|
|
fcb274d3d6 | ||
|
|
8bc16492f6 | ||
|
|
0cb85af737 | ||
|
|
662acf0b48 | ||
|
|
37f35eeb26 | ||
|
|
8fe5df77fb | ||
|
|
6140c7b999 | ||
|
|
3d635a04b9 | ||
|
|
4f51fd8c51 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
composer.lock
|
vendor
|
||||||
vendor
|
|
||||||
32
.travis.yml
32
.travis.yml
@@ -1,30 +1,20 @@
|
|||||||
language: php
|
language: php
|
||||||
|
|
||||||
sudo: false
|
|
||||||
|
|
||||||
php:
|
php:
|
||||||
- 7.0
|
- 7.0
|
||||||
- 7.1
|
- 7.1
|
||||||
|
- nightly
|
||||||
env:
|
matrix:
|
||||||
global:
|
allow_failures:
|
||||||
- setup=basic
|
- php: nightly
|
||||||
- coverage=no
|
fast_finish: true
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- $HOME/.composer/cache/files
|
- $HOME/.composer/cache/files
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- composer config discard-changes true
|
- phpenv global "$TRAVIS_PHP_VERSION"
|
||||||
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
|
- composer config extra.platform.php $TRAVIS_PHP_VERSION
|
||||||
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
|
install:
|
||||||
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
|
- flags="--ansi --prefer-dist --no-interaction --optimize-autoloader --no-suggest --no-progress"
|
||||||
- if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi
|
- travis_wait 30 composer install $flags
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- if [[ $coverage = 'yes' ]]; then ./vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi
|
- ./vendor/bin/phpunit -c phpunit.xml
|
||||||
- if [[ $coverage = 'no' ]]; then ./vendor/bin/phpunit -c phpunit.xml; fi
|
|
||||||
|
|
||||||
after_script:
|
|
||||||
- if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi
|
|
||||||
15
CHANGELOG.md
15
CHANGELOG.md
@@ -4,7 +4,20 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
## [1.1.0](https://github.com/superhelio/commands/tree/2.0.0) (2017-08-27)
|
## [1.2.0](https://github.com/superhelio/commands/tree/1.2.0) (2017-10-19)
|
||||||
|
- Bumped PHP version requirement to >=7.0, PHP5.6 was taking really long time to resolve
|
||||||
|
- Included composer.lock, which is generated with PHP v7.0.23
|
||||||
|
|
||||||
|
## [1.1.2](https://github.com/superhelio/commands/tree/1.1.2) (2017-09-15)
|
||||||
|
- Removed composer.lock, only to enable correct CI builds
|
||||||
|
- Reworked travis-ci.org configuration, builds should now go green
|
||||||
|
|
||||||
|
## [1.1.1](https://github.com/superhelio/commands/tree/1.1.1) (2017-08-27)
|
||||||
|
- Typo fixes
|
||||||
|
- Removal of dead/unnecessary code
|
||||||
|
- Added composer.lock for faster builds
|
||||||
|
|
||||||
|
## [1.1.0](https://github.com/superhelio/commands/tree/1.1.0) (2017-08-27)
|
||||||
- New command: `superhelio:gozer` with tests
|
- New command: `superhelio:gozer` with tests
|
||||||
|
|
||||||
## [1.0.0](https://github.com/superhelio/commands/tree/1.0.0) (2017-02-08)
|
## [1.0.0](https://github.com/superhelio/commands/tree/1.0.0) (2017-02-08)
|
||||||
|
|||||||
@@ -10,6 +10,8 @@
|
|||||||
This is a collection of Laravel Artisan commands created to help everyone
|
This is a collection of Laravel Artisan commands created to help everyone
|
||||||
in their development work. We try to keep these as useful as possible.
|
in their development work. We try to keep these as useful as possible.
|
||||||
|
|
||||||
|
This package requires PHP 7.0 or later. `composer.lock` has been generated with PHP v7.0.23.
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
### Step 1: Install Through Composer
|
### Step 1: Install Through Composer
|
||||||
@@ -34,7 +36,7 @@ public function register()
|
|||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
- *superhelio:gozer*
|
- *superhelio:gozer*
|
||||||
- Force delete database tables that has your table prefix
|
- Force delete database tables that have your table prefix
|
||||||
- `php artisan superhelio:gozer`
|
- `php artisan superhelio:gozer`
|
||||||
- *superhelio:reload*
|
- *superhelio:reload*
|
||||||
- Reset database, migrate and seed
|
- Reset database, migrate and seed
|
||||||
@@ -77,3 +79,4 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
|
|||||||
[link-downloads]: https://packagist.org/packages/superhelio/commands
|
[link-downloads]: https://packagist.org/packages/superhelio/commands
|
||||||
[link-author]: https://github.com/superhelio
|
[link-author]: https://github.com/superhelio
|
||||||
[link-contributors]: https://github.com/superhelio/commands/graphs/contributors
|
[link-contributors]: https://github.com/superhelio/commands/graphs/contributors
|
||||||
|
[link-dbal]: https://packagist.org/packages/doctrine/dbal
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "superhelio/commands",
|
"name": "superhelio/commands",
|
||||||
"description": "Laravel Commands",
|
"description": "This is a collection of Laravel Artisan commands created to help everyone in their development work.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"laravel",
|
"laravel",
|
||||||
"superhelio",
|
"superhelio",
|
||||||
@@ -17,13 +17,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php" : ">=5.5.0",
|
"php" : ">=7.0",
|
||||||
"illuminate/support": "~5.2"
|
"illuminate/support": "^5.3|^5.4|^5.5",
|
||||||
|
"doctrine/dbal": "^2.5|^2.6"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit" : "4.*",
|
"phpunit/phpunit" : "^5.0",
|
||||||
"orchestra/testbench": "~3.0",
|
"orchestra/testbench": "~3.0"
|
||||||
"doctrine/dbal": "~2.3"
|
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
|||||||
3483
composer.lock
generated
Normal file
3483
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -20,21 +20,13 @@ class Gozer extends Command
|
|||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $description = 'Force delete database tables that has your table prefix';
|
protected $description = 'Force delete database tables that have your table prefix';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string Database table prefix
|
* @var string Database table prefix
|
||||||
*/
|
*/
|
||||||
private $dbPrefix = '';
|
private $dbPrefix = '';
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new command instance.
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the console command.
|
* Execute the console command.
|
||||||
*
|
*
|
||||||
@@ -51,12 +43,12 @@ class Gozer extends Command
|
|||||||
|
|
||||||
$this->info('
|
$this->info('
|
||||||
|
|
||||||
________
|
________
|
||||||
/ _____/ ____________ ___________
|
/ _____/ ____________ ___________
|
||||||
/ \ ___ / _ \___ // __ \_ __ \
|
/ \ ___ / _ \___ // __ \_ __ \
|
||||||
\ \_\ ( <_> ) /\ ___/| | \/
|
\ \_\ ( <_> ) /\ ___/| | \/
|
||||||
\______ /\____/_____ \\___ >__|
|
\______ /\____/_____ \\___ >__|
|
||||||
\/ \/ \/
|
\/ \/ \/
|
||||||
|
|
||||||
');
|
');
|
||||||
|
|
||||||
@@ -88,6 +80,7 @@ class Gozer extends Command
|
|||||||
*/
|
*/
|
||||||
if ($tables->count() < 1) {
|
if ($tables->count() < 1) {
|
||||||
$this->info('There are no tables, only Zuul.');
|
$this->info('There are no tables, only Zuul.');
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,14 +20,6 @@ class Reload extends Command
|
|||||||
*/
|
*/
|
||||||
protected $description = 'Rollback migrations, migrate and run seeds';
|
protected $description = 'Rollback migrations, migrate and run seeds';
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new command instance.
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the console command.
|
* Execute the console command.
|
||||||
*
|
*
|
||||||
@@ -53,6 +45,8 @@ class Reload extends Command
|
|||||||
'--verbose' => 3
|
'--verbose' => 3
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,6 @@ class ServiceProvider extends \Illuminate\Support\ServiceProvider
|
|||||||
{
|
{
|
||||||
public function boot()
|
public function boot()
|
||||||
{
|
{
|
||||||
$this->loadMigrationsFrom(realpath(__DIR__ . '/../migrations'));
|
$this->loadMigrationsFrom(dirname(__DIR__) . '/migrations');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user