{
"_readme": [
"This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "hash": "4c205773e5fd669075b88ad8b8707029",
+ "content-hash": "c926d96f919fd6be117001853d061d17",
"packages": [
{
"name": "league/plates",
"templating",
"views"
],
- "time": "2015-07-09 02:14:40"
+ "time": "2015-07-09T02:14:40+00:00"
},
{
"name": "m6w6/merry",
"container",
"merry"
],
- "time": "2015-03-12 13:49:46"
+ "time": "2015-03-12T13:49:46+00:00"
},
{
"name": "m6w6/pharext",
"package",
"phar"
],
- "time": "2015-09-03 15:12:31"
+ "time": "2015-09-03T15:12:31+00:00"
},
{
"name": "m6w6/pharext.wiki",
"reference": "master"
},
"type": "library",
- "time": "2015-04-30 17:39:40"
+ "time": "2015-05-20T06:40:18+00:00"
},
{
"name": "m6w6/pq-gateway",
"postgresql",
"pq"
],
- "time": "2015-05-20 16:16:55"
+ "time": "2015-05-20T16:16:55+00:00"
},
{
"name": "monolog/monolog",
"logging",
"psr-3"
],
- "time": "2015-08-31 09:17:37"
+ "time": "2015-08-31T09:17:37+00:00"
},
{
"name": "nikic/fast-route",
"router",
"routing"
],
- "time": "2015-02-26 15:33:07"
+ "time": "2015-02-26T15:33:07+00:00"
},
{
"name": "psr/log",
"psr",
"psr-3"
],
- "time": "2012-12-21 11:40:51"
+ "time": "2012-12-21T11:40:51+00:00"
},
{
"name": "rdlowrey/auryn",
"dic",
"ioc"
],
- "time": "2015-08-26 16:31:48"
+ "time": "2015-08-26T16:31:48+00:00"
},
{
"name": "react/promise",
}
],
"description": "A lightweight implementation of CommonJS Promises/A for PHP",
- "time": "2015-07-03 13:48:55"
+ "time": "2015-07-03T13:48:55+00:00"
+ },
+ {
+ "name": "seebz/uri-template",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Seebz/uri-template.git",
+ "reference": "f2d7076e9c729a9dcb338ffe5de8e0df73034f38"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Seebz/uri-template/zipball/f2d7076e9c729a9dcb338ffe5de8e0df73034f38",
+ "reference": "f2d7076e9c729a9dcb338ffe5de8e0df73034f38",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "php": ">=5.6.0",
+ "phpunit/phpunit": "^5.7"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "WTFPL"
+ ],
+ "authors": [
+ {
+ "name": "Sébastien Corne",
+ "email": "sebastien@seebz.net",
+ "homepage": "http://seebz.net"
+ }
+ ],
+ "description": "Implementation of RFC 6570 (URI Template) in a single PHP function",
+ "homepage": "https://github.com/Seebz/uri-template",
+ "keywords": [
+ "URI Template",
+ "rfc6570"
+ ],
+ "time": "2018-02-22T13:25:48+00:00"
}
],
"packages-dev": [],
--- /dev/null
+; Start a new pool named 'www'.
+; the variable $pool can be used in any directive and will be replaced by the
+; pool name ('www' here)
+[pharext]
+
+user = www-data
+group = www-data
+
+listen = /run/php/php-$pool.sock
+listen.owner = www-data
+listen.group = www-data
+;listen.mode = 0660
+
+pm = dynamic
+pm.max_children = 20
+pm.start_servers = 2
+pm.min_spare_servers = 1
+pm.max_spare_servers = 3
+;pm.max_requests = 500
+
+slowlog = /var/log/php-fpm.log.slow
+request_slowlog_timeout = 30
+
+; Depth of slow log stack trace.
+; Default Value: 20
+;request_slowlog_trace_depth = 20
+
+; The timeout for serving a single request after which the worker process will
+; be killed. This option should be used when the 'max_execution_time' ini option
+; does not stop script execution for some reason. A value of '0' means 'off'.
+; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
+; Default Value: 0
+;request_terminate_timeout = 0
+
+; Chdir to this directory at the start.
+; Note: relative path can be used.
+; Default Value: current directory or / when chroot
+chdir = /var/www/$pool
+
+; Note: set an empty value to allow all extensions.
+; Default Value: .php
+security.limit_extensions = .php
+