Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Commit

Permalink
Updated to all new versions. 1.4.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
hperrin committed Sep 3, 2015
1 parent cb13c5e commit 15a68e2
Show file tree
Hide file tree
Showing 8 changed files with 262 additions and 157 deletions.
18 changes: 11 additions & 7 deletions autoload-dev.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
<?php

file_put_contents(__DIR__.'/vendor/composer/autoload_psr4.php', str_replace([
'array($vendorDir . \'/sciactive/nymph-pubsub/src\')',
'array($vendorDir . \'/sciactive/nymph-server/src\')',
], [
'array(\''.__DIR__.'/pubsub/src\')',
'array(\''.__DIR__.'/server/src\')',
], file_get_contents(__DIR__.'/vendor/composer/autoload_psr4.php')));
$contents = file_get_contents(__DIR__.'/vendor/composer/autoload_psr4.php');

if (strpos($contents, 'array($vendorDir . \'/sciactive/nymph-server/src\')') !== false) {
file_put_contents(__DIR__.'/vendor/composer/autoload_psr4.php', str_replace([
'array($vendorDir . \'/sciactive/nymph-pubsub/src\')',
'array($vendorDir . \'/sciactive/nymph-server/src\')',
], [
'array(\''.__DIR__.'/pubsub/src\')',
'array(\''.__DIR__.'/server/src\')',
], $contents));
}

require __DIR__.'/vendor/autoload.php';
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nymph",
"description": "Powerful object data storage and querying for collaborative web apps.",
"version": "1.4.2",
"version": "1.4.3",
"homepage": "http://nymph.io/",
"authors": [
"Hunter Perrin <[email protected]>"
Expand All @@ -26,6 +26,6 @@
"composer.lock"
],
"dependencies": {
"nymph-client": "1.4.2"
"nymph-client": "1.4.3"
}
}
2 changes: 1 addition & 1 deletion client
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "sciactive/nymph",
"description": "Powerful object data storage and querying for collaborative web apps.",
"version": "1.4.2",
"time": "2015-04-17",
"version": "1.4.3",
"time": "2015-09-02",
"homepage": "http://nymph.io/",
"type": "library",
"authors": [
Expand Down Expand Up @@ -36,8 +36,8 @@
]
},
"require": {
"sciactive/nymph-server": "1.4.2",
"sciactive/nymph-pubsub": "1.4.2"
"sciactive/nymph-server": "1.4.3",
"sciactive/nymph-pubsub": "1.4.3"
},
"require-dev": {
"sciactive/requirephp": "~1.3"
Expand Down
Loading

0 comments on commit 15a68e2

Please sign in to comment.