Update to Drupal 8.1.0. For more information, see https://www.drupal.org/drupal-8.1.0-release-notes

This commit is contained in:
Pantheon Automation 2016-04-20 09:56:34 -07:00 committed by Greg Anderson
parent b11a755ba8
commit c0a0d5a94c
6920 changed files with 64395 additions and 57312 deletions

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Component\Serialization\Exception\InvalidDataTypeException.
*/
namespace Drupal\Component\Serialization\Exception;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Component\Serialization\Json.
*/
namespace Drupal\Component\Serialization;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Component\Serialization\PhpSerialize.
*/
namespace Drupal\Component\Serialization;
/**

View file

@ -0,0 +1,12 @@
The Drupal Serialization Component
Thanks for using this Drupal component.
You can participate in its development on Drupal.org, through our issue system:
https://www.drupal.org/project/issues/drupal
You can get the full Drupal repo here:
https://www.drupal.org/project/drupal/git-instructions
You can browse the full Drupal repo here:
http://cgit.drupalcode.org/drupal

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Component\Serialization\SerializationInterface.
*/
namespace Drupal\Component\Serialization;
/**

View file

@ -0,0 +1,18 @@
HOW-TO: Test this Drupal component
In order to test this component, you'll need to get the entire Drupal repo and
run the tests there.
You'll find the tests under core/tests/Drupal/Tests/Component.
You can get the full Drupal repo here:
https://www.drupal.org/project/drupal/git-instructions
You can find more information about running PHPUnit tests with Drupal here:
https://www.drupal.org/node/2116263
Each component in the Drupal\Component namespace has its own annotated test
group. You can use this group to run only the tests for this component. Like
this:
$ ./vendor/bin/phpunit -c core --group Serialization

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Component\Serialization\Yaml.
*/
namespace Drupal\Component\Serialization;
use Drupal\Component\Serialization\Exception\InvalidDataTypeException;

View file

@ -0,0 +1,16 @@
{
"name": "drupal/core-serialization",
"description": "Serialization.",
"keywords": ["drupal"],
"homepage": "https://www.drupal.org/project/drupal",
"license": "GPL-2.0+",
"require": {
"php": ">=5.5.9",
"symfony/yaml": "2.7.*"
},
"autoload": {
"psr-4": {
"Drupal\\Component\\Serialization\\": ""
}
}
}