1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-26 21:02:28 +02:00

Adding Laravel Blade Directives Package. (#695)

This commit is contained in:
Matthew Hatcher 2017-10-18 00:26:03 -04:00 committed by Dane Everitt
parent 75c905a985
commit 2f9e7bdc3b
4 changed files with 57 additions and 2 deletions

View File

@ -13,7 +13,7 @@ DB_DATABASE=homestead
DB_USERNAME=homestead DB_USERNAME=homestead
DB_PASSWORD=secret DB_PASSWORD=secret
CACHE_DRIVER=file CACHE_DRIVER=redis
SESSION_DRIVER=database SESSION_DRIVER=database
HASHIDS_SALT= HASHIDS_SALT=

View File

@ -15,6 +15,7 @@
"ext-mbstring": "*", "ext-mbstring": "*",
"ext-pdo_mysql": "*", "ext-pdo_mysql": "*",
"ext-zip": "*", "ext-zip": "*",
"appstract/laravel-blade-directives": "^0.6.0",
"aws/aws-sdk-php": "^3.29", "aws/aws-sdk-php": "^3.29",
"daneeveritt/login-notifications": "^1.0", "daneeveritt/login-notifications": "^1.0",
"doctrine/dbal": "^2.5", "doctrine/dbal": "^2.5",

55
composer.lock generated
View File

@ -4,8 +4,61 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "46a0a06ec8f3af50ed6ec05c2bb3b9a3", "content-hash": "416fbdc30098799c4403f9d05413b029",
"packages": [ "packages": [
{
"name": "appstract/laravel-blade-directives",
"version": "0.6.0",
"source": {
"type": "git",
"url": "https://github.com/appstract/laravel-blade-directives.git",
"reference": "3b0e146b3f2511d69e51160e7312ed5e57616460"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/appstract/laravel-blade-directives/zipball/3b0e146b3f2511d69e51160e7312ed5e57616460",
"reference": "3b0e146b3f2511d69e51160e7312ed5e57616460",
"shasum": ""
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"type": "library",
"extra": {
"laravel": {
"providers": [
"Appstract\\BladeDirectives\\BladeDirectivesServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Appstract\\BladeDirectives\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Gijs Jorissen",
"email": "hello@appstract.team",
"homepage": "https://appstract.team",
"role": "Developer"
}
],
"description": "Handy Blade directives",
"homepage": "https://github.com/appstract/laravel-blade-directives",
"keywords": [
"appstract",
"laravel-blade-directives"
],
"time": "2017-10-13T08:41:27+00:00"
},
{ {
"name": "aws/aws-sdk-php", "name": "aws/aws-sdk-php",
"version": "3.36.0", "version": "3.36.0",

View File

@ -181,6 +181,7 @@ return [
Lord\Laroute\LarouteServiceProvider::class, Lord\Laroute\LarouteServiceProvider::class,
Spatie\Fractal\FractalServiceProvider::class, Spatie\Fractal\FractalServiceProvider::class,
Sofa\Eloquence\ServiceProvider::class, Sofa\Eloquence\ServiceProvider::class,
Appstract\BladeDirectives\BladeDirectivesServiceProvider::class,
], ],
/* /*