This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.htaccess: # Specifically, disallow autoload.php from being served directly. | |
autoload.php:return require_once __DIR__ . '/core/vendor/autoload.php'; | |
composer.json: "By default Drupal loads the autoloader from ./core/vendor/autoload.php.", | |
composer.json: "To change the autoloader you can edit ./autoload.php." | |
core/authorize.php:$autoloader = require_once 'autoload.php'; | |
core/includes/install.core.inc: $class_loader = require __DIR__ . '/../vendor/autoload.php'; | |
core/install.php:$class_loader = require_once 'autoload.php'; | |
core/modules/simpletest/src/InstallerTestBase.php: $class_loader = require $this->container->get('app.root') . '/core/vendor/autoload.php'; | |
core/modules/simpletest/src/KernelTestBase.php: $class_loader = require DRUPAL_ROOT . '/core/vendor/autoload.php'; | |
core/modules/simpletest/src/WebTestBase.php: $class_loader = require DRUPAL_ROOT . '/core/vendor/autoload.php'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class { 'php2::fpm::config': | |
pm => 'static', | |
pm_max_children => '5', | |
request_terminate_timeout => 0 | |
} | |
php2::fpm { '5.3': } | |
php2::fpm { '5.4': } | |
php2::fpm { '5.5': } | |
php2::fpm { '5.6': } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "package", | |
"package": { | |
"name": "drupal/message", | |
"type": "drupal-module", | |
"version": "dev-8.x-1.x", | |
"source": { | |
"url": "https://github.com/webflo/message.git", | |
"type": "git", | |
"reference": "8.x-1.x--beta3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "reload/drupal-composer-project", | |
"description": "Composer template for Drupal projects", | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://gist.githubusercontent.com/webflo/5ebd4103f374779882e6/raw/07c263f83194448bd13503cc62fcca554e05f955/composer.json" | |
}, | |
{ | |
"type": "composer", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"package": { | |
"name": "drupal/drupal", | |
"type": "non-destructive-archive-installer", | |
"versions": { | |
"7.34.0": { | |
"name": "drupal/drupal", | |
"version": "7.34.0", | |
"dist": { | |
"url": "http://ftp.drupal.org/files/projects/drupal-7.34.zip", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "fweber/foo.dev", | |
"authors": [ | |
{ | |
"name": "Florian Weber", | |
"email": "[email protected]" | |
} | |
], | |
"minimum-stability": "dev", | |
"prefer-stable": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Apache + PHP | |
mod "apache", | |
:git => "https://github.com/webflo/boxen-puppet-apache.git", | |
:ref => "yosemite" | |
mod "php", | |
:git => "https://github.com/webflo/puppet-php.git", | |
:ref => "yosemite" | |
mod "apache_php", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "drupal/foo", | |
"authors": [ | |
{ | |
"name": "Florian Weber", | |
"email": "[email protected]" | |
} | |
], | |
"repositories": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"minimum-stability": "dev", | |
"require": { | |
"composer/installers": "dev-drupal-core", | |
"drupal/drupal": "dev-8.0.x-composer", | |
"drupal/devel": "dev-8.x-1.x" | |
}, | |
"config": { | |
"bin-dir": "bin/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var tags = jQuery('#edit-taxonomy-vocabulary-9-und').val(); | |
tags = jQuery.map(tags.split(', '), jQuery.trim); | |
if (jQuery.inArray('Amsterdram2014', tags) === -1) { | |
jQuery('#edit-taxonomy-vocabulary-9-und').val(jQuery('#edit-taxonomy-vocabulary-9-und').val() + ', Amsterdram2014'); | |
} |