Compare commits
15 Commits
v1.2.7
...
v1.2.7-master
| Author | SHA1 | Date | |
|---|---|---|---|
| 73a08c031c | |||
| c77e7bf725 | |||
| 7a4299c724 | |||
| b9b0239837 | |||
| a43ae71afd | |||
| c4339a5d94 | |||
| b161a38e9b | |||
| 735268034d | |||
| aad473486f | |||
| 08970f2b7b | |||
| 6e8ad5b085 | |||
| 145d386ce2 | |||
| 94bfab762b | |||
| 20d8ad29e5 | |||
| bbdbd5397c |
@@ -31,7 +31,7 @@ class AppCommand extends Command
|
||||
'email' => null,
|
||||
'password' => null
|
||||
);
|
||||
|
||||
|
||||
protected $dummyData = true;
|
||||
|
||||
/**
|
||||
@@ -103,7 +103,7 @@ class AppCommand extends Command
|
||||
$this->call('db:seed', array('--force'=>true));
|
||||
}
|
||||
else
|
||||
{
|
||||
{
|
||||
// Seeding Settings table is mandatory
|
||||
$this->call('db:seed', array('--class' => 'SettingsSeeder', '--force'=>true));
|
||||
// Seeding Statuslabels is strongly recommended
|
||||
@@ -207,7 +207,7 @@ class AppCommand extends Command
|
||||
$this->userData['password'] = $password;
|
||||
} while( ! $password);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Asks the user to create dummy data
|
||||
*
|
||||
@@ -350,7 +350,8 @@ class AppCommand extends Command
|
||||
'first_name' => 'John',
|
||||
'last_name' => 'Doe',
|
||||
'email' => 'john.doe@example.com',
|
||||
'password' => 'johndoe',
|
||||
'password' => substr(str_shuffle(str_repeat('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', mt_rand(1,10))),1,10),
|
||||
'notes' => 'Generated on install',
|
||||
'activated' => 1,
|
||||
'manager_id' => 1,
|
||||
);
|
||||
|
||||
@@ -22,6 +22,7 @@ use Response;
|
||||
use Datatable;
|
||||
use Slack;
|
||||
use Config;
|
||||
use Session;
|
||||
|
||||
class LicensesController extends AdminController
|
||||
{
|
||||
@@ -229,6 +230,7 @@ class LicensesController extends AdminController
|
||||
$license->depreciation_id = e(Input::get('depreciation_id'));
|
||||
$license->purchase_order = e(Input::get('purchase_order'));
|
||||
$license->maintained = e(Input::get('maintained'));
|
||||
$license->reassignable = e(Input::get('reassignable'));
|
||||
|
||||
if ( e(Input::get('supplier_id')) == '') {
|
||||
$license->supplier_id = NULL;
|
||||
@@ -269,6 +271,12 @@ class LicensesController extends AdminController
|
||||
$license->maintained = e(Input::get('maintained'));
|
||||
}
|
||||
|
||||
if ( e(Input::get('reassignable')) == '') {
|
||||
$license->reassignable = 0;
|
||||
} else {
|
||||
$license->reassignable = e(Input::get('reassignable'));
|
||||
}
|
||||
|
||||
if ( e(Input::get('purchase_order')) == '') {
|
||||
$license->purchase_order = '';
|
||||
} else {
|
||||
@@ -607,6 +615,12 @@ class LicensesController extends AdminController
|
||||
|
||||
$license = License::find($licenseseat->license_id);
|
||||
|
||||
if(!$license->reassignable) {
|
||||
// Not allowed to checkin
|
||||
Session::flash('error', 'License not reassignable.');
|
||||
return Redirect::back()->withInput();
|
||||
}
|
||||
|
||||
// Declare the rules for the form validation
|
||||
$rules = array(
|
||||
'note' => 'alpha_space',
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class AddReassignableToLicenses extends Migration {
|
||||
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('licenses', function(Blueprint $table)
|
||||
{
|
||||
$table->boolean('reassignable')->default(true);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('licenses', function(Blueprint $table)
|
||||
{
|
||||
//
|
||||
$table->dropColumn('reassignable');
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
@@ -10,6 +10,7 @@ return array(
|
||||
'depreciation' => 'Depreciation',
|
||||
'expiration' => 'Expiration Date',
|
||||
'maintained' => 'Maintained',
|
||||
'reassignable' => 'Reassignable',
|
||||
'name' => 'Software Name',
|
||||
'no_depreciation' => 'Do Not Depreciate',
|
||||
'notes' => 'Notes',
|
||||
|
||||
@@ -48,11 +48,11 @@
|
||||
<td>{{{ $activity->adminlog->fullName() }}}</td>
|
||||
|
||||
<td>
|
||||
@if ($activity->asset_type=="hardware")
|
||||
@if (($activity->assetlog) && ($activity->asset_type=="hardware"))
|
||||
{{ $activity->assetlog->showAssetName() }}
|
||||
@elseif ($activity->asset_type=="software")
|
||||
@elseif (($activity->licenselog) && ($activity->asset_type=="software"))
|
||||
{{ $activity->licenselog->name }}
|
||||
@elseif ($activity->asset_type=="accessory")
|
||||
@elseif (($activity->asset_type) && ($activity->asset_type=="accessory"))
|
||||
{{ $activity->accessorylog->name }}
|
||||
@endif
|
||||
|
||||
|
||||
@@ -52,7 +52,10 @@
|
||||
{{ $settings->qr_text }}
|
||||
<br><br>
|
||||
@endif
|
||||
|
||||
@if ($asset->name!='')
|
||||
<b>N: {{ $asset->name }}</b>
|
||||
<br>
|
||||
@endif
|
||||
@if ($asset->asset_tag!='')
|
||||
T: {{ $asset->asset_tag }}
|
||||
<br>
|
||||
|
||||
@@ -249,7 +249,7 @@
|
||||
<ul id="dashboard-menu">
|
||||
@if(Sentry::getUser()->hasAccess('admin'))
|
||||
<li{{ (Request::is('*/') ? ' class="active"><div class="pointer"><div class="arrow"></div><div class="arrow_border"></div></div>' : '>') }}
|
||||
<a href="/"><i class="fa fa-dashboard"></i><span>Dashboard</span></a>
|
||||
<a href="{{ Config::get('app.url') }}"><i class="fa fa-dashboard"></i><span>Dashboard</span></a>
|
||||
</li>
|
||||
<li{{ (Request::is('hardware*') ? ' class="active"><div class="pointer"><div class="arrow"></div><div class="arrow_border"></div></div>' : '>') }}
|
||||
<a href="{{ URL::to('hardware') }}" class="dropdown-toggle">
|
||||
|
||||
@@ -84,6 +84,15 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Reassignable -->
|
||||
<div class="form-group {{ $errors->has('reassignable') ? ' has-error' : '' }}">
|
||||
<label for="reassignable" class="col-md-3 control-label">@lang('admin/licenses/form.reassignable')</label>
|
||||
<div class="col-md-7 input-group">
|
||||
{{ Form::Checkbox('reassignable', '1', Input::old('reassignable', $license->id ? $license->reassignable : '1')) }}
|
||||
@lang('general.yes')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Supplier -->
|
||||
<div class="form-group {{ $errors->has('supplier_id') ? ' has-error' : '' }}">
|
||||
<label for="supplier_id" class="col-md-3 control-label">@lang('admin/licenses/form.supplier')</label>
|
||||
|
||||
@@ -134,8 +134,13 @@
|
||||
</td>
|
||||
<td>
|
||||
@if (($licensedto->assigned_to) || ($licensedto->asset_id))
|
||||
<a href="{{ route('checkin/license', $licensedto->id) }}" class="btn btn-primary btn-sm">
|
||||
@lang('general.checkin')</a>
|
||||
@if ($license->reassignable)
|
||||
<a href="{{ route('checkin/license', $licensedto->id) }}" class="btn btn-primary btn-sm">
|
||||
@lang('general.checkin')
|
||||
</a>
|
||||
@else
|
||||
<span>Assigned</span>
|
||||
@endif
|
||||
@else
|
||||
<a href="{{ route('checkout/license', $licensedto->id) }}" class="btn btn-info btn-sm">
|
||||
@lang('general.checkout')</a>
|
||||
@@ -333,6 +338,10 @@
|
||||
{{{ $license->seats }}} </li>
|
||||
@endif
|
||||
|
||||
<li><strong>@lang('admin/licenses/form.reassignable'):</strong>
|
||||
{{ $license->reassignable ? 'Yes' : 'No' }}
|
||||
</li>
|
||||
|
||||
@if ($license->notes)
|
||||
<li><strong>@lang('admin/licenses/form.notes'):</strong>
|
||||
<li class="break-word">{{ nl2br(e($license->notes)) }}</li>
|
||||
|
||||
@@ -52,13 +52,13 @@
|
||||
</td>
|
||||
<td>
|
||||
|
||||
@if ($log_action->asset_type=="hardware")
|
||||
{{ $log_action->assetlog->showAssetName() }}
|
||||
@elseif ($log_action->asset_type=="software")
|
||||
{{ $log_action->licenselog->name }}
|
||||
@elseif ($log_action->asset_type=="accessory")
|
||||
{{ $log_action->accessorylog->name }}
|
||||
@endif
|
||||
@if (($log_action->assetlog) && ($log_action->asset_type=="hardware"))
|
||||
{{ $log_action->assetlog->showAssetName() }}
|
||||
@elseif (($log_action->licenselog) && ($log_action->asset_type=="software"))
|
||||
{{ $log_action->licenselog->name }}
|
||||
@elseif (($log_action->asset_type) && ($log_action->asset_type=="accessory"))
|
||||
{{ $log_action->accessorylog->name }}
|
||||
@endif
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
+1
-3
@@ -47,11 +47,9 @@
|
||||
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"php artisan optimize",
|
||||
"php artisan debugbar:publish"
|
||||
"php artisan optimize"
|
||||
],
|
||||
"post-install-cmd": [
|
||||
"php artisan debugbar:publish"
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"php artisan key:generate"
|
||||
|
||||
Generated
+96
-97
@@ -420,12 +420,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/cache.git",
|
||||
"reference": "9d141335b758cbff3c58b52777836ce945522a68"
|
||||
"reference": "c2ab51e8f3c4a8170ca91b702e3789881dd2a6c2"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/cache/zipball/9d141335b758cbff3c58b52777836ce945522a68",
|
||||
"reference": "9d141335b758cbff3c58b52777836ce945522a68",
|
||||
"url": "https://api.github.com/repos/doctrine/cache/zipball/c2ab51e8f3c4a8170ca91b702e3789881dd2a6c2",
|
||||
"reference": "c2ab51e8f3c4a8170ca91b702e3789881dd2a6c2",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -482,7 +482,7 @@
|
||||
"cache",
|
||||
"caching"
|
||||
],
|
||||
"time": "2015-04-28 19:52:40"
|
||||
"time": "2015-05-07 20:41:18"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/collections",
|
||||
@@ -971,12 +971,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/guzzle/RingPHP.git",
|
||||
"reference": "2f75325d08c9ec39e5d3af54fcb6b9c0e7fd6114"
|
||||
"reference": "2498ee848cd01639aecdcf3d5a257bace8665b7c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/guzzle/RingPHP/zipball/2f75325d08c9ec39e5d3af54fcb6b9c0e7fd6114",
|
||||
"reference": "2f75325d08c9ec39e5d3af54fcb6b9c0e7fd6114",
|
||||
"url": "https://api.github.com/repos/guzzle/RingPHP/zipball/2498ee848cd01639aecdcf3d5a257bace8665b7c",
|
||||
"reference": "2498ee848cd01639aecdcf3d5a257bace8665b7c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1014,7 +1014,7 @@
|
||||
}
|
||||
],
|
||||
"description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
|
||||
"time": "2015-04-27 21:47:43"
|
||||
"time": "2015-05-01 04:57:09"
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/streams",
|
||||
@@ -1072,12 +1072,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Intervention/image.git",
|
||||
"reference": "6626d7624ac0895137a38c123943afedd0827efc"
|
||||
"reference": "79f0a35da7d4f75bb85d9c04513dd5929e21f75e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Intervention/image/zipball/6626d7624ac0895137a38c123943afedd0827efc",
|
||||
"reference": "6626d7624ac0895137a38c123943afedd0827efc",
|
||||
"url": "https://api.github.com/repos/Intervention/image/zipball/79f0a35da7d4f75bb85d9c04513dd5929e21f75e",
|
||||
"reference": "79f0a35da7d4f75bb85d9c04513dd5929e21f75e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1120,7 +1120,7 @@
|
||||
"thumbnail",
|
||||
"watermark"
|
||||
],
|
||||
"time": "2015-04-24 14:50:48"
|
||||
"time": "2015-05-09 16:06:30"
|
||||
},
|
||||
{
|
||||
"name": "ircmaxell/password-compat",
|
||||
@@ -1333,12 +1333,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/csv.git",
|
||||
"reference": "f17b7214baeb2475ad7860bec03ffa766690c97e"
|
||||
"reference": "3a2a199d686bc8b52689b74d5a66cb2e9b9370c9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/csv/zipball/f17b7214baeb2475ad7860bec03ffa766690c97e",
|
||||
"reference": "f17b7214baeb2475ad7860bec03ffa766690c97e",
|
||||
"url": "https://api.github.com/repos/thephpleague/csv/zipball/3a2a199d686bc8b52689b74d5a66cb2e9b9370c9",
|
||||
"reference": "3a2a199d686bc8b52689b74d5a66cb2e9b9370c9",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1381,7 +1381,7 @@
|
||||
"read",
|
||||
"write"
|
||||
],
|
||||
"time": "2015-04-23 13:50:36"
|
||||
"time": "2015-05-06 12:03:42"
|
||||
},
|
||||
{
|
||||
"name": "maknz/slack",
|
||||
@@ -1494,12 +1494,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Seldaek/monolog.git",
|
||||
"reference": "d84ba2cb20186688230a5a11f76a70e97fe2f886"
|
||||
"reference": "bf2bff61743f20a13dc46ff1e3bbd0f19c997d2b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/d84ba2cb20186688230a5a11f76a70e97fe2f886",
|
||||
"reference": "d84ba2cb20186688230a5a11f76a70e97fe2f886",
|
||||
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/bf2bff61743f20a13dc46ff1e3bbd0f19c997d2b",
|
||||
"reference": "bf2bff61743f20a13dc46ff1e3bbd0f19c997d2b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1561,7 +1561,7 @@
|
||||
"logging",
|
||||
"psr-3"
|
||||
],
|
||||
"time": "2015-04-25 10:55:55"
|
||||
"time": "2015-05-11 14:51:05"
|
||||
},
|
||||
{
|
||||
"name": "nesbot/carbon",
|
||||
@@ -2001,19 +2001,19 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/swiftmailer/swiftmailer.git",
|
||||
"reference": "728eba28e355e081b0729b4c18cb9c13abe12560"
|
||||
"reference": "ac8b475454c120bfb31f5bef475233dd4fb6b626"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/728eba28e355e081b0729b4c18cb9c13abe12560",
|
||||
"reference": "728eba28e355e081b0729b4c18cb9c13abe12560",
|
||||
"url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/ac8b475454c120bfb31f5bef475233dd4fb6b626",
|
||||
"reference": "ac8b475454c120bfb31f5bef475233dd4fb6b626",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"mockery/mockery": "~0.9.1"
|
||||
"mockery/mockery": "~0.9.1,<0.9.4"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
@@ -2045,7 +2045,7 @@
|
||||
"mail",
|
||||
"mailer"
|
||||
],
|
||||
"time": "2015-03-30 15:09:02"
|
||||
"time": "2015-05-06 16:40:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/browser-kit",
|
||||
@@ -2108,12 +2108,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/Config.git",
|
||||
"reference": "b9a3893998ddb7a6e84088ac21a0540c4fa51627"
|
||||
"reference": "8555ecc6e2a47441b4be56dbfde5cea68c916755"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/Config/zipball/b9a3893998ddb7a6e84088ac21a0540c4fa51627",
|
||||
"reference": "b9a3893998ddb7a6e84088ac21a0540c4fa51627",
|
||||
"url": "https://api.github.com/repos/symfony/Config/zipball/8555ecc6e2a47441b4be56dbfde5cea68c916755",
|
||||
"reference": "8555ecc6e2a47441b4be56dbfde5cea68c916755",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2139,18 +2139,18 @@
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "http://symfony.com/contributors"
|
||||
},
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony Config Component",
|
||||
"homepage": "http://symfony.com",
|
||||
"time": "2015-04-24 07:03:44"
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2015-05-12 15:16:46"
|
||||
},
|
||||
{
|
||||
"name": "symfony/console",
|
||||
@@ -2376,12 +2376,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/EventDispatcher.git",
|
||||
"reference": "44bde9645703fe92da9f5dd2755298f7c2c6fa92"
|
||||
"reference": "8766cebf28beac9a45b511d7dba053da9d35eb9f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/44bde9645703fe92da9f5dd2755298f7c2c6fa92",
|
||||
"reference": "44bde9645703fe92da9f5dd2755298f7c2c6fa92",
|
||||
"url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/8766cebf28beac9a45b511d7dba053da9d35eb9f",
|
||||
"reference": "8766cebf28beac9a45b511d7dba053da9d35eb9f",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2415,18 +2415,18 @@
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "http://symfony.com/contributors"
|
||||
},
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony EventDispatcher Component",
|
||||
"homepage": "http://symfony.com",
|
||||
"time": "2015-04-24 07:03:44"
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2015-05-12 15:16:46"
|
||||
},
|
||||
{
|
||||
"name": "symfony/filesystem",
|
||||
@@ -2434,12 +2434,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/Filesystem.git",
|
||||
"reference": "41b7d35d812653a54fd931a6c8cf139767a95abb"
|
||||
"reference": "6c4f6245440b53e55d4b5d3c3bd98532d6c6e11e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/Filesystem/zipball/41b7d35d812653a54fd931a6c8cf139767a95abb",
|
||||
"reference": "41b7d35d812653a54fd931a6c8cf139767a95abb",
|
||||
"url": "https://api.github.com/repos/symfony/Filesystem/zipball/6c4f6245440b53e55d4b5d3c3bd98532d6c6e11e",
|
||||
"reference": "6c4f6245440b53e55d4b5d3c3bd98532d6c6e11e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2464,18 +2464,18 @@
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "http://symfony.com/contributors"
|
||||
},
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony Filesystem Component",
|
||||
"homepage": "http://symfony.com",
|
||||
"time": "2015-04-24 07:03:44"
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2015-05-12 15:16:46"
|
||||
},
|
||||
{
|
||||
"name": "symfony/finder",
|
||||
@@ -2835,12 +2835,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/Stopwatch.git",
|
||||
"reference": "20c8903372e2a924421d93d55928be80c617cf3a"
|
||||
"reference": "548bdb98ca54e9121e603ad9789775aa8ddb153d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/Stopwatch/zipball/20c8903372e2a924421d93d55928be80c617cf3a",
|
||||
"reference": "20c8903372e2a924421d93d55928be80c617cf3a",
|
||||
"url": "https://api.github.com/repos/symfony/Stopwatch/zipball/548bdb98ca54e9121e603ad9789775aa8ddb153d",
|
||||
"reference": "548bdb98ca54e9121e603ad9789775aa8ddb153d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2865,18 +2865,18 @@
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "http://symfony.com/contributors"
|
||||
},
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony Stopwatch Component",
|
||||
"homepage": "http://symfony.com",
|
||||
"time": "2015-04-24 07:03:44"
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2015-05-12 15:16:46"
|
||||
},
|
||||
{
|
||||
"name": "symfony/translation",
|
||||
@@ -2940,12 +2940,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/var-dumper.git",
|
||||
"reference": "2bb458cc26efc9fa6ae88bcbcbd0525d4ecf6672"
|
||||
"reference": "5b0473622df3e313509b8771356eefa8b29bdc74"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/2bb458cc26efc9fa6ae88bcbcbd0525d4ecf6672",
|
||||
"reference": "2bb458cc26efc9fa6ae88bcbcbd0525d4ecf6672",
|
||||
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/5b0473622df3e313509b8771356eefa8b29bdc74",
|
||||
"reference": "5b0473622df3e313509b8771356eefa8b29bdc74",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2976,22 +2976,22 @@
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "http://symfony.com/contributors"
|
||||
},
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony mechanism for exploring and dumping PHP variables",
|
||||
"homepage": "http://symfony.com",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"debug",
|
||||
"dump"
|
||||
],
|
||||
"time": "2015-04-24 07:03:44"
|
||||
"time": "2015-05-12 15:16:46"
|
||||
},
|
||||
{
|
||||
"name": "symfony/yaml",
|
||||
@@ -2999,12 +2999,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/Yaml.git",
|
||||
"reference": "4ededb1d00dc2c65fcd16ae3dafc785f92b3f95f"
|
||||
"reference": "2396832f6f9ab2b8f62f00b5d3f2e722fc773d65"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/Yaml/zipball/4ededb1d00dc2c65fcd16ae3dafc785f92b3f95f",
|
||||
"reference": "4ededb1d00dc2c65fcd16ae3dafc785f92b3f95f",
|
||||
"url": "https://api.github.com/repos/symfony/Yaml/zipball/2396832f6f9ab2b8f62f00b5d3f2e722fc773d65",
|
||||
"reference": "2396832f6f9ab2b8f62f00b5d3f2e722fc773d65",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3029,18 +3029,18 @@
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "http://symfony.com/contributors"
|
||||
},
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony Yaml Component",
|
||||
"homepage": "http://symfony.com",
|
||||
"time": "2015-04-24 07:03:44"
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2015-05-12 15:16:46"
|
||||
}
|
||||
],
|
||||
"packages-dev": [
|
||||
@@ -3050,12 +3050,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/instantiator.git",
|
||||
"reference": "fc999e2f0508e434645ec2bfadeb89d39fa6453c"
|
||||
"reference": "cd3fe91baa28da6e119d619612439eb2db0d8d88"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/instantiator/zipball/fc999e2f0508e434645ec2bfadeb89d39fa6453c",
|
||||
"reference": "fc999e2f0508e434645ec2bfadeb89d39fa6453c",
|
||||
"url": "https://api.github.com/repos/doctrine/instantiator/zipball/cd3fe91baa28da6e119d619612439eb2db0d8d88",
|
||||
"reference": "cd3fe91baa28da6e119d619612439eb2db0d8d88",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3096,20 +3096,20 @@
|
||||
"constructor",
|
||||
"instantiate"
|
||||
],
|
||||
"time": "2015-04-12 20:59:10"
|
||||
"time": "2015-05-10 22:20:19"
|
||||
},
|
||||
{
|
||||
"name": "hamcrest/hamcrest-php",
|
||||
"version": "v1.2.1",
|
||||
"version": "v1.2.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/hamcrest/hamcrest-php.git",
|
||||
"reference": "ac50c470531243944f977b8de75be0b684a9cb51"
|
||||
"reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/ac50c470531243944f977b8de75be0b684a9cb51",
|
||||
"reference": "ac50c470531243944f977b8de75be0b684a9cb51",
|
||||
"url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c",
|
||||
"reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3141,7 +3141,7 @@
|
||||
"keywords": [
|
||||
"test"
|
||||
],
|
||||
"time": "2015-01-20 19:34:09"
|
||||
"time": "2015-05-11 14:41:42"
|
||||
},
|
||||
{
|
||||
"name": "mockery/mockery",
|
||||
@@ -3214,12 +3214,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
|
||||
"reference": "d1da796ba5565789a623052eb9f2cf59d57fec60"
|
||||
"reference": "ae15da2ce234d3ffe5d7fafcdad19c7f1acf3568"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d1da796ba5565789a623052eb9f2cf59d57fec60",
|
||||
"reference": "d1da796ba5565789a623052eb9f2cf59d57fec60",
|
||||
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/ae15da2ce234d3ffe5d7fafcdad19c7f1acf3568",
|
||||
"reference": "ae15da2ce234d3ffe5d7fafcdad19c7f1acf3568",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3229,7 +3229,6 @@
|
||||
"phpunit/phpunit": "~4.0"
|
||||
},
|
||||
"suggest": {
|
||||
"dflydev/markdown": "~1.0",
|
||||
"erusev/parsedown": "~1.0",
|
||||
"league/commonmark": "*"
|
||||
},
|
||||
@@ -3256,7 +3255,7 @@
|
||||
"email": "mike.vanriel@naenius.com"
|
||||
}
|
||||
],
|
||||
"time": "2015-02-27 09:28:18"
|
||||
"time": "2015-05-12 07:21:12"
|
||||
},
|
||||
{
|
||||
"name": "phpspec/prophecy",
|
||||
@@ -3324,12 +3323,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
||||
"reference": "1678cee3b7f93f994da6acf7e998b23a98e955f1"
|
||||
"reference": "9ef4b8cbf3e839a44a9b375d8c59e109ac7aa020"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1678cee3b7f93f994da6acf7e998b23a98e955f1",
|
||||
"reference": "1678cee3b7f93f994da6acf7e998b23a98e955f1",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/9ef4b8cbf3e839a44a9b375d8c59e109ac7aa020",
|
||||
"reference": "9ef4b8cbf3e839a44a9b375d8c59e109ac7aa020",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3378,7 +3377,7 @@
|
||||
"testing",
|
||||
"xunit"
|
||||
],
|
||||
"time": "2015-04-16 05:00:01"
|
||||
"time": "2015-05-09 04:40:58"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-file-iterator",
|
||||
|
||||
Reference in New Issue
Block a user