Skip to content

Commit

Permalink
Adding Copyright Information
Browse files Browse the repository at this point in the history
  • Loading branch information
AnujRNair committed Aug 13, 2015
1 parent 0c6abf7 commit 27df6b9
Show file tree
Hide file tree
Showing 59 changed files with 419 additions and 1 deletion.
19 changes: 19 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2015 Anuj Nair

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,4 +257,4 @@ Please ensure you have the memcached daemon running to ensure the `MemcachedStor
License
-------------------

Feel free to use wherever, however.
Please see the [License](LICENSE.md)
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Annotations/MarshallConfig.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Annotations;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Annotations/MarshallCreator.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Annotations;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Annotations/MarshallProperty.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Annotations;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Annotations;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Cache/Cache.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Cache;

use PhpJsonMarshaller\Cache\Storage\iStorage;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Cache/Storage/InMemoryStorage.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Cache\Storage;

class InMemoryStorage implements iStorage
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Cache/Storage/MemcachedStorage.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Cache\Storage;

use Memcached;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Cache/Storage/iStorage.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Cache\Storage;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Decoder/ClassDecoder.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Decoder;

use PhpJsonMarshaller\Annotations\MarshallConfig;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Decoder/Object/ClassObject.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Decoder\Object;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Decoder/Object/PropertyObject.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Decoder\Object;

use PhpJsonMarshaller\Decoder\Object\PropertyTypeObject as PTO;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Decoder\Object;

use PhpJsonMarshaller\Type\iType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Exception;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Exception;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Exception;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Exception/InvalidTypeException.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Exception;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Exception/JsonDecodeException.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Exception;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Exception;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Marshaller/JsonMarshaller.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Marshaller;

use PhpJsonMarshaller\Decoder\ClassDecoder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Reader;

use Doctrine\Common\Annotations\AnnotationReader;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Type/BoolType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Type;

use PhpJsonMarshaller\Exception\InvalidTypeException;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Type/DateTimeType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Type;

use PhpJsonMarshaller\Exception\InvalidTypeException;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Type/FloatType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Type;

use PhpJsonMarshaller\Exception\InvalidTypeException;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Type/IntType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Type;

use PhpJsonMarshaller\Exception\InvalidTypeException;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Type/StringType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Type;

use PhpJsonMarshaller\Exception\InvalidTypeException;
Expand Down
7 changes: 7 additions & 0 deletions src/main/PhpJsonMarshaller/Type/iType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshaller\Type;

/**
Expand Down
7 changes: 7 additions & 0 deletions src/tests/PhpJsonMarshallerTests/Cache/CacheTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshallerTests\Cache;

use PhpJsonMarshaller\Cache\Cache;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* Copyright (c) 2015 Anuj Nair
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace PhpJsonMarshallerTests\Cache\Storage;

use PhpJsonMarshaller\Cache\Storage\InMemoryStorage;
Expand Down
Loading

0 comments on commit 27df6b9

Please sign in to comment.