You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 75KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "c6a2cc6ac79b4c1ca361e2898a4d437e",
  8. "content-hash": "1e6de2728d27e8f7832cecdc0d07191d",
  9. "packages": [
  10. {
  11. "name": "cboden/ratchet",
  12. "version": "v0.3.5",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/ratchetphp/Ratchet.git",
  16. "reference": "b5ccecad9390db85d2c8df7cbeb047292fbbf4b8"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/b5ccecad9390db85d2c8df7cbeb047292fbbf4b8",
  21. "reference": "b5ccecad9390db85d2c8df7cbeb047292fbbf4b8",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "guzzle/http": "^3.6",
  26. "php": ">=5.3.9",
  27. "react/socket": "^0.3 || ^0.4",
  28. "symfony/http-foundation": "^2.2|^3.0",
  29. "symfony/routing": "^2.2|^3.0"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Ratchet\\": "src/Ratchet"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "authors": [
  42. {
  43. "name": "Chris Boden",
  44. "email": "cboden@gmail.com",
  45. "role": "Developer"
  46. }
  47. ],
  48. "description": "PHP WebSocket library",
  49. "homepage": "http://socketo.me",
  50. "keywords": [
  51. "Ratchet",
  52. "WebSockets",
  53. "server",
  54. "sockets"
  55. ],
  56. "time": "2016-05-25 12:55:03"
  57. },
  58. {
  59. "name": "evenement/evenement",
  60. "version": "v2.0.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/igorw/evenement.git",
  64. "reference": "f6e843799fd4f4184d54d8fc7b5b3551c9fa803e"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/igorw/evenement/zipball/f6e843799fd4f4184d54d8fc7b5b3551c9fa803e",
  69. "reference": "f6e843799fd4f4184d54d8fc7b5b3551c9fa803e",
  70. "shasum": ""
  71. },
  72. "require": {
  73. "php": ">=5.4.0"
  74. },
  75. "type": "library",
  76. "extra": {
  77. "branch-alias": {
  78. "dev-master": "2.0-dev"
  79. }
  80. },
  81. "autoload": {
  82. "psr-0": {
  83. "Evenement": "src"
  84. }
  85. },
  86. "notification-url": "https://packagist.org/downloads/",
  87. "license": [
  88. "MIT"
  89. ],
  90. "authors": [
  91. {
  92. "name": "Igor Wiedler",
  93. "email": "igor@wiedler.ch",
  94. "homepage": "http://wiedler.ch/igor/"
  95. }
  96. ],
  97. "description": "Événement is a very simple event dispatching library for PHP",
  98. "keywords": [
  99. "event-dispatcher",
  100. "event-emitter"
  101. ],
  102. "time": "2012-11-02 14:49:47"
  103. },
  104. {
  105. "name": "firebase/php-jwt",
  106. "version": "v2.2.0",
  107. "source": {
  108. "type": "git",
  109. "url": "https://github.com/firebase/php-jwt.git",
  110. "reference": "e0a75bfb6413f22092c99b70f310ccb2cca3efa5"
  111. },
  112. "dist": {
  113. "type": "zip",
  114. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/e0a75bfb6413f22092c99b70f310ccb2cca3efa5",
  115. "reference": "e0a75bfb6413f22092c99b70f310ccb2cca3efa5",
  116. "shasum": ""
  117. },
  118. "require": {
  119. "php": ">=5.2.0"
  120. },
  121. "type": "library",
  122. "autoload": {
  123. "classmap": [
  124. "Authentication/",
  125. "Exceptions/"
  126. ]
  127. },
  128. "notification-url": "https://packagist.org/downloads/",
  129. "license": [
  130. "BSD-3-Clause"
  131. ],
  132. "authors": [
  133. {
  134. "name": "Neuman Vong",
  135. "email": "neuman+pear@twilio.com",
  136. "role": "Developer"
  137. },
  138. {
  139. "name": "Anant Narayanan",
  140. "email": "anant@php.net",
  141. "role": "Developer"
  142. }
  143. ],
  144. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  145. "homepage": "https://github.com/firebase/php-jwt",
  146. "time": "2015-06-22 23:26:39"
  147. },
  148. {
  149. "name": "guzzle/common",
  150. "version": "v3.9.2",
  151. "target-dir": "Guzzle/Common",
  152. "source": {
  153. "type": "git",
  154. "url": "https://github.com/Guzzle3/common.git",
  155. "reference": "2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc"
  156. },
  157. "dist": {
  158. "type": "zip",
  159. "url": "https://api.github.com/repos/Guzzle3/common/zipball/2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc",
  160. "reference": "2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc",
  161. "shasum": ""
  162. },
  163. "require": {
  164. "php": ">=5.3.2",
  165. "symfony/event-dispatcher": ">=2.1"
  166. },
  167. "type": "library",
  168. "extra": {
  169. "branch-alias": {
  170. "dev-master": "3.7-dev"
  171. }
  172. },
  173. "autoload": {
  174. "psr-0": {
  175. "Guzzle\\Common": ""
  176. }
  177. },
  178. "notification-url": "https://packagist.org/downloads/",
  179. "license": [
  180. "MIT"
  181. ],
  182. "description": "Common libraries used by Guzzle",
  183. "homepage": "http://guzzlephp.org/",
  184. "keywords": [
  185. "collection",
  186. "common",
  187. "event",
  188. "exception"
  189. ],
  190. "abandoned": "guzzle/guzzle",
  191. "time": "2014-08-11 04:32:36"
  192. },
  193. {
  194. "name": "guzzle/http",
  195. "version": "v3.9.2",
  196. "target-dir": "Guzzle/Http",
  197. "source": {
  198. "type": "git",
  199. "url": "https://github.com/Guzzle3/http.git",
  200. "reference": "1e8dd1e2ba9dc42332396f39fbfab950b2301dc5"
  201. },
  202. "dist": {
  203. "type": "zip",
  204. "url": "https://api.github.com/repos/Guzzle3/http/zipball/1e8dd1e2ba9dc42332396f39fbfab950b2301dc5",
  205. "reference": "1e8dd1e2ba9dc42332396f39fbfab950b2301dc5",
  206. "shasum": ""
  207. },
  208. "require": {
  209. "guzzle/common": "self.version",
  210. "guzzle/parser": "self.version",
  211. "guzzle/stream": "self.version",
  212. "php": ">=5.3.2"
  213. },
  214. "suggest": {
  215. "ext-curl": "*"
  216. },
  217. "type": "library",
  218. "extra": {
  219. "branch-alias": {
  220. "dev-master": "3.7-dev"
  221. }
  222. },
  223. "autoload": {
  224. "psr-0": {
  225. "Guzzle\\Http": ""
  226. }
  227. },
  228. "notification-url": "https://packagist.org/downloads/",
  229. "license": [
  230. "MIT"
  231. ],
  232. "authors": [
  233. {
  234. "name": "Michael Dowling",
  235. "email": "mtdowling@gmail.com",
  236. "homepage": "https://github.com/mtdowling"
  237. }
  238. ],
  239. "description": "HTTP libraries used by Guzzle",
  240. "homepage": "http://guzzlephp.org/",
  241. "keywords": [
  242. "Guzzle",
  243. "client",
  244. "curl",
  245. "http",
  246. "http client"
  247. ],
  248. "abandoned": "guzzle/guzzle",
  249. "time": "2014-08-11 04:32:36"
  250. },
  251. {
  252. "name": "guzzle/parser",
  253. "version": "v3.9.2",
  254. "target-dir": "Guzzle/Parser",
  255. "source": {
  256. "type": "git",
  257. "url": "https://github.com/Guzzle3/parser.git",
  258. "reference": "6874d171318a8e93eb6d224cf85e4678490b625c"
  259. },
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/Guzzle3/parser/zipball/6874d171318a8e93eb6d224cf85e4678490b625c",
  263. "reference": "6874d171318a8e93eb6d224cf85e4678490b625c",
  264. "shasum": ""
  265. },
  266. "require": {
  267. "php": ">=5.3.2"
  268. },
  269. "type": "library",
  270. "extra": {
  271. "branch-alias": {
  272. "dev-master": "3.7-dev"
  273. }
  274. },
  275. "autoload": {
  276. "psr-0": {
  277. "Guzzle\\Parser": ""
  278. }
  279. },
  280. "notification-url": "https://packagist.org/downloads/",
  281. "license": [
  282. "MIT"
  283. ],
  284. "description": "Interchangeable parsers used by Guzzle",
  285. "homepage": "http://guzzlephp.org/",
  286. "keywords": [
  287. "URI Template",
  288. "cookie",
  289. "http",
  290. "message",
  291. "url"
  292. ],
  293. "abandoned": "guzzle/guzzle",
  294. "time": "2014-02-05 18:29:46"
  295. },
  296. {
  297. "name": "guzzle/stream",
  298. "version": "v3.9.2",
  299. "target-dir": "Guzzle/Stream",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/Guzzle3/stream.git",
  303. "reference": "60c7fed02e98d2c518dae8f97874c8f4622100f0"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/Guzzle3/stream/zipball/60c7fed02e98d2c518dae8f97874c8f4622100f0",
  308. "reference": "60c7fed02e98d2c518dae8f97874c8f4622100f0",
  309. "shasum": ""
  310. },
  311. "require": {
  312. "guzzle/common": "self.version",
  313. "php": ">=5.3.2"
  314. },
  315. "suggest": {
  316. "guzzle/http": "To convert Guzzle request objects to PHP streams"
  317. },
  318. "type": "library",
  319. "extra": {
  320. "branch-alias": {
  321. "dev-master": "3.7-dev"
  322. }
  323. },
  324. "autoload": {
  325. "psr-0": {
  326. "Guzzle\\Stream": ""
  327. }
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "MIT"
  332. ],
  333. "authors": [
  334. {
  335. "name": "Michael Dowling",
  336. "email": "mtdowling@gmail.com",
  337. "homepage": "https://github.com/mtdowling"
  338. }
  339. ],
  340. "description": "Guzzle stream wrapper component",
  341. "homepage": "http://guzzlephp.org/",
  342. "keywords": [
  343. "Guzzle",
  344. "component",
  345. "stream"
  346. ],
  347. "abandoned": "guzzle/guzzle",
  348. "time": "2014-05-01 21:36:02"
  349. },
  350. {
  351. "name": "guzzlehttp/guzzle",
  352. "version": "6.2.0",
  353. "source": {
  354. "type": "git",
  355. "url": "https://github.com/guzzle/guzzle.git",
  356. "reference": "d094e337976dff9d8e2424e8485872194e768662"
  357. },
  358. "dist": {
  359. "type": "zip",
  360. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d094e337976dff9d8e2424e8485872194e768662",
  361. "reference": "d094e337976dff9d8e2424e8485872194e768662",
  362. "shasum": ""
  363. },
  364. "require": {
  365. "guzzlehttp/promises": "~1.0",
  366. "guzzlehttp/psr7": "~1.1",
  367. "php": ">=5.5.0"
  368. },
  369. "require-dev": {
  370. "ext-curl": "*",
  371. "phpunit/phpunit": "~4.0",
  372. "psr/log": "~1.0"
  373. },
  374. "type": "library",
  375. "extra": {
  376. "branch-alias": {
  377. "dev-master": "6.2-dev"
  378. }
  379. },
  380. "autoload": {
  381. "files": [
  382. "src/functions_include.php"
  383. ],
  384. "psr-4": {
  385. "GuzzleHttp\\": "src/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "Michael Dowling",
  395. "email": "mtdowling@gmail.com",
  396. "homepage": "https://github.com/mtdowling"
  397. }
  398. ],
  399. "description": "Guzzle is a PHP HTTP client library",
  400. "homepage": "http://guzzlephp.org/",
  401. "keywords": [
  402. "client",
  403. "curl",
  404. "framework",
  405. "http",
  406. "http client",
  407. "rest",
  408. "web service"
  409. ],
  410. "time": "2016-03-21 20:02:09"
  411. },
  412. {
  413. "name": "guzzlehttp/promises",
  414. "version": "1.2.0",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/guzzle/promises.git",
  418. "reference": "c10d860e2a9595f8883527fa0021c7da9e65f579"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/guzzle/promises/zipball/c10d860e2a9595f8883527fa0021c7da9e65f579",
  423. "reference": "c10d860e2a9595f8883527fa0021c7da9e65f579",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "php": ">=5.5.0"
  428. },
  429. "require-dev": {
  430. "phpunit/phpunit": "~4.0"
  431. },
  432. "type": "library",
  433. "extra": {
  434. "branch-alias": {
  435. "dev-master": "1.0-dev"
  436. }
  437. },
  438. "autoload": {
  439. "psr-4": {
  440. "GuzzleHttp\\Promise\\": "src/"
  441. },
  442. "files": [
  443. "src/functions_include.php"
  444. ]
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Michael Dowling",
  453. "email": "mtdowling@gmail.com",
  454. "homepage": "https://github.com/mtdowling"
  455. }
  456. ],
  457. "description": "Guzzle promises library",
  458. "keywords": [
  459. "promise"
  460. ],
  461. "time": "2016-05-18 16:56:05"
  462. },
  463. {
  464. "name": "guzzlehttp/psr7",
  465. "version": "1.3.0",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/guzzle/psr7.git",
  469. "reference": "31382fef2889136415751badebbd1cb022a4ed72"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/guzzle/psr7/zipball/31382fef2889136415751badebbd1cb022a4ed72",
  474. "reference": "31382fef2889136415751badebbd1cb022a4ed72",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "php": ">=5.4.0",
  479. "psr/http-message": "~1.0"
  480. },
  481. "provide": {
  482. "psr/http-message-implementation": "1.0"
  483. },
  484. "require-dev": {
  485. "phpunit/phpunit": "~4.0"
  486. },
  487. "type": "library",
  488. "extra": {
  489. "branch-alias": {
  490. "dev-master": "1.0-dev"
  491. }
  492. },
  493. "autoload": {
  494. "psr-4": {
  495. "GuzzleHttp\\Psr7\\": "src/"
  496. },
  497. "files": [
  498. "src/functions_include.php"
  499. ]
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Michael Dowling",
  508. "email": "mtdowling@gmail.com",
  509. "homepage": "https://github.com/mtdowling"
  510. }
  511. ],
  512. "description": "PSR-7 message implementation",
  513. "keywords": [
  514. "http",
  515. "message",
  516. "stream",
  517. "uri"
  518. ],
  519. "time": "2016-04-13 19:56:01"
  520. },
  521. {
  522. "name": "luticate/auth",
  523. "version": "dev-develop",
  524. "source": {
  525. "type": "git",
  526. "url": "/home/robin/projects/luticate/api/auth",
  527. "reference": "6cb10b950c01511f97141852fa0b71fa5533db32"
  528. },
  529. "require": {
  530. "firebase/php-jwt": "~2.0",
  531. "luticate/utils": "dev-develop"
  532. },
  533. "require-dev": {
  534. "luticate/generator": "0.1.x",
  535. "vlucas/phpdotenv": "~1.0"
  536. },
  537. "type": "library",
  538. "autoload": {
  539. "psr-4": {
  540. "Luticate\\": "src/"
  541. }
  542. },
  543. "authors": [
  544. {
  545. "name": "Robin THONI",
  546. "email": "robin@rthoni.com"
  547. }
  548. ],
  549. "description": "Luticate user management system authentication layer",
  550. "time": "2016-06-05 14:02:59"
  551. },
  552. {
  553. "name": "luticate/utils",
  554. "version": "dev-develop",
  555. "source": {
  556. "type": "git",
  557. "url": "/home/robin/projects/luticate/api/utils",
  558. "reference": "c823b773f4dca97290898760c96882fc6a546754"
  559. },
  560. "require": {
  561. "cboden/ratchet": "^0.3.5",
  562. "guzzlehttp/guzzle": "^6.1",
  563. "nesbot/carbon": "^1.21",
  564. "nikic/fast-route": "^1.0"
  565. },
  566. "require-dev": {
  567. "phpunit/phpunit": "5.3.*"
  568. },
  569. "type": "library",
  570. "autoload": {
  571. "psr-4": {
  572. "Luticate\\": "src/"
  573. }
  574. },
  575. "authors": [
  576. {
  577. "name": "Robin THONI",
  578. "email": "robin@rthoni.com"
  579. }
  580. ],
  581. "description": "Luticate user management system utils",
  582. "time": "2016-06-06 19:52:01"
  583. },
  584. {
  585. "name": "nesbot/carbon",
  586. "version": "1.21.0",
  587. "source": {
  588. "type": "git",
  589. "url": "https://github.com/briannesbitt/Carbon.git",
  590. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7"
  591. },
  592. "dist": {
  593. "type": "zip",
  594. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  595. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  596. "shasum": ""
  597. },
  598. "require": {
  599. "php": ">=5.3.0",
  600. "symfony/translation": "~2.6|~3.0"
  601. },
  602. "require-dev": {
  603. "phpunit/phpunit": "~4.0|~5.0"
  604. },
  605. "type": "library",
  606. "autoload": {
  607. "psr-4": {
  608. "Carbon\\": "src/Carbon/"
  609. }
  610. },
  611. "notification-url": "https://packagist.org/downloads/",
  612. "license": [
  613. "MIT"
  614. ],
  615. "authors": [
  616. {
  617. "name": "Brian Nesbitt",
  618. "email": "brian@nesbot.com",
  619. "homepage": "http://nesbot.com"
  620. }
  621. ],
  622. "description": "A simple API extension for DateTime.",
  623. "homepage": "http://carbon.nesbot.com",
  624. "keywords": [
  625. "date",
  626. "datetime",
  627. "time"
  628. ],
  629. "time": "2015-11-04 20:07:17"
  630. },
  631. {
  632. "name": "nikic/fast-route",
  633. "version": "v1.0.0",
  634. "source": {
  635. "type": "git",
  636. "url": "https://github.com/nikic/FastRoute.git",
  637. "reference": "79843dce62ac52e9b628e73d5f1264cad10c65a6"
  638. },
  639. "dist": {
  640. "type": "zip",
  641. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/79843dce62ac52e9b628e73d5f1264cad10c65a6",
  642. "reference": "79843dce62ac52e9b628e73d5f1264cad10c65a6",
  643. "shasum": ""
  644. },
  645. "require": {
  646. "php": ">=5.4.0"
  647. },
  648. "type": "library",
  649. "autoload": {
  650. "psr-4": {
  651. "FastRoute\\": "src/"
  652. },
  653. "files": [
  654. "src/functions.php"
  655. ]
  656. },
  657. "notification-url": "https://packagist.org/downloads/",
  658. "license": [
  659. "BSD-3-Clause"
  660. ],
  661. "authors": [
  662. {
  663. "name": "Nikita Popov",
  664. "email": "nikic@php.net"
  665. }
  666. ],
  667. "description": "Fast request router for PHP",
  668. "keywords": [
  669. "router",
  670. "routing"
  671. ],
  672. "time": "2016-04-18 11:33:20"
  673. },
  674. {
  675. "name": "psr/http-message",
  676. "version": "1.0",
  677. "source": {
  678. "type": "git",
  679. "url": "https://github.com/php-fig/http-message.git",
  680. "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298"
  681. },
  682. "dist": {
  683. "type": "zip",
  684. "url": "https://api.github.com/repos/php-fig/http-message/zipball/85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
  685. "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
  686. "shasum": ""
  687. },
  688. "require": {
  689. "php": ">=5.3.0"
  690. },
  691. "type": "library",
  692. "extra": {
  693. "branch-alias": {
  694. "dev-master": "1.0.x-dev"
  695. }
  696. },
  697. "autoload": {
  698. "psr-4": {
  699. "Psr\\Http\\Message\\": "src/"
  700. }
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "PHP-FIG",
  709. "homepage": "http://www.php-fig.org/"
  710. }
  711. ],
  712. "description": "Common interface for HTTP messages",
  713. "keywords": [
  714. "http",
  715. "http-message",
  716. "psr",
  717. "psr-7",
  718. "request",
  719. "response"
  720. ],
  721. "time": "2015-05-04 20:22:00"
  722. },
  723. {
  724. "name": "react/event-loop",
  725. "version": "v0.4.2",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/reactphp/event-loop.git",
  729. "reference": "164799f73175e1c80bba92a220ea35df6ca371dd"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/164799f73175e1c80bba92a220ea35df6ca371dd",
  734. "reference": "164799f73175e1c80bba92a220ea35df6ca371dd",
  735. "shasum": ""
  736. },
  737. "require": {
  738. "php": ">=5.4.0"
  739. },
  740. "suggest": {
  741. "ext-event": "~1.0",
  742. "ext-libev": "*",
  743. "ext-libevent": ">=0.1.0"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "branch-alias": {
  748. "dev-master": "0.5-dev"
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "React\\EventLoop\\": "src"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "description": "Event loop abstraction layer that libraries can use for evented I/O.",
  761. "keywords": [
  762. "asynchronous",
  763. "event-loop"
  764. ],
  765. "time": "2016-03-08 02:09:32"
  766. },
  767. {
  768. "name": "react/socket",
  769. "version": "v0.4.3",
  770. "source": {
  771. "type": "git",
  772. "url": "https://github.com/reactphp/socket.git",
  773. "reference": "ce015ec5879b96f5d30905f035f223aa85013fcc"
  774. },
  775. "dist": {
  776. "type": "zip",
  777. "url": "https://api.github.com/repos/reactphp/socket/zipball/ce015ec5879b96f5d30905f035f223aa85013fcc",
  778. "reference": "ce015ec5879b96f5d30905f035f223aa85013fcc",
  779. "shasum": ""
  780. },
  781. "require": {
  782. "evenement/evenement": "~2.0|~1.0",
  783. "php": ">=5.3.0",
  784. "react/event-loop": "0.4.*|0.3.*",
  785. "react/stream": "0.4.*|0.3.*"
  786. },
  787. "type": "library",
  788. "extra": {
  789. "branch-alias": {
  790. "dev-master": "0.4-dev"
  791. }
  792. },
  793. "autoload": {
  794. "psr-4": {
  795. "React\\Socket\\": "src"
  796. }
  797. },
  798. "notification-url": "https://packagist.org/downloads/",
  799. "license": [
  800. "MIT"
  801. ],
  802. "description": "Library for building an evented socket server.",
  803. "keywords": [
  804. "Socket"
  805. ],
  806. "time": "2016-03-01 20:10:35"
  807. },
  808. {
  809. "name": "react/stream",
  810. "version": "v0.4.3",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/reactphp/stream.git",
  814. "reference": "305b2328d2a2e157bc13b61a0f5c6e41b666b188"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/reactphp/stream/zipball/305b2328d2a2e157bc13b61a0f5c6e41b666b188",
  819. "reference": "305b2328d2a2e157bc13b61a0f5c6e41b666b188",
  820. "shasum": ""
  821. },
  822. "require": {
  823. "evenement/evenement": "^2.0|^1.0",
  824. "php": ">=5.3.8"
  825. },
  826. "require-dev": {
  827. "react/event-loop": "^0.4|^0.3",
  828. "react/promise": "^2.0|^1.0"
  829. },
  830. "suggest": {
  831. "react/event-loop": "^0.4",
  832. "react/promise": "^2.0"
  833. },
  834. "type": "library",
  835. "extra": {
  836. "branch-alias": {
  837. "dev-master": "0.5-dev"
  838. }
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "React\\Stream\\": "src"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "MIT"
  848. ],
  849. "description": "Basic readable and writable stream interfaces that support piping.",
  850. "keywords": [
  851. "pipe",
  852. "stream"
  853. ],
  854. "time": "2015-10-07 18:32:58"
  855. },
  856. {
  857. "name": "symfony/event-dispatcher",
  858. "version": "v3.1.0",
  859. "source": {
  860. "type": "git",
  861. "url": "https://github.com/symfony/event-dispatcher.git",
  862. "reference": "0343b2cedd0edb26cdc791212a8eb645c406018b"
  863. },
  864. "dist": {
  865. "type": "zip",
  866. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0343b2cedd0edb26cdc791212a8eb645c406018b",
  867. "reference": "0343b2cedd0edb26cdc791212a8eb645c406018b",
  868. "shasum": ""
  869. },
  870. "require": {
  871. "php": ">=5.5.9"
  872. },
  873. "require-dev": {
  874. "psr/log": "~1.0",
  875. "symfony/config": "~2.8|~3.0",
  876. "symfony/dependency-injection": "~2.8|~3.0",
  877. "symfony/expression-language": "~2.8|~3.0",
  878. "symfony/stopwatch": "~2.8|~3.0"
  879. },
  880. "suggest": {
  881. "symfony/dependency-injection": "",
  882. "symfony/http-kernel": ""
  883. },
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "3.1-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-4": {
  892. "Symfony\\Component\\EventDispatcher\\": ""
  893. },
  894. "exclude-from-classmap": [
  895. "/Tests/"
  896. ]
  897. },
  898. "notification-url": "https://packagist.org/downloads/",
  899. "license": [
  900. "MIT"
  901. ],
  902. "authors": [
  903. {
  904. "name": "Fabien Potencier",
  905. "email": "fabien@symfony.com"
  906. },
  907. {
  908. "name": "Symfony Community",
  909. "homepage": "https://symfony.com/contributors"
  910. }
  911. ],
  912. "description": "Symfony EventDispatcher Component",
  913. "homepage": "https://symfony.com",
  914. "time": "2016-04-12 18:27:47"
  915. },
  916. {
  917. "name": "symfony/http-foundation",
  918. "version": "v3.1.0",
  919. "source": {
  920. "type": "git",
  921. "url": "https://github.com/symfony/http-foundation.git",
  922. "reference": "83c47b60cdcc0a79651c4e68a3420a54d1eba6e1"
  923. },
  924. "dist": {
  925. "type": "zip",
  926. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/83c47b60cdcc0a79651c4e68a3420a54d1eba6e1",
  927. "reference": "83c47b60cdcc0a79651c4e68a3420a54d1eba6e1",
  928. "shasum": ""
  929. },
  930. "require": {
  931. "php": ">=5.5.9",
  932. "symfony/polyfill-mbstring": "~1.1"
  933. },
  934. "require-dev": {
  935. "symfony/expression-language": "~2.8|~3.0"
  936. },
  937. "type": "library",
  938. "extra": {
  939. "branch-alias": {
  940. "dev-master": "3.1-dev"
  941. }
  942. },
  943. "autoload": {
  944. "psr-4": {
  945. "Symfony\\Component\\HttpFoundation\\": ""
  946. },
  947. "exclude-from-classmap": [
  948. "/Tests/"
  949. ]
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "MIT"
  954. ],
  955. "authors": [
  956. {
  957. "name": "Fabien Potencier",
  958. "email": "fabien@symfony.com"
  959. },
  960. {
  961. "name": "Symfony Community",
  962. "homepage": "https://symfony.com/contributors"
  963. }
  964. ],
  965. "description": "Symfony HttpFoundation Component",
  966. "homepage": "https://symfony.com",
  967. "time": "2016-05-13 18:06:41"
  968. },
  969. {
  970. "name": "symfony/polyfill-mbstring",
  971. "version": "v1.2.0",
  972. "source": {
  973. "type": "git",
  974. "url": "https://github.com/symfony/polyfill-mbstring.git",
  975. "reference": "dff51f72b0706335131b00a7f49606168c582594"
  976. },
  977. "dist": {
  978. "type": "zip",
  979. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594",
  980. "reference": "dff51f72b0706335131b00a7f49606168c582594",
  981. "shasum": ""
  982. },
  983. "require": {
  984. "php": ">=5.3.3"
  985. },
  986. "suggest": {
  987. "ext-mbstring": "For best performance"
  988. },
  989. "type": "library",
  990. "extra": {
  991. "branch-alias": {
  992. "dev-master": "1.2-dev"
  993. }
  994. },
  995. "autoload": {
  996. "psr-4": {
  997. "Symfony\\Polyfill\\Mbstring\\": ""
  998. },
  999. "files": [
  1000. "bootstrap.php"
  1001. ]
  1002. },
  1003. "notification-url": "https://packagist.org/downloads/",
  1004. "license": [
  1005. "MIT"
  1006. ],
  1007. "authors": [
  1008. {
  1009. "name": "Nicolas Grekas",
  1010. "email": "p@tchwork.com"
  1011. },
  1012. {
  1013. "name": "Symfony Community",
  1014. "homepage": "https://symfony.com/contributors"
  1015. }
  1016. ],
  1017. "description": "Symfony polyfill for the Mbstring extension",
  1018. "homepage": "https://symfony.com",
  1019. "keywords": [
  1020. "compatibility",
  1021. "mbstring",
  1022. "polyfill",
  1023. "portable",
  1024. "shim"
  1025. ],
  1026. "time": "2016-05-18 14:26:46"
  1027. },
  1028. {
  1029. "name": "symfony/routing",
  1030. "version": "v3.1.0",
  1031. "source": {
  1032. "type": "git",
  1033. "url": "https://github.com/symfony/routing.git",
  1034. "reference": "e52818e421659dd58a4eb3d439064fb3c2480999"
  1035. },
  1036. "dist": {
  1037. "type": "zip",
  1038. "url": "https://api.github.com/repos/symfony/routing/zipball/e52818e421659dd58a4eb3d439064fb3c2480999",
  1039. "reference": "e52818e421659dd58a4eb3d439064fb3c2480999",
  1040. "shasum": ""
  1041. },
  1042. "require": {
  1043. "php": ">=5.5.9"
  1044. },
  1045. "conflict": {
  1046. "symfony/config": "<2.8"
  1047. },
  1048. "require-dev": {
  1049. "doctrine/annotations": "~1.0",
  1050. "doctrine/common": "~2.2",
  1051. "psr/log": "~1.0",
  1052. "symfony/config": "~2.8|~3.0",
  1053. "symfony/expression-language": "~2.8|~3.0",
  1054. "symfony/http-foundation": "~2.8|~3.0",
  1055. "symfony/yaml": "~2.8|~3.0"
  1056. },
  1057. "suggest": {
  1058. "doctrine/annotations": "For using the annotation loader",
  1059. "symfony/config": "For using the all-in-one router or any loader",
  1060. "symfony/dependency-injection": "For loading routes from a service",
  1061. "symfony/expression-language": "For using expression matching",
  1062. "symfony/http-foundation": "For using a Symfony Request object",
  1063. "symfony/yaml": "For using the YAML loader"
  1064. },
  1065. "type": "library",
  1066. "extra": {
  1067. "branch-alias": {
  1068. "dev-master": "3.1-dev"
  1069. }
  1070. },
  1071. "autoload": {
  1072. "psr-4": {
  1073. "Symfony\\Component\\Routing\\": ""
  1074. },
  1075. "exclude-from-classmap": [
  1076. "/Tests/"
  1077. ]
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Fabien Potencier",
  1086. "email": "fabien@symfony.com"
  1087. },
  1088. {
  1089. "name": "Symfony Community",
  1090. "homepage": "https://symfony.com/contributors"
  1091. }
  1092. ],
  1093. "description": "Symfony Routing Component",
  1094. "homepage": "https://symfony.com",
  1095. "keywords": [
  1096. "router",
  1097. "routing",
  1098. "uri",
  1099. "url"
  1100. ],
  1101. "time": "2016-05-30 06:58:39"
  1102. },
  1103. {
  1104. "name": "symfony/translation",
  1105. "version": "dev-master",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/symfony/translation.git",
  1109. "reference": "b08a9f6e13416cd63e7167d5233575d3ec0c091c"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/symfony/translation/zipball/b08a9f6e13416cd63e7167d5233575d3ec0c091c",
  1114. "reference": "b08a9f6e13416cd63e7167d5233575d3ec0c091c",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "php": ">=5.5.9",
  1119. "symfony/polyfill-mbstring": "~1.0"
  1120. },
  1121. "conflict": {
  1122. "symfony/config": "<2.8"
  1123. },
  1124. "require-dev": {
  1125. "psr/log": "~1.0",
  1126. "symfony/config": "~2.8|~3.0",
  1127. "symfony/intl": "~2.8|~3.0",
  1128. "symfony/yaml": "~2.8|~3.0"
  1129. },
  1130. "suggest": {
  1131. "psr/log": "To use logging capability in translator",
  1132. "symfony/config": "",
  1133. "symfony/yaml": ""
  1134. },
  1135. "type": "library",
  1136. "extra": {
  1137. "branch-alias": {
  1138. "dev-master": "3.2-dev"
  1139. }
  1140. },
  1141. "autoload": {
  1142. "psr-4": {
  1143. "Symfony\\Component\\Translation\\": ""
  1144. },
  1145. "exclude-from-classmap": [
  1146. "/Tests/"
  1147. ]
  1148. },
  1149. "notification-url": "https://packagist.org/downloads/",
  1150. "license": [
  1151. "MIT"
  1152. ],
  1153. "authors": [
  1154. {
  1155. "name": "Fabien Potencier",
  1156. "email": "fabien@symfony.com"
  1157. },
  1158. {
  1159. "name": "Symfony Community",
  1160. "homepage": "https://symfony.com/contributors"
  1161. }
  1162. ],
  1163. "description": "Symfony Translation Component",
  1164. "homepage": "https://symfony.com",
  1165. "time": "2016-05-13 18:13:23"
  1166. }
  1167. ],
  1168. "packages-dev": [
  1169. {
  1170. "name": "doctrine/instantiator",
  1171. "version": "1.0.5",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/doctrine/instantiator.git",
  1175. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1180. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "php": ">=5.3,<8.0-DEV"
  1185. },
  1186. "require-dev": {
  1187. "athletic/athletic": "~0.1.8",
  1188. "ext-pdo": "*",
  1189. "ext-phar": "*",
  1190. "phpunit/phpunit": "~4.0",
  1191. "squizlabs/php_codesniffer": "~2.0"
  1192. },
  1193. "type": "library",
  1194. "extra": {
  1195. "branch-alias": {
  1196. "dev-master": "1.0.x-dev"
  1197. }
  1198. },
  1199. "autoload": {
  1200. "psr-4": {
  1201. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1202. }
  1203. },
  1204. "notification-url": "https://packagist.org/downloads/",
  1205. "license": [
  1206. "MIT"
  1207. ],
  1208. "authors": [
  1209. {
  1210. "name": "Marco Pivetta",
  1211. "email": "ocramius@gmail.com",
  1212. "homepage": "http://ocramius.github.com/"
  1213. }
  1214. ],
  1215. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1216. "homepage": "https://github.com/doctrine/instantiator",
  1217. "keywords": [
  1218. "constructor",
  1219. "instantiate"
  1220. ],
  1221. "time": "2015-06-14 21:17:01"
  1222. },
  1223. {
  1224. "name": "phpdocumentor/reflection-docblock",
  1225. "version": "2.0.4",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1229. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8",
  1234. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "php": ">=5.3.3"
  1239. },
  1240. "require-dev": {
  1241. "phpunit/phpunit": "~4.0"
  1242. },
  1243. "suggest": {
  1244. "dflydev/markdown": "~1.0",
  1245. "erusev/parsedown": "~1.0"
  1246. },
  1247. "type": "library",
  1248. "extra": {
  1249. "branch-alias": {
  1250. "dev-master": "2.0.x-dev"
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-0": {
  1255. "phpDocumentor": [
  1256. "src/"
  1257. ]
  1258. }
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Mike van Riel",
  1267. "email": "mike.vanriel@naenius.com"
  1268. }
  1269. ],
  1270. "time": "2015-02-03 12:10:50"
  1271. },
  1272. {
  1273. "name": "phpspec/prophecy",
  1274. "version": "v1.6.0",
  1275. "source": {
  1276. "type": "git",
  1277. "url": "https://github.com/phpspec/prophecy.git",
  1278. "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972"
  1279. },
  1280. "dist": {
  1281. "type": "zip",
  1282. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/3c91bdf81797d725b14cb62906f9a4ce44235972",
  1283. "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972",
  1284. "shasum": ""
  1285. },
  1286. "require": {
  1287. "doctrine/instantiator": "^1.0.2",
  1288. "php": "^5.3|^7.0",
  1289. "phpdocumentor/reflection-docblock": "~2.0",
  1290. "sebastian/comparator": "~1.1",
  1291. "sebastian/recursion-context": "~1.0"
  1292. },
  1293. "require-dev": {
  1294. "phpspec/phpspec": "~2.0"
  1295. },
  1296. "type": "library",
  1297. "extra": {
  1298. "branch-alias": {
  1299. "dev-master": "1.5.x-dev"
  1300. }
  1301. },
  1302. "autoload": {
  1303. "psr-0": {
  1304. "Prophecy\\": "src/"
  1305. }
  1306. },
  1307. "notification-url": "https://packagist.org/downloads/",
  1308. "license": [
  1309. "MIT"
  1310. ],
  1311. "authors": [
  1312. {
  1313. "name": "Konstantin Kudryashov",
  1314. "email": "ever.zet@gmail.com",
  1315. "homepage": "http://everzet.com"
  1316. },
  1317. {
  1318. "name": "Marcello Duarte",
  1319. "email": "marcello.duarte@gmail.com"
  1320. }
  1321. ],
  1322. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1323. "homepage": "https://github.com/phpspec/prophecy",
  1324. "keywords": [
  1325. "Double",
  1326. "Dummy",
  1327. "fake",
  1328. "mock",
  1329. "spy",
  1330. "stub"
  1331. ],
  1332. "time": "2016-02-15 07:46:21"
  1333. },
  1334. {
  1335. "name": "phpunit/php-code-coverage",
  1336. "version": "2.2.4",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1340. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1345. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "php": ">=5.3.3",
  1350. "phpunit/php-file-iterator": "~1.3",
  1351. "phpunit/php-text-template": "~1.2",
  1352. "phpunit/php-token-stream": "~1.3",
  1353. "sebastian/environment": "^1.3.2",
  1354. "sebastian/version": "~1.0"
  1355. },
  1356. "require-dev": {
  1357. "ext-xdebug": ">=2.1.4",
  1358. "phpunit/phpunit": "~4"
  1359. },
  1360. "suggest": {
  1361. "ext-dom": "*",
  1362. "ext-xdebug": ">=2.2.1",
  1363. "ext-xmlwriter": "*"
  1364. },
  1365. "type": "library",
  1366. "extra": {
  1367. "branch-alias": {
  1368. "dev-master": "2.2.x-dev"
  1369. }
  1370. },
  1371. "autoload": {
  1372. "classmap": [
  1373. "src/"
  1374. ]
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "BSD-3-Clause"
  1379. ],
  1380. "authors": [
  1381. {
  1382. "name": "Sebastian Bergmann",
  1383. "email": "sb@sebastian-bergmann.de",
  1384. "role": "lead"
  1385. }
  1386. ],
  1387. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1388. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1389. "keywords": [
  1390. "coverage",
  1391. "testing",
  1392. "xunit"
  1393. ],
  1394. "time": "2015-10-06 15:47:00"
  1395. },
  1396. {
  1397. "name": "phpunit/php-file-iterator",
  1398. "version": "1.4.1",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1402. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  1407. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "php": ">=5.3.3"
  1412. },
  1413. "type": "library",
  1414. "extra": {
  1415. "branch-alias": {
  1416. "dev-master": "1.4.x-dev"
  1417. }
  1418. },
  1419. "autoload": {
  1420. "classmap": [
  1421. "src/"
  1422. ]
  1423. },
  1424. "notification-url": "https://packagist.org/downloads/",
  1425. "license": [
  1426. "BSD-3-Clause"
  1427. ],
  1428. "authors": [
  1429. {
  1430. "name": "Sebastian Bergmann",
  1431. "email": "sb@sebastian-bergmann.de",
  1432. "role": "lead"
  1433. }
  1434. ],
  1435. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1436. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1437. "keywords": [
  1438. "filesystem",
  1439. "iterator"
  1440. ],
  1441. "time": "2015-06-21 13:08:43"
  1442. },
  1443. {
  1444. "name": "phpunit/php-text-template",
  1445. "version": "1.2.1",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1449. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1454. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1455. "shasum": ""
  1456. },
  1457. "require": {
  1458. "php": ">=5.3.3"
  1459. },
  1460. "type": "library",
  1461. "autoload": {
  1462. "classmap": [
  1463. "src/"
  1464. ]
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "BSD-3-Clause"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "Sebastian Bergmann",
  1473. "email": "sebastian@phpunit.de",
  1474. "role": "lead"
  1475. }
  1476. ],
  1477. "description": "Simple template engine.",
  1478. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1479. "keywords": [
  1480. "template"
  1481. ],
  1482. "time": "2015-06-21 13:50:34"
  1483. },
  1484. {
  1485. "name": "phpunit/php-timer",
  1486. "version": "1.0.8",
  1487. "source": {
  1488. "type": "git",
  1489. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1490. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
  1491. },
  1492. "dist": {
  1493. "type": "zip",
  1494. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260",
  1495. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
  1496. "shasum": ""
  1497. },
  1498. "require": {
  1499. "php": ">=5.3.3"
  1500. },
  1501. "require-dev": {
  1502. "phpunit/phpunit": "~4|~5"
  1503. },
  1504. "type": "library",
  1505. "autoload": {
  1506. "classmap": [
  1507. "src/"
  1508. ]
  1509. },
  1510. "notification-url": "https://packagist.org/downloads/",
  1511. "license": [
  1512. "BSD-3-Clause"
  1513. ],
  1514. "authors": [
  1515. {
  1516. "name": "Sebastian Bergmann",
  1517. "email": "sb@sebastian-bergmann.de",
  1518. "role": "lead"
  1519. }
  1520. ],
  1521. "description": "Utility class for timing",
  1522. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1523. "keywords": [
  1524. "timer"
  1525. ],
  1526. "time": "2016-05-12 18:03:57"
  1527. },
  1528. {
  1529. "name": "phpunit/php-token-stream",
  1530. "version": "1.4.8",
  1531. "source": {
  1532. "type": "git",
  1533. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1534. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  1535. },
  1536. "dist": {
  1537. "type": "zip",
  1538. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  1539. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  1540. "shasum": ""
  1541. },
  1542. "require": {
  1543. "ext-tokenizer": "*",
  1544. "php": ">=5.3.3"
  1545. },
  1546. "require-dev": {
  1547. "phpunit/phpunit": "~4.2"
  1548. },
  1549. "type": "library",
  1550. "extra": {
  1551. "branch-alias": {
  1552. "dev-master": "1.4-dev"
  1553. }
  1554. },
  1555. "autoload": {
  1556. "classmap": [
  1557. "src/"
  1558. ]
  1559. },
  1560. "notification-url": "https://packagist.org/downloads/",
  1561. "license": [
  1562. "BSD-3-Clause"
  1563. ],
  1564. "authors": [
  1565. {
  1566. "name": "Sebastian Bergmann",
  1567. "email": "sebastian@phpunit.de"
  1568. }
  1569. ],
  1570. "description": "Wrapper around PHP's tokenizer extension.",
  1571. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1572. "keywords": [
  1573. "tokenizer"
  1574. ],
  1575. "time": "2015-09-15 10:49:45"
  1576. },
  1577. {
  1578. "name": "phpunit/phpunit",
  1579. "version": "4.8.26",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1583. "reference": "fc1d8cd5b5de11625979125c5639347896ac2c74"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fc1d8cd5b5de11625979125c5639347896ac2c74",
  1588. "reference": "fc1d8cd5b5de11625979125c5639347896ac2c74",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "ext-dom": "*",
  1593. "ext-json": "*",
  1594. "ext-pcre": "*",
  1595. "ext-reflection": "*",
  1596. "ext-spl": "*",
  1597. "php": ">=5.3.3",
  1598. "phpspec/prophecy": "^1.3.1",
  1599. "phpunit/php-code-coverage": "~2.1",
  1600. "phpunit/php-file-iterator": "~1.4",
  1601. "phpunit/php-text-template": "~1.2",
  1602. "phpunit/php-timer": "^1.0.6",
  1603. "phpunit/phpunit-mock-objects": "~2.3",
  1604. "sebastian/comparator": "~1.1",
  1605. "sebastian/diff": "~1.2",
  1606. "sebastian/environment": "~1.3",
  1607. "sebastian/exporter": "~1.2",
  1608. "sebastian/global-state": "~1.0",
  1609. "sebastian/version": "~1.0",
  1610. "symfony/yaml": "~2.1|~3.0"
  1611. },
  1612. "suggest": {
  1613. "phpunit/php-invoker": "~1.1"
  1614. },
  1615. "bin": [
  1616. "phpunit"
  1617. ],
  1618. "type": "library",
  1619. "extra": {
  1620. "branch-alias": {
  1621. "dev-master": "4.8.x-dev"
  1622. }
  1623. },
  1624. "autoload": {
  1625. "classmap": [
  1626. "src/"
  1627. ]
  1628. },
  1629. "notification-url": "https://packagist.org/downloads/",
  1630. "license": [
  1631. "BSD-3-Clause"
  1632. ],
  1633. "authors": [
  1634. {
  1635. "name": "Sebastian Bergmann",
  1636. "email": "sebastian@phpunit.de",
  1637. "role": "lead"
  1638. }
  1639. ],
  1640. "description": "The PHP Unit Testing framework.",
  1641. "homepage": "https://phpunit.de/",
  1642. "keywords": [
  1643. "phpunit",
  1644. "testing",
  1645. "xunit"
  1646. ],
  1647. "time": "2016-05-17 03:09:28"
  1648. },
  1649. {
  1650. "name": "phpunit/phpunit-mock-objects",
  1651. "version": "2.3.8",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1655. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1660. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1661. "shasum": ""
  1662. },
  1663. "require": {
  1664. "doctrine/instantiator": "^1.0.2",
  1665. "php": ">=5.3.3",
  1666. "phpunit/php-text-template": "~1.2",
  1667. "sebastian/exporter": "~1.2"
  1668. },
  1669. "require-dev": {
  1670. "phpunit/phpunit": "~4.4"
  1671. },
  1672. "suggest": {
  1673. "ext-soap": "*"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "branch-alias": {
  1678. "dev-master": "2.3.x-dev"
  1679. }
  1680. },
  1681. "autoload": {
  1682. "classmap": [
  1683. "src/"
  1684. ]
  1685. },
  1686. "notification-url": "https://packagist.org/downloads/",
  1687. "license": [
  1688. "BSD-3-Clause"
  1689. ],
  1690. "authors": [
  1691. {
  1692. "name": "Sebastian Bergmann",
  1693. "email": "sb@sebastian-bergmann.de",
  1694. "role": "lead"
  1695. }
  1696. ],
  1697. "description": "Mock Object library for PHPUnit",
  1698. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1699. "keywords": [
  1700. "mock",
  1701. "xunit"
  1702. ],
  1703. "time": "2015-10-02 06:51:40"
  1704. },
  1705. {
  1706. "name": "sebastian/comparator",
  1707. "version": "1.2.0",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/sebastianbergmann/comparator.git",
  1711. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
  1716. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "php": ">=5.3.3",
  1721. "sebastian/diff": "~1.2",
  1722. "sebastian/exporter": "~1.2"
  1723. },
  1724. "require-dev": {
  1725. "phpunit/phpunit": "~4.4"
  1726. },
  1727. "type": "library",
  1728. "extra": {
  1729. "branch-alias": {
  1730. "dev-master": "1.2.x-dev"
  1731. }
  1732. },
  1733. "autoload": {
  1734. "classmap": [
  1735. "src/"
  1736. ]
  1737. },
  1738. "notification-url": "https://packagist.org/downloads/",
  1739. "license": [
  1740. "BSD-3-Clause"
  1741. ],
  1742. "authors": [
  1743. {
  1744. "name": "Jeff Welch",
  1745. "email": "whatthejeff@gmail.com"
  1746. },
  1747. {
  1748. "name": "Volker Dusch",
  1749. "email": "github@wallbash.com"
  1750. },
  1751. {
  1752. "name": "Bernhard Schussek",
  1753. "email": "bschussek@2bepublished.at"
  1754. },
  1755. {
  1756. "name": "Sebastian Bergmann",
  1757. "email": "sebastian@phpunit.de"
  1758. }
  1759. ],
  1760. "description": "Provides the functionality to compare PHP values for equality",
  1761. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1762. "keywords": [
  1763. "comparator",
  1764. "compare",
  1765. "equality"
  1766. ],
  1767. "time": "2015-07-26 15:48:44"
  1768. },
  1769. {
  1770. "name": "sebastian/diff",
  1771. "version": "1.4.1",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/sebastianbergmann/diff.git",
  1775. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  1780. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  1781. "shasum": ""
  1782. },
  1783. "require": {
  1784. "php": ">=5.3.3"
  1785. },
  1786. "require-dev": {
  1787. "phpunit/phpunit": "~4.8"
  1788. },
  1789. "type": "library",
  1790. "extra": {
  1791. "branch-alias": {
  1792. "dev-master": "1.4-dev"
  1793. }
  1794. },
  1795. "autoload": {
  1796. "classmap": [
  1797. "src/"
  1798. ]
  1799. },
  1800. "notification-url": "https://packagist.org/downloads/",
  1801. "license": [
  1802. "BSD-3-Clause"
  1803. ],
  1804. "authors": [
  1805. {
  1806. "name": "Kore Nordmann",
  1807. "email": "mail@kore-nordmann.de"
  1808. },
  1809. {
  1810. "name": "Sebastian Bergmann",
  1811. "email": "sebastian@phpunit.de"
  1812. }
  1813. ],
  1814. "description": "Diff implementation",
  1815. "homepage": "https://github.com/sebastianbergmann/diff",
  1816. "keywords": [
  1817. "diff"
  1818. ],
  1819. "time": "2015-12-08 07:14:41"
  1820. },
  1821. {
  1822. "name": "sebastian/environment",
  1823. "version": "1.3.7",
  1824. "source": {
  1825. "type": "git",
  1826. "url": "https://github.com/sebastianbergmann/environment.git",
  1827. "reference": "4e8f0da10ac5802913afc151413bc8c53b6c2716"
  1828. },
  1829. "dist": {
  1830. "type": "zip",
  1831. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/4e8f0da10ac5802913afc151413bc8c53b6c2716",
  1832. "reference": "4e8f0da10ac5802913afc151413bc8c53b6c2716",
  1833. "shasum": ""
  1834. },
  1835. "require": {
  1836. "php": ">=5.3.3"
  1837. },
  1838. "require-dev": {
  1839. "phpunit/phpunit": "~4.4"
  1840. },
  1841. "type": "library",
  1842. "extra": {
  1843. "branch-alias": {
  1844. "dev-master": "1.3.x-dev"
  1845. }
  1846. },
  1847. "autoload": {
  1848. "classmap": [
  1849. "src/"
  1850. ]
  1851. },
  1852. "notification-url": "https://packagist.org/downloads/",
  1853. "license": [
  1854. "BSD-3-Clause"
  1855. ],
  1856. "authors": [
  1857. {
  1858. "name": "Sebastian Bergmann",
  1859. "email": "sebastian@phpunit.de"
  1860. }
  1861. ],
  1862. "description": "Provides functionality to handle HHVM/PHP environments",
  1863. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1864. "keywords": [
  1865. "Xdebug",
  1866. "environment",
  1867. "hhvm"
  1868. ],
  1869. "time": "2016-05-17 03:18:57"
  1870. },
  1871. {
  1872. "name": "sebastian/exporter",
  1873. "version": "1.2.1",
  1874. "source": {
  1875. "type": "git",
  1876. "url": "https://github.com/sebastianbergmann/exporter.git",
  1877. "reference": "7ae5513327cb536431847bcc0c10edba2701064e"
  1878. },
  1879. "dist": {
  1880. "type": "zip",
  1881. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e",
  1882. "reference": "7ae5513327cb536431847bcc0c10edba2701064e",
  1883. "shasum": ""
  1884. },
  1885. "require": {
  1886. "php": ">=5.3.3",
  1887. "sebastian/recursion-context": "~1.0"
  1888. },
  1889. "require-dev": {
  1890. "phpunit/phpunit": "~4.4"
  1891. },
  1892. "type": "library",
  1893. "extra": {
  1894. "branch-alias": {
  1895. "dev-master": "1.2.x-dev"
  1896. }
  1897. },
  1898. "autoload": {
  1899. "classmap": [
  1900. "src/"
  1901. ]
  1902. },
  1903. "notification-url": "https://packagist.org/downloads/",
  1904. "license": [
  1905. "BSD-3-Clause"
  1906. ],
  1907. "authors": [
  1908. {
  1909. "name": "Jeff Welch",
  1910. "email": "whatthejeff@gmail.com"
  1911. },
  1912. {
  1913. "name": "Volker Dusch",
  1914. "email": "github@wallbash.com"
  1915. },
  1916. {
  1917. "name": "Bernhard Schussek",
  1918. "email": "bschussek@2bepublished.at"
  1919. },
  1920. {
  1921. "name": "Sebastian Bergmann",
  1922. "email": "sebastian@phpunit.de"
  1923. },
  1924. {
  1925. "name": "Adam Harvey",
  1926. "email": "aharvey@php.net"
  1927. }
  1928. ],
  1929. "description": "Provides the functionality to export PHP variables for visualization",
  1930. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1931. "keywords": [
  1932. "export",
  1933. "exporter"
  1934. ],
  1935. "time": "2015-06-21 07:55:53"
  1936. },
  1937. {
  1938. "name": "sebastian/global-state",
  1939. "version": "1.1.1",
  1940. "source": {
  1941. "type": "git",
  1942. "url": "https://github.com/sebastianbergmann/global-state.git",
  1943. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1944. },
  1945. "dist": {
  1946. "type": "zip",
  1947. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1948. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1949. "shasum": ""
  1950. },
  1951. "require": {
  1952. "php": ">=5.3.3"
  1953. },
  1954. "require-dev": {
  1955. "phpunit/phpunit": "~4.2"
  1956. },
  1957. "suggest": {
  1958. "ext-uopz": "*"
  1959. },
  1960. "type": "library",
  1961. "extra": {
  1962. "branch-alias": {
  1963. "dev-master": "1.0-dev"
  1964. }
  1965. },
  1966. "autoload": {
  1967. "classmap": [
  1968. "src/"
  1969. ]
  1970. },
  1971. "notification-url": "https://packagist.org/downloads/",
  1972. "license": [
  1973. "BSD-3-Clause"
  1974. ],
  1975. "authors": [
  1976. {
  1977. "name": "Sebastian Bergmann",
  1978. "email": "sebastian@phpunit.de"
  1979. }
  1980. ],
  1981. "description": "Snapshotting of global state",
  1982. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1983. "keywords": [
  1984. "global state"
  1985. ],
  1986. "time": "2015-10-12 03:26:01"
  1987. },
  1988. {
  1989. "name": "sebastian/recursion-context",
  1990. "version": "1.0.2",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1994. "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
  1999. "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
  2000. "shasum": ""
  2001. },
  2002. "require": {
  2003. "php": ">=5.3.3"
  2004. },
  2005. "require-dev": {
  2006. "phpunit/phpunit": "~4.4"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "1.0.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "classmap": [
  2016. "src/"
  2017. ]
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "BSD-3-Clause"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Jeff Welch",
  2026. "email": "whatthejeff@gmail.com"
  2027. },
  2028. {
  2029. "name": "Sebastian Bergmann",
  2030. "email": "sebastian@phpunit.de"
  2031. },
  2032. {
  2033. "name": "Adam Harvey",
  2034. "email": "aharvey@php.net"
  2035. }
  2036. ],
  2037. "description": "Provides functionality to recursively process PHP variables",
  2038. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2039. "time": "2015-11-11 19:50:13"
  2040. },
  2041. {
  2042. "name": "sebastian/version",
  2043. "version": "1.0.6",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://github.com/sebastianbergmann/version.git",
  2047. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2052. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2053. "shasum": ""
  2054. },
  2055. "type": "library",
  2056. "autoload": {
  2057. "classmap": [
  2058. "src/"
  2059. ]
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "BSD-3-Clause"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Sebastian Bergmann",
  2068. "email": "sebastian@phpunit.de",
  2069. "role": "lead"
  2070. }
  2071. ],
  2072. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2073. "homepage": "https://github.com/sebastianbergmann/version",
  2074. "time": "2015-06-21 13:59:46"
  2075. },
  2076. {
  2077. "name": "symfony/yaml",
  2078. "version": "v3.1.0",
  2079. "source": {
  2080. "type": "git",
  2081. "url": "https://github.com/symfony/yaml.git",
  2082. "reference": "eca51b7b65eb9be6af88ad7cc91685f1556f5c9a"
  2083. },
  2084. "dist": {
  2085. "type": "zip",
  2086. "url": "https://api.github.com/repos/symfony/yaml/zipball/eca51b7b65eb9be6af88ad7cc91685f1556f5c9a",
  2087. "reference": "eca51b7b65eb9be6af88ad7cc91685f1556f5c9a",
  2088. "shasum": ""
  2089. },
  2090. "require": {
  2091. "php": ">=5.5.9"
  2092. },
  2093. "type": "library",
  2094. "extra": {
  2095. "branch-alias": {
  2096. "dev-master": "3.1-dev"
  2097. }
  2098. },
  2099. "autoload": {
  2100. "psr-4": {
  2101. "Symfony\\Component\\Yaml\\": ""
  2102. },
  2103. "exclude-from-classmap": [
  2104. "/Tests/"
  2105. ]
  2106. },
  2107. "notification-url": "https://packagist.org/downloads/",
  2108. "license": [
  2109. "MIT"
  2110. ],
  2111. "authors": [
  2112. {
  2113. "name": "Fabien Potencier",
  2114. "email": "fabien@symfony.com"
  2115. },
  2116. {
  2117. "name": "Symfony Community",
  2118. "homepage": "https://symfony.com/contributors"
  2119. }
  2120. ],
  2121. "description": "Symfony Yaml Component",
  2122. "homepage": "https://symfony.com",
  2123. "time": "2016-05-26 21:46:24"
  2124. },
  2125. {
  2126. "name": "twig/twig",
  2127. "version": "v1.24.1",
  2128. "source": {
  2129. "type": "git",
  2130. "url": "https://github.com/twigphp/Twig.git",
  2131. "reference": "3566d311a92aae4deec6e48682dc5a4528c4a512"
  2132. },
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3566d311a92aae4deec6e48682dc5a4528c4a512",
  2136. "reference": "3566d311a92aae4deec6e48682dc5a4528c4a512",
  2137. "shasum": ""
  2138. },
  2139. "require": {
  2140. "php": ">=5.2.7"
  2141. },
  2142. "require-dev": {
  2143. "symfony/debug": "~2.7",
  2144. "symfony/phpunit-bridge": "~2.7"
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "branch-alias": {
  2149. "dev-master": "1.24-dev"
  2150. }
  2151. },
  2152. "autoload": {
  2153. "psr-0": {
  2154. "Twig_": "lib/"
  2155. }
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "BSD-3-Clause"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "Fabien Potencier",
  2164. "email": "fabien@symfony.com",
  2165. "homepage": "http://fabien.potencier.org",
  2166. "role": "Lead Developer"
  2167. },
  2168. {
  2169. "name": "Armin Ronacher",
  2170. "email": "armin.ronacher@active-4.com",
  2171. "role": "Project Founder"
  2172. },
  2173. {
  2174. "name": "Twig Team",
  2175. "homepage": "http://twig.sensiolabs.org/contributors",
  2176. "role": "Contributors"
  2177. }
  2178. ],
  2179. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2180. "homepage": "http://twig.sensiolabs.org",
  2181. "keywords": [
  2182. "templating"
  2183. ],
  2184. "time": "2016-05-30 09:11:59"
  2185. },
  2186. {
  2187. "name": "vlucas/phpdotenv",
  2188. "version": "v1.1.1",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/vlucas/phpdotenv.git",
  2192. "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa",
  2197. "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "php": ">=5.3.2"
  2202. },
  2203. "require-dev": {
  2204. "phpunit/phpunit": "~4.0"
  2205. },
  2206. "type": "library",
  2207. "autoload": {
  2208. "psr-0": {
  2209. "Dotenv": "src/"
  2210. }
  2211. },
  2212. "notification-url": "https://packagist.org/downloads/",
  2213. "license": [
  2214. "BSD"
  2215. ],
  2216. "authors": [
  2217. {
  2218. "name": "Vance Lucas",
  2219. "email": "vance@vancelucas.com",
  2220. "homepage": "http://www.vancelucas.com"
  2221. }
  2222. ],
  2223. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2224. "homepage": "http://github.com/vlucas/phpdotenv",
  2225. "keywords": [
  2226. "dotenv",
  2227. "env",
  2228. "environment"
  2229. ],
  2230. "time": "2015-05-30 15:59:26"
  2231. }
  2232. ],
  2233. "aliases": [],
  2234. "minimum-stability": "dev",
  2235. "stability-flags": {
  2236. "luticate/auth": 20
  2237. },
  2238. "prefer-stable": false,
  2239. "prefer-lowest": false,
  2240. "platform": {
  2241. "php": ">=5.5.9"
  2242. },
  2243. "platform-dev": []
  2244. }