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

Commit

Permalink
updated composer files of all packages (minimum versions for dev tools)
Browse files Browse the repository at this point in the history
- minimum versions for dev tools set, instead of a fixed one
to allow the user to use newer ones
- all packages require minimum PHP 5.3.3 and minimum PHPUnit 4.8 and
minimum PHP Codesniffer 2.5
- if a Saft package needs another, it uses at least version 0.4
  • Loading branch information
k00ni committed Aug 2, 2016
1 parent cdffa8c commit f20efe5
Show file tree
Hide file tree
Showing 14 changed files with 42 additions and 39 deletions.
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,19 @@
}
],
"replace": {
"saft/saft-arc2": "self.version",
"saft/saft-data": "self.version",
"saft/saft-easyrdf": "self.version",
"saft/saft-erfurt": "self.version",
"saft/saft-querycache": "self.version",
"saft/saft-rdf": "self.version",
"saft/saft-redland": "self.version",
"saft/saft-skeleton": "self.version",
"saft/saft-sparql": "self.version",
"saft/saft-store": "self.version",
"saft/saft-store-http": "self.version",
"saft/saft-store-virtuoso": "self.version"
"saft/saft-store-virtuoso": "self.version",
"saft/saft-test": "self.version"
},
"require": {
"php": ">=5.3.3",
Expand Down
6 changes: 3 additions & 3 deletions src/Saft/Addition/ARC2/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
}
],
"require": {
"php": ">=5.3.0",
"php": ">=5.3.3",
"semsol/arc2": "2.2.*",
"saft/saft-store": "0.*"
"saft/saft-store": ">=0.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
"phpunit/phpunit": ">=4.8"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/Saft/Addition/EasyRdf/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
"require": {
"php": ">=5.3.3",
"easyrdf/easyrdf": "0.9.*",
"saft/saft-data": "0.*"
"saft/saft-data": ">=0.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.5.*"
"phpunit/phpunit": ">=4.8",
"squizlabs/php_codesniffer": ">=2.5.*"
},
"autoload": {
"psr-4": {
Expand Down
8 changes: 4 additions & 4 deletions src/Saft/Addition/Erfurt/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
}
],
"require": {
"php": ">=5.3.0",
"saft/saft-rdf": "0.*",
"saft/saft-store": "0.*"
"php": ">=5.3.3",
"saft/saft-rdf": ">=0.4",
"saft/saft-store": ">=0.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
"phpunit/phpunit": ">=4.8"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions src/Saft/Addition/HttpStore/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
"require": {
"php": ">=5.3.0",
"php-curl-class/php-curl-class": "4.11.*",
"saft/saft-store": ">=0.2",
"saft/saft-store": ">=0.4",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
"phpunit/phpunit": ">=4.8"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions src/Saft/Addition/QueryCache/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"require": {
"php": ">=5.3.3",
"zendframework/zend-cache": "2.6.*",
"saft/saft-store": ">=0.2"
"saft/saft-store": ">=0.4"
},
"require-dev": {
"phpunit/phpunit": ">=4.8.*"
"phpunit/phpunit": ">=4.8"
},
"autoload": {
"psr-4": {
Expand Down
12 changes: 6 additions & 6 deletions src/Saft/Addition/Redland/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
],
"require": {
"php": ">=5.3.3",
"ext-redland": "*",
"saft/saft-data": "0.*",
"saft/saft-rdf": "0.*",
"saft/saft-store": "0.*"
"saft/saft-data": ">=0.4",
"saft/saft-rdf": ">=0.4",
"saft/saft-store": ">=0.4",
"ext-redland": "*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.5.*"
"phpunit/phpunit": ">=4.8",
"squizlabs/php_codesniffer": ">=2.5.*"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/Saft/Addition/Virtuoso/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
}
],
"require": {
"php": ">=5.3.0",
"php": ">=5.3.3",
"saft/saft-store": ">=0.4",
"ext-odbc": "*",
"ext-pdo_odbc": "*",
"saft/saft-store": "0.*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
"phpunit/phpunit": ">=4.8"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/Saft/Data/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
],
"require": {
"php": ">=5.3.3",
"saft/saft-rdf": "0.*"
"saft/saft-rdf": ">=0.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.5.*"
"phpunit/phpunit": ">=4.8",
"squizlabs/php_codesniffer": ">=2.5.*"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions src/Saft/Rdf/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"php": ">5.3.3"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.5.*"
"phpunit/phpunit": ">=4.8",
"squizlabs/php_codesniffer": ">=2.5.*"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions src/Saft/Skeleton/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"require": {
"level-2/dice": "dev-v2.0-PHP5.4-5.5",
"saft/saft": ">=0.1.1",
"saft/saft": ">=0.4",
"slim/slim": "3.2.*",
"zendframework/zend-diactoros": "1.3.*",
"zendframework/zend-cache": "2.6.*"
Expand All @@ -31,7 +31,7 @@
"ext-redis": "Enables usage of Redis as cache backend."
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
"phpunit/phpunit": ">=4.8"
},
"minimum-stability": "dev",
"prefer-stable" : true,
Expand Down
4 changes: 2 additions & 2 deletions src/Saft/Sparql/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
],
"require": {
"php": ">=5.3.0",
"saft/saft-rdf": "0.*"
"saft/saft-rdf": ">=0.4"
},
"require-dev": {
"phpunit/phpunit": "4.5.*"
"phpunit/phpunit": ">=4.8"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/Saft/Store/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
}
],
"require": {
"php": ">=5.3.0",
"saft/saft-rdf": "0.*"
"php": ">=5.3.3",
"saft/saft-rdf": ">=0.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
"phpunit/phpunit": ">=4.8."
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/Saft/Test/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
}
],
"require": {
"php": ">=5.3.0",
"saft/saft-rdf": "0.*",
"php": ">=5.3.3",
"saft/saft-rdf": ">=0.4",
"symfony/yaml": "2.*"
},
"require-dev": {
"phpunit/phpunit": "4.5.*"
"phpunit/phpunit": ">=4.8"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit f20efe5

Please sign in to comment.