Skip to content
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.

Commit

Permalink
Merge pull request #94 from k00ni/master
Browse files Browse the repository at this point in the history
Change license of Saft from GPL v3 to MIT
  • Loading branch information
k00ni authored Aug 29, 2017
2 parents d4f8e01 + d69ce92 commit 35be5d7
Show file tree
Hide file tree
Showing 202 changed files with 1,888 additions and 618 deletions.
617 changes: 21 additions & 596 deletions LICENSE

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

PHPCS = ./vendor/bin/phpcs
PHPCBF = ./vendor/bin/phpcbf
SAMI = ./vendor/bin/sami.php
Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@ The Saft PHP framework provides RDF handling and support for Semantic Web techno

Copyright (C) 2017 by Konrad Abicht, Natanael Arndt and the individual [contributors](CONTRIBUTORS)

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses>.
Please see [LICENSE](LICENSE) for further information.
This program is licensed under the terms of the [MIT license](https://github.com/SaftIng/Saft/blob/master/LICENSE).

## Current development status

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Saft library provides tools and an infrastructure to build Semantic Web and Linked Data applications.",
"keywords": ["Saft", "Linked Data", "Semantic Web", "RDF", "Triple Store", "Parser", "Serializer", "QueryCache"],
"homepage": "https://safting.github.io/",
"license": "GPL-3.0",
"license": "MIT",
"authors": [
{
"name": "Natanael Arndt",
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/.coveralls.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

coverage_clover: gen/coverage/clover.xml
json_path: gen/coverage/coveralls-upload.json
service_name: travis-ci
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

language: php
dist: trusty

Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/Store/ARC2.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\ARC2\Store;

use Saft\Rdf\CommonNamespaces;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/Test/ARC2Test.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\ARC2\Test;

use Saft\Addition\ARC2\Store\ARC2;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/Test/bootstrap-travis.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

require 'bootstrap.php';

define('IN_TRAVIS', true);
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/Test/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

require_once __DIR__ .'/../vendor/autoload.php';

error_reporting(E_ALL);
2 changes: 1 addition & 1 deletion src/Saft/Addition/ARC2/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Adapter to integrate ARC2 store into Saft.",
"keywords": ["Saft", "Triple Store", "ARC2", "RDF", "MySQL", "SPARQL"],
"homepage": "https://safting.github.io/",
"license": "GPL-3.0",
"license": "MIT",
"authors": [
{
"name": "Natanael Arndt",
Expand Down
9 changes: 9 additions & 0 deletions src/Saft/Addition/ARC2/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
-->
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/test-config-travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

#
# This file contains a list with different configurations for test cases which rely on store.
#
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/test-config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

#
# This file contains a list with different configurations for test cases which rely on store.
#
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Data/ParserEasyRdf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data;

use Saft\Data\Parser;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Data/ParserFactoryEasyRdf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data;

use Saft\Data\ParserFactory;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Data/SerializerEasyRdf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data;

use Saft\Data\Serializer;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Data/SerializerFactoryEasyRdf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data;

use Saft\Data\SerializerFactory;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/ParserEasyRdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Test;

use Saft\Addition\EasyRdf\Data\ParserEasyRdf;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/ParserFactoryEasyRdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Test;

use Saft\Addition\EasyRdf\Data\ParserFactoryEasyRdf;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/SerializerEasyRdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Test;

use Saft\Addition\EasyRdf\Data\SerializerEasyRdf;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/SerializerFactoryEasyRdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data\Test;

use Saft\Addition\EasyRdf\Data\SerializerFactoryEasyRdf;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

require_once __DIR__ .'/../vendor/autoload.php';

error_reporting(E_ALL);
2 changes: 1 addition & 1 deletion src/Saft/Addition/EasyRdf/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "",
"keywords": ["EasyRdf", "Parser", "Serializer"],
"homepage": "https://safting.github.io/",
"license": "GPL-3.0",
"license": "MIT",
"authors": [
{
"name": "Natanael Arndt",
Expand Down
9 changes: 9 additions & 0 deletions src/Saft/Addition/EasyRdf/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
-->
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/Erfurt/QueryCache/QueryCache.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\Erfurt\QueryCache;

use Nette\Caching\Cache;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/Erfurt/Test/QueryCacheTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\Erfurt\Test;

use Saft\Rdf\AnyPatternImpl;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/Erfurt/Test/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

require __DIR__ .'/../vendor/autoload.php';

error_reporting(E_ALL);
Loading

0 comments on commit 35be5d7

Please sign in to comment.