summaryrefslogtreecommitdiffstats
path: root/vendor/composer
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-07-13 17:44:44 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-07-13 17:44:44 +0200
commit17f2cf72af4173409ee294a204de4221b0275428 (patch)
tree366d2621adfe0c4b862d0afba607076c5d3e30e0 /vendor/composer
parent5ee4dcd035cbf8c00ff95f02fce6ff6b3dc61aaf (diff)
update picofeed
Diffstat (limited to 'vendor/composer')
-rw-r--r--vendor/composer/ClassLoader.php8
-rw-r--r--vendor/composer/installed.json17
2 files changed, 12 insertions, 13 deletions
diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php
index 5e1469e83..4e05d3b15 100644
--- a/vendor/composer/ClassLoader.php
+++ b/vendor/composer/ClassLoader.php
@@ -351,7 +351,7 @@ class ClassLoader
foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
if (0 === strpos($class, $prefix)) {
foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
- if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
+ if (is_file($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
return $file;
}
}
@@ -361,7 +361,7 @@ class ClassLoader
// PSR-4 fallback dirs
foreach ($this->fallbackDirsPsr4 as $dir) {
- if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
+ if (is_file($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
return $file;
}
}
@@ -380,7 +380,7 @@ class ClassLoader
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
if (0 === strpos($class, $prefix)) {
foreach ($dirs as $dir) {
- if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
+ if (is_file($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
@@ -390,7 +390,7 @@ class ClassLoader
// PSR-0 fallback dirs
foreach ($this->fallbackDirsPsr0 as $dir) {
- if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
+ if (is_file($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index d3bde7472..bc9f5d663 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -116,12 +116,12 @@
"source": {
"type": "git",
"url": "https://github.com/fguillot/picoFeed.git",
- "reference": "a6087e8264550891c1b8a6da77eca0cab9328709"
+ "reference": "1e89a3fd579cf3d83cc65c09047f92f81ce6a923"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fguillot/picoFeed/zipball/a6087e8264550891c1b8a6da77eca0cab9328709",
- "reference": "a6087e8264550891c1b8a6da77eca0cab9328709",
+ "url": "https://api.github.com/repos/fguillot/picoFeed/zipball/1e89a3fd579cf3d83cc65c09047f92f81ce6a923",
+ "reference": "1e89a3fd579cf3d83cc65c09047f92f81ce6a923",
"shasum": ""
},
"require": {
@@ -135,12 +135,12 @@
"suggest": {
"ext-curl": "PicoFeed will use cURL if present"
},
- "time": "2015-04-27 22:22:06",
+ "time": "2015-07-12 23:33:40",
"bin": [
"picofeed"
],
"type": "library",
- "installation-source": "dist",
+ "installation-source": "source",
"autoload": {
"psr-0": {
"PicoFeed": "lib/"
@@ -152,11 +152,10 @@
],
"authors": [
{
- "name": "Frédéric Guillot",
- "homepage": "http://fredericguillot.com"
+ "name": "Frédéric Guillot"
}
],
- "description": "Modern library to write or read feeds (RSS/Atom)",
- "homepage": "http://fguillot.github.io/picoFeed"
+ "description": "Modern library to handle RSS/Atom feeds",
+ "homepage": "https://github.com/fguillot/picoFeed"
}
]