composer.lock 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "2147ab04df61e658b40678d09ffd7db6",
  8. "packages": [
  9. {
  10. "name": "aferrandini/phpqrcode",
  11. "version": "1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aferrandini/PHPQRCode.git",
  15. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aferrandini/PHPQRCode/zipball/3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  20. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-0": {
  29. "PHPQRCode": "lib/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "MIT"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Ariel Ferrandini",
  39. "email": "arielferrandini@gmail.com",
  40. "homepage": "http://www.ferrandini.com/",
  41. "role": "Developer"
  42. }
  43. ],
  44. "description": "PHPQRCode porting and changed for PHP 5.3 compatibility",
  45. "homepage": "https://github.com/aferrandini/PHPQRCode",
  46. "keywords": [
  47. "barcode",
  48. "php",
  49. "qrcode"
  50. ],
  51. "time": "2013-07-08 09:39:08"
  52. },
  53. {
  54. "name": "alchemy/binary-driver",
  55. "version": "1.5.0",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  59. "reference": "b32c03d4b56ce29f783051eac55887adae654b41"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/b32c03d4b56ce29f783051eac55887adae654b41",
  64. "reference": "b32c03d4b56ce29f783051eac55887adae654b41",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "evenement/evenement": "~1.0",
  69. "monolog/monolog": "~1.3",
  70. "php": ">=5.3.3",
  71. "psr/log": "~1.0",
  72. "symfony/process": "~2.0"
  73. },
  74. "require-dev": {
  75. "phpunit/phpunit": "~3.7"
  76. },
  77. "type": "library",
  78. "autoload": {
  79. "psr-0": {
  80. "Alchemy": "src"
  81. }
  82. },
  83. "notification-url": "https://packagist.org/downloads/",
  84. "license": [
  85. "MIT"
  86. ],
  87. "authors": [
  88. {
  89. "name": "Romain Neutron",
  90. "email": "imprec@gmail.com",
  91. "homepage": "http://www.lickmychip.com/"
  92. },
  93. {
  94. "name": "nlegoff",
  95. "email": "legoff.n@gmail.com"
  96. },
  97. {
  98. "name": "Phraseanet Team",
  99. "email": "info@alchemy.fr",
  100. "homepage": "http://www.phraseanet.com/"
  101. }
  102. ],
  103. "description": "A set of tools to build binary drivers",
  104. "keywords": [
  105. "binary",
  106. "driver"
  107. ],
  108. "time": "2013-06-21 15:51:20"
  109. },
  110. {
  111. "name": "barryvdh/elfinder-builds",
  112. "version": "v2.1.0.3",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/barryvdh/elfinder-builds.git",
  116. "reference": "5826d79edbeccf2a63404f7ca8e9ca66758fd762"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/barryvdh/elfinder-builds/zipball/5826d79edbeccf2a63404f7ca8e9ca66758fd762",
  121. "reference": "5826d79edbeccf2a63404f7ca8e9ca66758fd762",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "php": ">=5.2"
  126. },
  127. "type": "library",
  128. "extra": {
  129. "branch-alias": {
  130. "dev-master": "2.1-dev"
  131. }
  132. },
  133. "autoload": {
  134. "classmap": [
  135. "php"
  136. ]
  137. },
  138. "notification-url": "https://packagist.org/downloads/",
  139. "license": [
  140. "BSD-3-Clause"
  141. ],
  142. "authors": [
  143. {
  144. "name": "Dmitry Levashov",
  145. "email": "dio@std42.ru",
  146. "homepage": "http://std42.ru"
  147. },
  148. {
  149. "name": "Troex Nevelin",
  150. "email": "troex@fury.scancode.ru",
  151. "homepage": "http://std42.ru"
  152. },
  153. {
  154. "name": "Naoki Sawada",
  155. "email": "hypweb@gmail.com",
  156. "homepage": "http://xoops.hypweb.net"
  157. },
  158. {
  159. "name": "Community contributions",
  160. "homepage": "https://github.com/Studio-42/elFinder/contributors"
  161. }
  162. ],
  163. "description": "File manager for web",
  164. "homepage": "http://elfinder.org",
  165. "time": "2015-02-11 11:10:51"
  166. },
  167. {
  168. "name": "behat/transliterator",
  169. "version": "v1.0.1",
  170. "source": {
  171. "type": "git",
  172. "url": "https://github.com/Behat/Transliterator.git",
  173. "reference": "c93521d3462a554332d1ef5bb0e9b5b8ca4106c4"
  174. },
  175. "dist": {
  176. "type": "zip",
  177. "url": "https://api.github.com/repos/Behat/Transliterator/zipball/c93521d3462a554332d1ef5bb0e9b5b8ca4106c4",
  178. "reference": "c93521d3462a554332d1ef5bb0e9b5b8ca4106c4",
  179. "shasum": ""
  180. },
  181. "require": {
  182. "php": ">=5.3.3"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "branch-alias": {
  187. "dev-master": "1.0-dev"
  188. }
  189. },
  190. "autoload": {
  191. "psr-0": {
  192. "Behat\\Transliterator": "src/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "Artistic-1.0"
  198. ],
  199. "description": "String transliterator",
  200. "keywords": [
  201. "i18n",
  202. "slug",
  203. "transliterator"
  204. ],
  205. "time": "2014-05-15 22:08:22"
  206. },
  207. {
  208. "name": "ckeditor/ckeditor",
  209. "version": "4.4.7",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/ckeditor/ckeditor-releases.git",
  213. "reference": "cc324415302784eb1abe33a3762fbdd3b48c558b"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/ckeditor/ckeditor-releases/zipball/cc324415302784eb1abe33a3762fbdd3b48c558b",
  218. "reference": "cc324415302784eb1abe33a3762fbdd3b48c558b",
  219. "shasum": ""
  220. },
  221. "type": "library",
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "GPL-2.0+",
  225. "LGPL-2.1+",
  226. "MPL-1.1+"
  227. ],
  228. "authors": [
  229. {
  230. "name": "CKSource",
  231. "homepage": "http://cksource.com"
  232. }
  233. ],
  234. "description": "JavaScript WYSIWYG web text editor.",
  235. "homepage": "http://ckeditor.com",
  236. "keywords": [
  237. "CKEditor",
  238. "editor",
  239. "fckeditor",
  240. "html",
  241. "javascript",
  242. "richtext",
  243. "text",
  244. "wysiwyg"
  245. ],
  246. "time": "2015-01-27 15:13:53"
  247. },
  248. {
  249. "name": "doctrine/annotations",
  250. "version": "v1.2.3",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/annotations.git",
  254. "reference": "eeda578cbe24a170331a1cfdf78be723412df7a4"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/annotations/zipball/eeda578cbe24a170331a1cfdf78be723412df7a4",
  259. "reference": "eeda578cbe24a170331a1cfdf78be723412df7a4",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "doctrine/lexer": "1.*",
  264. "php": ">=5.3.2"
  265. },
  266. "require-dev": {
  267. "doctrine/cache": "1.*",
  268. "phpunit/phpunit": "4.*"
  269. },
  270. "type": "library",
  271. "extra": {
  272. "branch-alias": {
  273. "dev-master": "1.3.x-dev"
  274. }
  275. },
  276. "autoload": {
  277. "psr-0": {
  278. "Doctrine\\Common\\Annotations\\": "lib/"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Roman Borschel",
  288. "email": "roman@code-factory.org"
  289. },
  290. {
  291. "name": "Benjamin Eberlei",
  292. "email": "kontakt@beberlei.de"
  293. },
  294. {
  295. "name": "Guilherme Blanco",
  296. "email": "guilhermeblanco@gmail.com"
  297. },
  298. {
  299. "name": "Jonathan Wage",
  300. "email": "jonwage@gmail.com"
  301. },
  302. {
  303. "name": "Johannes Schmitt",
  304. "email": "schmittjoh@gmail.com"
  305. }
  306. ],
  307. "description": "Docblock Annotations Parser",
  308. "homepage": "http://www.doctrine-project.org",
  309. "keywords": [
  310. "annotations",
  311. "docblock",
  312. "parser"
  313. ],
  314. "time": "2014-12-20 20:49:38"
  315. },
  316. {
  317. "name": "doctrine/cache",
  318. "version": "v1.4.0",
  319. "source": {
  320. "type": "git",
  321. "url": "https://github.com/doctrine/cache.git",
  322. "reference": "2346085d2b027b233ae1d5de59b07440b9f288c8"
  323. },
  324. "dist": {
  325. "type": "zip",
  326. "url": "https://api.github.com/repos/doctrine/cache/zipball/2346085d2b027b233ae1d5de59b07440b9f288c8",
  327. "reference": "2346085d2b027b233ae1d5de59b07440b9f288c8",
  328. "shasum": ""
  329. },
  330. "require": {
  331. "php": ">=5.3.2"
  332. },
  333. "conflict": {
  334. "doctrine/common": ">2.2,<2.4"
  335. },
  336. "require-dev": {
  337. "phpunit/phpunit": ">=3.7",
  338. "predis/predis": "~0.8",
  339. "satooshi/php-coveralls": "~0.6"
  340. },
  341. "type": "library",
  342. "extra": {
  343. "branch-alias": {
  344. "dev-master": "1.4.x-dev"
  345. }
  346. },
  347. "autoload": {
  348. "psr-0": {
  349. "Doctrine\\Common\\Cache\\": "lib/"
  350. }
  351. },
  352. "notification-url": "https://packagist.org/downloads/",
  353. "license": [
  354. "MIT"
  355. ],
  356. "authors": [
  357. {
  358. "name": "Roman Borschel",
  359. "email": "roman@code-factory.org"
  360. },
  361. {
  362. "name": "Benjamin Eberlei",
  363. "email": "kontakt@beberlei.de"
  364. },
  365. {
  366. "name": "Guilherme Blanco",
  367. "email": "guilhermeblanco@gmail.com"
  368. },
  369. {
  370. "name": "Jonathan Wage",
  371. "email": "jonwage@gmail.com"
  372. },
  373. {
  374. "name": "Johannes Schmitt",
  375. "email": "schmittjoh@gmail.com"
  376. }
  377. ],
  378. "description": "Caching library offering an object-oriented API for many cache backends",
  379. "homepage": "http://www.doctrine-project.org",
  380. "keywords": [
  381. "cache",
  382. "caching"
  383. ],
  384. "time": "2015-01-15 20:38:55"
  385. },
  386. {
  387. "name": "doctrine/collections",
  388. "version": "v1.2",
  389. "source": {
  390. "type": "git",
  391. "url": "https://github.com/doctrine/collections.git",
  392. "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2"
  393. },
  394. "dist": {
  395. "type": "zip",
  396. "url": "https://api.github.com/repos/doctrine/collections/zipball/b99c5c46c87126201899afe88ec490a25eedd6a2",
  397. "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2",
  398. "shasum": ""
  399. },
  400. "require": {
  401. "php": ">=5.3.2"
  402. },
  403. "type": "library",
  404. "extra": {
  405. "branch-alias": {
  406. "dev-master": "1.2.x-dev"
  407. }
  408. },
  409. "autoload": {
  410. "psr-0": {
  411. "Doctrine\\Common\\Collections\\": "lib/"
  412. }
  413. },
  414. "notification-url": "https://packagist.org/downloads/",
  415. "license": [
  416. "MIT"
  417. ],
  418. "authors": [
  419. {
  420. "name": "Jonathan Wage",
  421. "email": "jonwage@gmail.com",
  422. "homepage": "http://www.jwage.com/",
  423. "role": "Creator"
  424. },
  425. {
  426. "name": "Guilherme Blanco",
  427. "email": "guilhermeblanco@gmail.com",
  428. "homepage": "http://www.instaclick.com"
  429. },
  430. {
  431. "name": "Roman Borschel",
  432. "email": "roman@code-factory.org"
  433. },
  434. {
  435. "name": "Benjamin Eberlei",
  436. "email": "kontakt@beberlei.de"
  437. },
  438. {
  439. "name": "Johannes Schmitt",
  440. "email": "schmittjoh@gmail.com",
  441. "homepage": "https://github.com/schmittjoh",
  442. "role": "Developer of wrapped JMSSerializerBundle"
  443. }
  444. ],
  445. "description": "Collections Abstraction library",
  446. "homepage": "http://www.doctrine-project.org",
  447. "keywords": [
  448. "array",
  449. "collections",
  450. "iterator"
  451. ],
  452. "time": "2014-02-03 23:07:43"
  453. },
  454. {
  455. "name": "doctrine/common",
  456. "version": "v2.4.2",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/doctrine/common.git",
  460. "reference": "5db6ab40e4c531f14dad4ca96a394dfce5d4255b"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/doctrine/common/zipball/5db6ab40e4c531f14dad4ca96a394dfce5d4255b",
  465. "reference": "5db6ab40e4c531f14dad4ca96a394dfce5d4255b",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "doctrine/annotations": "1.*",
  470. "doctrine/cache": "1.*",
  471. "doctrine/collections": "1.*",
  472. "doctrine/inflector": "1.*",
  473. "doctrine/lexer": "1.*",
  474. "php": ">=5.3.2"
  475. },
  476. "require-dev": {
  477. "phpunit/phpunit": "~3.7"
  478. },
  479. "type": "library",
  480. "extra": {
  481. "branch-alias": {
  482. "dev-master": "2.4.x-dev"
  483. }
  484. },
  485. "autoload": {
  486. "psr-0": {
  487. "Doctrine\\Common\\": "lib/"
  488. }
  489. },
  490. "notification-url": "https://packagist.org/downloads/",
  491. "license": [
  492. "MIT"
  493. ],
  494. "authors": [
  495. {
  496. "name": "Jonathan Wage",
  497. "email": "jonwage@gmail.com",
  498. "homepage": "http://www.jwage.com/",
  499. "role": "Creator"
  500. },
  501. {
  502. "name": "Guilherme Blanco",
  503. "email": "guilhermeblanco@gmail.com",
  504. "homepage": "http://www.instaclick.com"
  505. },
  506. {
  507. "name": "Roman Borschel",
  508. "email": "roman@code-factory.org"
  509. },
  510. {
  511. "name": "Benjamin Eberlei",
  512. "email": "kontakt@beberlei.de"
  513. },
  514. {
  515. "name": "Johannes Schmitt",
  516. "email": "schmittjoh@gmail.com",
  517. "homepage": "https://github.com/schmittjoh",
  518. "role": "Developer of wrapped JMSSerializerBundle"
  519. }
  520. ],
  521. "description": "Common Library for Doctrine projects",
  522. "homepage": "http://www.doctrine-project.org",
  523. "keywords": [
  524. "annotations",
  525. "collections",
  526. "eventmanager",
  527. "persistence",
  528. "spl"
  529. ],
  530. "time": "2014-05-21 19:28:51"
  531. },
  532. {
  533. "name": "doctrine/dbal",
  534. "version": "v2.5.1",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/doctrine/dbal.git",
  538. "reference": "628c2256b646ae2417d44e063bce8aec5199d48d"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/doctrine/dbal/zipball/628c2256b646ae2417d44e063bce8aec5199d48d",
  543. "reference": "628c2256b646ae2417d44e063bce8aec5199d48d",
  544. "shasum": ""
  545. },
  546. "require": {
  547. "doctrine/common": ">=2.4,<2.6-dev",
  548. "php": ">=5.3.2"
  549. },
  550. "require-dev": {
  551. "phpunit/phpunit": "4.*",
  552. "symfony/console": "2.*"
  553. },
  554. "suggest": {
  555. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  556. },
  557. "bin": [
  558. "bin/doctrine-dbal"
  559. ],
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-master": "2.5.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-0": {
  568. "Doctrine\\DBAL\\": "lib/"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Roman Borschel",
  578. "email": "roman@code-factory.org"
  579. },
  580. {
  581. "name": "Benjamin Eberlei",
  582. "email": "kontakt@beberlei.de"
  583. },
  584. {
  585. "name": "Guilherme Blanco",
  586. "email": "guilhermeblanco@gmail.com"
  587. },
  588. {
  589. "name": "Jonathan Wage",
  590. "email": "jonwage@gmail.com"
  591. }
  592. ],
  593. "description": "Database Abstraction Layer",
  594. "homepage": "http://www.doctrine-project.org",
  595. "keywords": [
  596. "database",
  597. "dbal",
  598. "persistence",
  599. "queryobject"
  600. ],
  601. "time": "2015-01-12 21:52:47"
  602. },
  603. {
  604. "name": "doctrine/inflector",
  605. "version": "v1.0.1",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/doctrine/inflector.git",
  609. "reference": "0bcb2e79d8571787f18b7eb036ed3d004908e604"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/doctrine/inflector/zipball/0bcb2e79d8571787f18b7eb036ed3d004908e604",
  614. "reference": "0bcb2e79d8571787f18b7eb036ed3d004908e604",
  615. "shasum": ""
  616. },
  617. "require": {
  618. "php": ">=5.3.2"
  619. },
  620. "require-dev": {
  621. "phpunit/phpunit": "4.*"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "branch-alias": {
  626. "dev-master": "1.0.x-dev"
  627. }
  628. },
  629. "autoload": {
  630. "psr-0": {
  631. "Doctrine\\Common\\Inflector\\": "lib/"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Roman Borschel",
  641. "email": "roman@code-factory.org"
  642. },
  643. {
  644. "name": "Benjamin Eberlei",
  645. "email": "kontakt@beberlei.de"
  646. },
  647. {
  648. "name": "Guilherme Blanco",
  649. "email": "guilhermeblanco@gmail.com"
  650. },
  651. {
  652. "name": "Jonathan Wage",
  653. "email": "jonwage@gmail.com"
  654. },
  655. {
  656. "name": "Johannes Schmitt",
  657. "email": "schmittjoh@gmail.com"
  658. }
  659. ],
  660. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  661. "homepage": "http://www.doctrine-project.org",
  662. "keywords": [
  663. "inflection",
  664. "pluralize",
  665. "singularize",
  666. "string"
  667. ],
  668. "time": "2014-12-20 21:24:13"
  669. },
  670. {
  671. "name": "doctrine/lexer",
  672. "version": "v1.0.1",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/doctrine/lexer.git",
  676. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  681. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  682. "shasum": ""
  683. },
  684. "require": {
  685. "php": ">=5.3.2"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "branch-alias": {
  690. "dev-master": "1.0.x-dev"
  691. }
  692. },
  693. "autoload": {
  694. "psr-0": {
  695. "Doctrine\\Common\\Lexer\\": "lib/"
  696. }
  697. },
  698. "notification-url": "https://packagist.org/downloads/",
  699. "license": [
  700. "MIT"
  701. ],
  702. "authors": [
  703. {
  704. "name": "Roman Borschel",
  705. "email": "roman@code-factory.org"
  706. },
  707. {
  708. "name": "Guilherme Blanco",
  709. "email": "guilhermeblanco@gmail.com"
  710. },
  711. {
  712. "name": "Johannes Schmitt",
  713. "email": "schmittjoh@gmail.com"
  714. }
  715. ],
  716. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  717. "homepage": "http://www.doctrine-project.org",
  718. "keywords": [
  719. "lexer",
  720. "parser"
  721. ],
  722. "time": "2014-09-09 13:34:57"
  723. },
  724. {
  725. "name": "doctrine/orm",
  726. "version": "v2.4.7",
  727. "source": {
  728. "type": "git",
  729. "url": "https://github.com/doctrine/doctrine2.git",
  730. "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68"
  731. },
  732. "dist": {
  733. "type": "zip",
  734. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68",
  735. "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68",
  736. "shasum": ""
  737. },
  738. "require": {
  739. "doctrine/collections": "~1.1",
  740. "doctrine/dbal": "~2.4",
  741. "ext-pdo": "*",
  742. "php": ">=5.3.2",
  743. "symfony/console": "~2.0"
  744. },
  745. "require-dev": {
  746. "satooshi/php-coveralls": "dev-master",
  747. "symfony/yaml": "~2.1"
  748. },
  749. "suggest": {
  750. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  751. },
  752. "bin": [
  753. "bin/doctrine",
  754. "bin/doctrine.php"
  755. ],
  756. "type": "library",
  757. "extra": {
  758. "branch-alias": {
  759. "dev-master": "2.4.x-dev"
  760. }
  761. },
  762. "autoload": {
  763. "psr-0": {
  764. "Doctrine\\ORM\\": "lib/"
  765. }
  766. },
  767. "notification-url": "https://packagist.org/downloads/",
  768. "license": [
  769. "MIT"
  770. ],
  771. "authors": [
  772. {
  773. "name": "Roman Borschel",
  774. "email": "roman@code-factory.org"
  775. },
  776. {
  777. "name": "Benjamin Eberlei",
  778. "email": "kontakt@beberlei.de"
  779. },
  780. {
  781. "name": "Guilherme Blanco",
  782. "email": "guilhermeblanco@gmail.com"
  783. },
  784. {
  785. "name": "Jonathan Wage",
  786. "email": "jonwage@gmail.com"
  787. }
  788. ],
  789. "description": "Object-Relational-Mapper for PHP",
  790. "homepage": "http://www.doctrine-project.org",
  791. "keywords": [
  792. "database",
  793. "orm"
  794. ],
  795. "time": "2014-12-16 13:45:01"
  796. },
  797. {
  798. "name": "emojione/emojione",
  799. "version": "v1.3.0",
  800. "source": {
  801. "type": "git",
  802. "url": "https://github.com/Ranks/emojione.git",
  803. "reference": "2a34acf3771a219045e133063aa759035d4f842c"
  804. },
  805. "dist": {
  806. "type": "zip",
  807. "url": "https://api.github.com/repos/Ranks/emojione/zipball/2a34acf3771a219045e133063aa759035d4f842c",
  808. "reference": "2a34acf3771a219045e133063aa759035d4f842c",
  809. "shasum": ""
  810. },
  811. "require": {
  812. "php": ">=5.3"
  813. },
  814. "type": "library",
  815. "autoload": {
  816. "psr-4": {
  817. "Emojione\\": "lib/php/src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "description": "Emoji One is a complete set of emojis designed for the web. It includes libraries to easily convert unicode characters to shortnames (:smile:) and shortnames to our custom emoji images. PNG and SVG formats provided for the emoji images.",
  822. "homepage": "http://www.emojione.com",
  823. "keywords": [
  824. "Emoji One",
  825. "emoji",
  826. "emojione",
  827. "emojis",
  828. "emoticons",
  829. "smileys",
  830. "smilies",
  831. "unicode"
  832. ],
  833. "time": "2014-10-31 19:31:57"
  834. },
  835. {
  836. "name": "evenement/evenement",
  837. "version": "v1.0.0",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/igorw/evenement.git",
  841. "reference": "fa966683e7df3e5dd5929d984a44abfbd6bafe8d"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/igorw/evenement/zipball/fa966683e7df3e5dd5929d984a44abfbd6bafe8d",
  846. "reference": "fa966683e7df3e5dd5929d984a44abfbd6bafe8d",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "php": ">=5.3.0"
  851. },
  852. "type": "library",
  853. "autoload": {
  854. "psr-0": {
  855. "Evenement": "src"
  856. }
  857. },
  858. "notification-url": "https://packagist.org/downloads/",
  859. "license": [
  860. "MIT"
  861. ],
  862. "authors": [
  863. {
  864. "name": "Igor Wiedler",
  865. "email": "igor@wiedler.ch",
  866. "homepage": "http://wiedler.ch/igor/"
  867. }
  868. ],
  869. "description": "Événement is a very simple event dispatching library for PHP 5.3",
  870. "keywords": [
  871. "event-dispatcher"
  872. ],
  873. "time": "2012-05-30 15:01:08"
  874. },
  875. {
  876. "name": "ezyang/htmlpurifier",
  877. "version": "v4.6.0",
  878. "source": {
  879. "type": "git",
  880. "url": "https://github.com/ezyang/htmlpurifier.git",
  881. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd"
  882. },
  883. "dist": {
  884. "type": "zip",
  885. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/6f389f0f25b90d0b495308efcfa073981177f0fd",
  886. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd",
  887. "shasum": ""
  888. },
  889. "require": {
  890. "php": ">=5.2"
  891. },
  892. "type": "library",
  893. "autoload": {
  894. "psr-0": {
  895. "HTMLPurifier": "library/"
  896. },
  897. "files": [
  898. "library/HTMLPurifier.composer.php"
  899. ]
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "LGPL"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Edward Z. Yang",
  908. "email": "admin@htmlpurifier.org",
  909. "homepage": "http://ezyang.com"
  910. }
  911. ],
  912. "description": "Standards compliant HTML filter written in PHP",
  913. "homepage": "http://htmlpurifier.org/",
  914. "keywords": [
  915. "html"
  916. ],
  917. "time": "2013-11-30 08:25:19"
  918. },
  919. {
  920. "name": "gedmo/doctrine-extensions",
  921. "version": "v2.3.12",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/Atlantic18/DoctrineExtensions.git",
  925. "reference": "c3ff3c73c95b01e107af33d4fe3abf80794e2df9"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/c3ff3c73c95b01e107af33d4fe3abf80794e2df9",
  930. "reference": "c3ff3c73c95b01e107af33d4fe3abf80794e2df9",
  931. "shasum": ""
  932. },
  933. "require": {
  934. "behat/transliterator": "~1.0",
  935. "doctrine/common": "~2.4",
  936. "php": ">=5.3.2"
  937. },
  938. "require-dev": {
  939. "doctrine/mongodb-odm": ">=1.0.0-BETA11",
  940. "doctrine/orm": "~2.4",
  941. "phpunit/phpunit": "~4.4",
  942. "phpunit/phpunit-mock-objects": "~2.3",
  943. "symfony/yaml": "~2.3"
  944. },
  945. "suggest": {
  946. "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
  947. "doctrine/orm": "to use the extensions with the ORM"
  948. },
  949. "type": "library",
  950. "extra": {
  951. "branch-alias": {
  952. "dev-master": "2.3.x-dev"
  953. }
  954. },
  955. "autoload": {
  956. "psr-0": {
  957. "Gedmo\\": "lib/"
  958. }
  959. },
  960. "notification-url": "https://packagist.org/downloads/",
  961. "license": [
  962. "MIT"
  963. ],
  964. "authors": [
  965. {
  966. "name": "David Buchmann",
  967. "email": "david@liip.ch"
  968. },
  969. {
  970. "name": "Gediminas Morkevicius",
  971. "email": "gediminas.morkevicius@gmail.com"
  972. },
  973. {
  974. "name": "Gustavo Falco",
  975. "email": "comfortablynumb84@gmail.com"
  976. }
  977. ],
  978. "description": "Doctrine2 behavioral extensions",
  979. "homepage": "http://gediminasm.org/",
  980. "keywords": [
  981. "Blameable",
  982. "behaviors",
  983. "doctrine2",
  984. "extensions",
  985. "gedmo",
  986. "loggable",
  987. "nestedset",
  988. "sluggable",
  989. "sortable",
  990. "timestampable",
  991. "translatable",
  992. "tree",
  993. "uploadable"
  994. ],
  995. "time": "2015-02-24 21:41:37"
  996. },
  997. {
  998. "name": "jbroadway/urlify",
  999. "version": "1.0.3-stable",
  1000. "source": {
  1001. "type": "git",
  1002. "url": "https://github.com/jbroadway/urlify.git",
  1003. "reference": "c9ada9d3873d11f72fa772aecd6896efad11ee67"
  1004. },
  1005. "dist": {
  1006. "type": "zip",
  1007. "url": "https://api.github.com/repos/jbroadway/urlify/zipball/c9ada9d3873d11f72fa772aecd6896efad11ee67",
  1008. "reference": "c9ada9d3873d11f72fa772aecd6896efad11ee67",
  1009. "shasum": ""
  1010. },
  1011. "require": {
  1012. "php": ">=5.3.0"
  1013. },
  1014. "type": "library",
  1015. "extra": {
  1016. "branch-alias": {
  1017. "dev-master": "1.0-dev"
  1018. }
  1019. },
  1020. "autoload": {
  1021. "psr-0": {
  1022. "URLify": ""
  1023. }
  1024. },
  1025. "notification-url": "https://packagist.org/downloads/",
  1026. "license": [
  1027. "MIT"
  1028. ],
  1029. "authors": [
  1030. {
  1031. "name": "Johnny Broadway",
  1032. "email": "johnny@johnnybroadway.com",
  1033. "homepage": "http://www.johnnybroadway.com/",
  1034. "role": "Main Developer"
  1035. }
  1036. ],
  1037. "description": "PHP port of URLify.js from the Django project. Transliterates non-ascii characters for use in URLs.",
  1038. "homepage": "https://github.com/jbroadway/urlify",
  1039. "keywords": [
  1040. "encode",
  1041. "iconv",
  1042. "link",
  1043. "slug",
  1044. "translit",
  1045. "transliterate",
  1046. "transliteration",
  1047. "url",
  1048. "urlify"
  1049. ],
  1050. "time": "2014-03-17 16:14:04"
  1051. },
  1052. {
  1053. "name": "michelf/php-markdown",
  1054. "version": "1.4.1",
  1055. "source": {
  1056. "type": "git",
  1057. "url": "https://github.com/michelf/php-markdown.git",
  1058. "reference": "de9a19c7bf352d41cc99ed86c3c0ef17e87394b6"
  1059. },
  1060. "dist": {
  1061. "type": "zip",
  1062. "url": "https://api.github.com/repos/michelf/php-markdown/zipball/de9a19c7bf352d41cc99ed86c3c0ef17e87394b6",
  1063. "reference": "de9a19c7bf352d41cc99ed86c3c0ef17e87394b6",
  1064. "shasum": ""
  1065. },
  1066. "require": {
  1067. "php": ">=5.3.0"
  1068. },
  1069. "type": "library",
  1070. "extra": {
  1071. "branch-alias": {
  1072. "dev-lib": "1.4.x-dev"
  1073. }
  1074. },
  1075. "autoload": {
  1076. "psr-0": {
  1077. "Michelf": ""
  1078. }
  1079. },
  1080. "notification-url": "https://packagist.org/downloads/",
  1081. "license": [
  1082. "BSD-3-Clause"
  1083. ],
  1084. "authors": [
  1085. {
  1086. "name": "Michel Fortin",
  1087. "email": "michel.fortin@michelf.ca",
  1088. "homepage": "http://michelf.ca/",
  1089. "role": "Developer"
  1090. },
  1091. {
  1092. "name": "John Gruber",
  1093. "homepage": "http://daringfireball.net/"
  1094. }
  1095. ],
  1096. "description": "PHP Markdown",
  1097. "homepage": "http://michelf.ca/projects/php-markdown/",
  1098. "keywords": [
  1099. "markdown"
  1100. ],
  1101. "time": "2014-05-05 02:43:50"
  1102. },
  1103. {
  1104. "name": "monolog/monolog",
  1105. "version": "1.12.0",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/Seldaek/monolog.git",
  1109. "reference": "1fbe8c2641f2b163addf49cc5e18f144bec6b19f"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1fbe8c2641f2b163addf49cc5e18f144bec6b19f",
  1114. "reference": "1fbe8c2641f2b163addf49cc5e18f144bec6b19f",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "php": ">=5.3.0",
  1119. "psr/log": "~1.0"
  1120. },
  1121. "provide": {
  1122. "psr/log-implementation": "1.0.0"
  1123. },
  1124. "require-dev": {
  1125. "aws/aws-sdk-php": "~2.4, >2.4.8",
  1126. "doctrine/couchdb": "~1.0@dev",
  1127. "graylog2/gelf-php": "~1.0",
  1128. "phpunit/phpunit": "~4.0",
  1129. "raven/raven": "~0.5",
  1130. "ruflin/elastica": "0.90.*",
  1131. "videlalvaro/php-amqplib": "~2.4"
  1132. },
  1133. "suggest": {
  1134. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1135. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1136. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1137. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1138. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1139. "raven/raven": "Allow sending log messages to a Sentry server",
  1140. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1141. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1142. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "1.12.x-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Monolog\\": "src/Monolog"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Jordi Boggiano",
  1162. "email": "j.boggiano@seld.be",
  1163. "homepage": "http://seld.be"
  1164. }
  1165. ],
  1166. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1167. "homepage": "http://github.com/Seldaek/monolog",
  1168. "keywords": [
  1169. "log",
  1170. "logging",
  1171. "psr-3"
  1172. ],
  1173. "time": "2014-12-29 21:29:35"
  1174. },
  1175. {
  1176. "name": "mpdf/mpdf",
  1177. "version": "v5.7.4",
  1178. "source": {
  1179. "type": "git",
  1180. "url": "https://github.com/finwe/mpdf.git",
  1181. "reference": "f9a374c7ea975ce8c795cec4dfd17ef55addac9c"
  1182. },
  1183. "dist": {
  1184. "type": "zip",
  1185. "url": "https://api.github.com/repos/finwe/mpdf/zipball/f9a374c7ea975ce8c795cec4dfd17ef55addac9c",
  1186. "reference": "f9a374c7ea975ce8c795cec4dfd17ef55addac9c",
  1187. "shasum": ""
  1188. },
  1189. "require": {
  1190. "ext-mbstring": "*",
  1191. "php": ">=4.3.10"
  1192. },
  1193. "type": "library",
  1194. "autoload": {
  1195. "classmap": [
  1196. "mpdf.php",
  1197. "classes"
  1198. ]
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "GPL-1.0+"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Ian Back"
  1207. }
  1208. ],
  1209. "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
  1210. "homepage": "http://www.mpdf1.com/mpdf/index.php",
  1211. "keywords": [
  1212. "pdf",
  1213. "php",
  1214. "utf-8"
  1215. ],
  1216. "time": "2014-12-14 18:32:11"
  1217. },
  1218. {
  1219. "name": "neutron/temporary-filesystem",
  1220. "version": "2.1.1",
  1221. "source": {
  1222. "type": "git",
  1223. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  1224. "reference": "6b21fa99fd452efea16b9a7adb7304ccfff854d0"
  1225. },
  1226. "dist": {
  1227. "type": "zip",
  1228. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/6b21fa99fd452efea16b9a7adb7304ccfff854d0",
  1229. "reference": "6b21fa99fd452efea16b9a7adb7304ccfff854d0",
  1230. "shasum": ""
  1231. },
  1232. "require": {
  1233. "symfony/filesystem": "~2.0"
  1234. },
  1235. "require-dev": {
  1236. "phpunit/phpunit": "~3.7"
  1237. },
  1238. "type": "library",
  1239. "autoload": {
  1240. "psr-0": {
  1241. "Neutron": "src"
  1242. }
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "authors": [
  1249. {
  1250. "name": "Romain Neutron",
  1251. "email": "imprec@gmail.com",
  1252. "homepage": "http://www.lickmychip.com/"
  1253. }
  1254. ],
  1255. "description": "Symfony filesystem extension to handle temporary files",
  1256. "time": "2013-10-10 10:58:09"
  1257. },
  1258. {
  1259. "name": "php-ffmpeg/php-ffmpeg",
  1260. "version": "0.6.0",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  1264. "reference": "6e3134e4ecc96852b1205e6c88ceffdb8cf17d34"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/6e3134e4ecc96852b1205e6c88ceffdb8cf17d34",
  1269. "reference": "6e3134e4ecc96852b1205e6c88ceffdb8cf17d34",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "alchemy/binary-driver": "~1.5",
  1274. "doctrine/cache": "~1.0",
  1275. "evenement/evenement": "~1.0",
  1276. "neutron/temporary-filesystem": "~2.1, >=2.1.1",
  1277. "php": ">=5.3.3"
  1278. },
  1279. "require-dev": {
  1280. "phpunit/phpunit": "~3.7",
  1281. "sami/sami": "~1.0",
  1282. "silex/silex": "~1.0"
  1283. },
  1284. "suggest": {
  1285. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  1286. },
  1287. "type": "library",
  1288. "extra": {
  1289. "branch-alias": {
  1290. "dev-master": "0.5-dev"
  1291. }
  1292. },
  1293. "autoload": {
  1294. "psr-0": {
  1295. "FFMpeg": "src"
  1296. }
  1297. },
  1298. "notification-url": "https://packagist.org/downloads/",
  1299. "license": [
  1300. "MIT"
  1301. ],
  1302. "authors": [
  1303. {
  1304. "name": "Romain Neutron",
  1305. "email": "imprec@gmail.com",
  1306. "homepage": "http://www.lickmychip.com/"
  1307. },
  1308. {
  1309. "name": "Phraseanet Team",
  1310. "email": "info@alchemy.fr",
  1311. "homepage": "http://www.phraseanet.com/"
  1312. }
  1313. ],
  1314. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  1315. "keywords": [
  1316. "audio",
  1317. "audio processing",
  1318. "avconv",
  1319. "avprobe",
  1320. "ffmpeg",
  1321. "ffprobe",
  1322. "video",
  1323. "video processing"
  1324. ],
  1325. "time": "2015-01-30 19:07:38"
  1326. },
  1327. {
  1328. "name": "psr/log",
  1329. "version": "1.0.0",
  1330. "source": {
  1331. "type": "git",
  1332. "url": "https://github.com/php-fig/log.git",
  1333. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  1334. },
  1335. "dist": {
  1336. "type": "zip",
  1337. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  1338. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  1339. "shasum": ""
  1340. },
  1341. "type": "library",
  1342. "autoload": {
  1343. "psr-0": {
  1344. "Psr\\Log\\": ""
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "PHP-FIG",
  1354. "homepage": "http://www.php-fig.org/"
  1355. }
  1356. ],
  1357. "description": "Common interface for logging libraries",
  1358. "keywords": [
  1359. "log",
  1360. "psr",
  1361. "psr-3"
  1362. ],
  1363. "time": "2012-12-21 11:40:51"
  1364. },
  1365. {
  1366. "name": "sabre/vobject",
  1367. "version": "3.4.2",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/fruux/sabre-vobject.git",
  1371. "reference": "0c90f60dae40137f1903c7b5915d3691c4fc99b0"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/fruux/sabre-vobject/zipball/0c90f60dae40137f1903c7b5915d3691c4fc99b0",
  1376. "reference": "0c90f60dae40137f1903c7b5915d3691c4fc99b0",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "ext-mbstring": "*",
  1381. "php": ">=5.3.1"
  1382. },
  1383. "require-dev": {
  1384. "phpunit/phpunit": "*",
  1385. "squizlabs/php_codesniffer": "*"
  1386. },
  1387. "bin": [
  1388. "bin/vobject",
  1389. "bin/generate_vcards"
  1390. ],
  1391. "type": "library",
  1392. "extra": {
  1393. "branch-alias": {
  1394. "dev-master": "3.2.x-dev"
  1395. }
  1396. },
  1397. "autoload": {
  1398. "psr-4": {
  1399. "Sabre\\VObject\\": "lib/"
  1400. }
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "BSD-3-Clause"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "Evert Pot",
  1409. "email": "me@evertpot.com",
  1410. "homepage": "http://evertpot.com/",
  1411. "role": "Developer"
  1412. },
  1413. {
  1414. "name": "Dominik Tobschall",
  1415. "email": "dominik@fruux.com",
  1416. "homepage": "http://tobschall.de/",
  1417. "role": "Developer"
  1418. }
  1419. ],
  1420. "description": "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
  1421. "homepage": "http://sabre.io/vobject/",
  1422. "keywords": [
  1423. "VObject",
  1424. "iCalendar",
  1425. "jCal",
  1426. "jCard",
  1427. "vCard"
  1428. ],
  1429. "time": "2015-02-25 17:47:50"
  1430. },
  1431. {
  1432. "name": "symfony/console",
  1433. "version": "v2.6.4",
  1434. "target-dir": "Symfony/Component/Console",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/symfony/Console.git",
  1438. "reference": "e44154bfe3e41e8267d7a3794cd9da9a51cfac34"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/symfony/Console/zipball/e44154bfe3e41e8267d7a3794cd9da9a51cfac34",
  1443. "reference": "e44154bfe3e41e8267d7a3794cd9da9a51cfac34",
  1444. "shasum": ""
  1445. },
  1446. "require": {
  1447. "php": ">=5.3.3"
  1448. },
  1449. "require-dev": {
  1450. "psr/log": "~1.0",
  1451. "symfony/event-dispatcher": "~2.1",
  1452. "symfony/process": "~2.1"
  1453. },
  1454. "suggest": {
  1455. "psr/log": "For using the console logger",
  1456. "symfony/event-dispatcher": "",
  1457. "symfony/process": ""
  1458. },
  1459. "type": "library",
  1460. "extra": {
  1461. "branch-alias": {
  1462. "dev-master": "2.6-dev"
  1463. }
  1464. },
  1465. "autoload": {
  1466. "psr-0": {
  1467. "Symfony\\Component\\Console\\": ""
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "MIT"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Symfony Community",
  1477. "homepage": "http://symfony.com/contributors"
  1478. },
  1479. {
  1480. "name": "Fabien Potencier",
  1481. "email": "fabien@symfony.com"
  1482. }
  1483. ],
  1484. "description": "Symfony Console Component",
  1485. "homepage": "http://symfony.com",
  1486. "time": "2015-01-25 04:39:26"
  1487. },
  1488. {
  1489. "name": "symfony/doctrine-bridge",
  1490. "version": "v2.6.4",
  1491. "target-dir": "Symfony/Bridge/Doctrine",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/symfony/DoctrineBridge.git",
  1495. "reference": "5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/symfony/DoctrineBridge/zipball/5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d",
  1500. "reference": "5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d",
  1501. "shasum": ""
  1502. },
  1503. "require": {
  1504. "doctrine/common": "~2.3",
  1505. "php": ">=5.3.3"
  1506. },
  1507. "require-dev": {
  1508. "doctrine/data-fixtures": "1.0.*",
  1509. "doctrine/dbal": "~2.2",
  1510. "doctrine/orm": "~2.2,>=2.2.3",
  1511. "symfony/dependency-injection": "~2.2",
  1512. "symfony/expression-language": "~2.2",
  1513. "symfony/form": "~2.3,>=2.3.8",
  1514. "symfony/http-kernel": "~2.2",
  1515. "symfony/property-access": "~2.3",
  1516. "symfony/security": "~2.2",
  1517. "symfony/stopwatch": "~2.2",
  1518. "symfony/translation": "~2.0,>=2.0.5",
  1519. "symfony/validator": "~2.5,>=2.5.5"
  1520. },
  1521. "suggest": {
  1522. "doctrine/data-fixtures": "",
  1523. "doctrine/dbal": "",
  1524. "doctrine/orm": "",
  1525. "symfony/form": "",
  1526. "symfony/validator": ""
  1527. },
  1528. "type": "symfony-bridge",
  1529. "extra": {
  1530. "branch-alias": {
  1531. "dev-master": "2.6-dev"
  1532. }
  1533. },
  1534. "autoload": {
  1535. "psr-0": {
  1536. "Symfony\\Bridge\\Doctrine\\": ""
  1537. }
  1538. },
  1539. "notification-url": "https://packagist.org/downloads/",
  1540. "license": [
  1541. "MIT"
  1542. ],
  1543. "authors": [
  1544. {
  1545. "name": "Symfony Community",
  1546. "homepage": "http://symfony.com/contributors"
  1547. },
  1548. {
  1549. "name": "Fabien Potencier",
  1550. "email": "fabien@symfony.com"
  1551. }
  1552. ],
  1553. "description": "Symfony Doctrine Bridge",
  1554. "homepage": "http://symfony.com",
  1555. "time": "2015-02-01 16:10:57"
  1556. },
  1557. {
  1558. "name": "symfony/filesystem",
  1559. "version": "v2.6.4",
  1560. "target-dir": "Symfony/Component/Filesystem",
  1561. "source": {
  1562. "type": "git",
  1563. "url": "https://github.com/symfony/Filesystem.git",
  1564. "reference": "a1f566d1f92e142fa1593f4555d6d89e3044a9b7"
  1565. },
  1566. "dist": {
  1567. "type": "zip",
  1568. "url": "https://api.github.com/repos/symfony/Filesystem/zipball/a1f566d1f92e142fa1593f4555d6d89e3044a9b7",
  1569. "reference": "a1f566d1f92e142fa1593f4555d6d89e3044a9b7",
  1570. "shasum": ""
  1571. },
  1572. "require": {
  1573. "php": ">=5.3.3"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "branch-alias": {
  1578. "dev-master": "2.6-dev"
  1579. }
  1580. },
  1581. "autoload": {
  1582. "psr-0": {
  1583. "Symfony\\Component\\Filesystem\\": ""
  1584. }
  1585. },
  1586. "notification-url": "https://packagist.org/downloads/",
  1587. "license": [
  1588. "MIT"
  1589. ],
  1590. "authors": [
  1591. {
  1592. "name": "Symfony Community",
  1593. "homepage": "http://symfony.com/contributors"
  1594. },
  1595. {
  1596. "name": "Fabien Potencier",
  1597. "email": "fabien@symfony.com"
  1598. }
  1599. ],
  1600. "description": "Symfony Filesystem Component",
  1601. "homepage": "http://symfony.com",
  1602. "time": "2015-01-03 21:13:09"
  1603. },
  1604. {
  1605. "name": "symfony/process",
  1606. "version": "v2.6.4",
  1607. "target-dir": "Symfony/Component/Process",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/symfony/Process.git",
  1611. "reference": "ecfc23e89d9967999fa5f60a1e9af7384396e9ae"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/symfony/Process/zipball/ecfc23e89d9967999fa5f60a1e9af7384396e9ae",
  1616. "reference": "ecfc23e89d9967999fa5f60a1e9af7384396e9ae",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": ">=5.3.3"
  1621. },
  1622. "type": "library",
  1623. "extra": {
  1624. "branch-alias": {
  1625. "dev-master": "2.6-dev"
  1626. }
  1627. },
  1628. "autoload": {
  1629. "psr-0": {
  1630. "Symfony\\Component\\Process\\": ""
  1631. }
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "MIT"
  1636. ],
  1637. "authors": [
  1638. {
  1639. "name": "Symfony Community",
  1640. "homepage": "http://symfony.com/contributors"
  1641. },
  1642. {
  1643. "name": "Fabien Potencier",
  1644. "email": "fabien@symfony.com"
  1645. }
  1646. ],
  1647. "description": "Symfony Process Component",
  1648. "homepage": "http://symfony.com",
  1649. "time": "2015-01-25 04:39:26"
  1650. },
  1651. {
  1652. "name": "symfony/translation",
  1653. "version": "v2.6.4",
  1654. "target-dir": "Symfony/Component/Translation",
  1655. "source": {
  1656. "type": "git",
  1657. "url": "https://github.com/symfony/Translation.git",
  1658. "reference": "f289cdf8179d32058c1e1cbac723106a5ff6fa39"
  1659. },
  1660. "dist": {
  1661. "type": "zip",
  1662. "url": "https://api.github.com/repos/symfony/Translation/zipball/f289cdf8179d32058c1e1cbac723106a5ff6fa39",
  1663. "reference": "f289cdf8179d32058c1e1cbac723106a5ff6fa39",
  1664. "shasum": ""
  1665. },
  1666. "require": {
  1667. "php": ">=5.3.3"
  1668. },
  1669. "require-dev": {
  1670. "psr/log": "~1.0",
  1671. "symfony/config": "~2.3,>=2.3.12",
  1672. "symfony/intl": "~2.3",
  1673. "symfony/yaml": "~2.2"
  1674. },
  1675. "suggest": {
  1676. "psr/log": "To use logging capability in translator",
  1677. "symfony/config": "",
  1678. "symfony/yaml": ""
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-master": "2.6-dev"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "psr-0": {
  1688. "Symfony\\Component\\Translation\\": ""
  1689. }
  1690. },
  1691. "notification-url": "https://packagist.org/downloads/",
  1692. "license": [
  1693. "MIT"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "Symfony Community",
  1698. "homepage": "http://symfony.com/contributors"
  1699. },
  1700. {
  1701. "name": "Fabien Potencier",
  1702. "email": "fabien@symfony.com"
  1703. }
  1704. ],
  1705. "description": "Symfony Translation Component",
  1706. "homepage": "http://symfony.com",
  1707. "time": "2015-01-03 15:33:07"
  1708. },
  1709. {
  1710. "name": "symfony/validator",
  1711. "version": "v2.6.4",
  1712. "target-dir": "Symfony/Component/Validator",
  1713. "source": {
  1714. "type": "git",
  1715. "url": "https://github.com/symfony/Validator.git",
  1716. "reference": "1906eb78a5049b41a80094c20faf66dfbaaf2049"
  1717. },
  1718. "dist": {
  1719. "type": "zip",
  1720. "url": "https://api.github.com/repos/symfony/Validator/zipball/1906eb78a5049b41a80094c20faf66dfbaaf2049",
  1721. "reference": "1906eb78a5049b41a80094c20faf66dfbaaf2049",
  1722. "shasum": ""
  1723. },
  1724. "require": {
  1725. "php": ">=5.3.3",
  1726. "symfony/translation": "~2.0,>=2.0.5"
  1727. },
  1728. "require-dev": {
  1729. "doctrine/annotations": "~1.0",
  1730. "doctrine/cache": "~1.0",
  1731. "doctrine/common": "~2.3",
  1732. "egulias/email-validator": "~1.2,>=1.2.1",
  1733. "symfony/config": "~2.2",
  1734. "symfony/expression-language": "~2.4",
  1735. "symfony/http-foundation": "~2.1",
  1736. "symfony/intl": "~2.3",
  1737. "symfony/property-access": "~2.3",
  1738. "symfony/yaml": "~2.0,>=2.0.5"
  1739. },
  1740. "suggest": {
  1741. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  1742. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  1743. "egulias/email-validator": "Strict (RFC compliant) email validation",
  1744. "symfony/config": "",
  1745. "symfony/expression-language": "For using the 2.4 Expression validator",
  1746. "symfony/http-foundation": "",
  1747. "symfony/intl": "",
  1748. "symfony/property-access": "For using the 2.4 Validator API",
  1749. "symfony/yaml": ""
  1750. },
  1751. "type": "library",
  1752. "extra": {
  1753. "branch-alias": {
  1754. "dev-master": "2.6-dev"
  1755. }
  1756. },
  1757. "autoload": {
  1758. "psr-0": {
  1759. "Symfony\\Component\\Validator\\": ""
  1760. }
  1761. },
  1762. "notification-url": "https://packagist.org/downloads/",
  1763. "license": [
  1764. "MIT"
  1765. ],
  1766. "authors": [
  1767. {
  1768. "name": "Symfony Community",
  1769. "homepage": "http://symfony.com/contributors"
  1770. },
  1771. {
  1772. "name": "Fabien Potencier",
  1773. "email": "fabien@symfony.com"
  1774. }
  1775. ],
  1776. "description": "Symfony Validator Component",
  1777. "homepage": "http://symfony.com",
  1778. "time": "2015-02-01 16:10:57"
  1779. },
  1780. {
  1781. "name": "symfony/yaml",
  1782. "version": "v2.6.4",
  1783. "target-dir": "Symfony/Component/Yaml",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://github.com/symfony/Yaml.git",
  1787. "reference": "60ed7751671113cf1ee7d7778e691642c2e9acd8"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://api.github.com/repos/symfony/Yaml/zipball/60ed7751671113cf1ee7d7778e691642c2e9acd8",
  1792. "reference": "60ed7751671113cf1ee7d7778e691642c2e9acd8",
  1793. "shasum": ""
  1794. },
  1795. "require": {
  1796. "php": ">=5.3.3"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-master": "2.6-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "psr-0": {
  1806. "Symfony\\Component\\Yaml\\": ""
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Symfony Community",
  1816. "homepage": "http://symfony.com/contributors"
  1817. },
  1818. {
  1819. "name": "Fabien Potencier",
  1820. "email": "fabien@symfony.com"
  1821. }
  1822. ],
  1823. "description": "Symfony Yaml Component",
  1824. "homepage": "http://symfony.com",
  1825. "time": "2015-01-25 04:39:26"
  1826. },
  1827. {
  1828. "name": "szymach/c-pchart",
  1829. "version": "1.1.5",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/szymach/c-pchart.git",
  1833. "reference": "1d54c14f8b7295abc87039ba806fed45d29d67d9"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/szymach/c-pchart/zipball/1d54c14f8b7295abc87039ba806fed45d29d67d9",
  1838. "reference": "1d54c14f8b7295abc87039ba806fed45d29d67d9",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "ext-gd": "*",
  1843. "php": ">=5.3.3"
  1844. },
  1845. "type": "project",
  1846. "autoload": {
  1847. "psr-4": {
  1848. "CpChart\\": "src/"
  1849. },
  1850. "files": [
  1851. "src/Resources/data/constants.php"
  1852. ]
  1853. },
  1854. "notification-url": "https://packagist.org/downloads/",
  1855. "license": [
  1856. "MIT"
  1857. ],
  1858. "description": "Port of \"pChart\" library into PHP 5.3.",
  1859. "homepage": "https://github.com/szymach/c-pchart",
  1860. "keywords": [
  1861. "c-pChart",
  1862. "charts",
  1863. "composer",
  1864. "pchart",
  1865. "statistics"
  1866. ],
  1867. "time": "2015-01-28 19:54:53"
  1868. },
  1869. {
  1870. "name": "toin0u/digitalocean",
  1871. "version": "1.4.2",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/toin0u/DigitalOcean.git",
  1875. "reference": "fb460785207fa4029217eef489508b9ed6c61b00"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/toin0u/DigitalOcean/zipball/fb460785207fa4029217eef489508b9ed6c61b00",
  1880. "reference": "fb460785207fa4029217eef489508b9ed6c61b00",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "php": ">=5.3.0",
  1885. "symfony/console": "~2.3",
  1886. "symfony/yaml": "~2.3",
  1887. "toin0u/http-adapter": "~1.0"
  1888. },
  1889. "require-dev": {
  1890. "satooshi/php-coveralls": "~0.6"
  1891. },
  1892. "bin": [
  1893. "digitalocean"
  1894. ],
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "1.4-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-0": {
  1903. "DigitalOcean": "src/"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Antoine Corcy",
  1913. "email": "contact@sbin.dk",
  1914. "homepage": "http://sbin.dk",
  1915. "role": "Developer"
  1916. }
  1917. ],
  1918. "description": "DigitalOcean API PHP 5.3+ library",
  1919. "homepage": "https://github.com/toin0u/DigitalOcean",
  1920. "keywords": [
  1921. "Cloud Hosting",
  1922. "SSD",
  1923. "api",
  1924. "digitalocean",
  1925. "vps"
  1926. ],
  1927. "time": "2014-01-14 22:20:56"
  1928. },
  1929. {
  1930. "name": "toin0u/http-adapter",
  1931. "version": "1.0.3",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/toin0u/HttpAdapter.git",
  1935. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/toin0u/HttpAdapter/zipball/29253948d446bc3afc29897ac67b4cd01f56cd10",
  1940. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "ext-curl": "*",
  1945. "php": ">=5.3.0"
  1946. },
  1947. "require-dev": {
  1948. "guzzle/guzzle": "@stable",
  1949. "kriswallsmith/buzz": "@stable",
  1950. "satooshi/php-coveralls": "~0.6",
  1951. "zendframework/zendframework": "~2.1"
  1952. },
  1953. "suggest": {
  1954. "guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter",
  1955. "kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter",
  1956. "zendframework/zendframework": "Enabling Zend Http allows you to use the ZendHttpAdapter"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "1.0-dev"
  1962. }
  1963. },
  1964. "autoload": {
  1965. "psr-0": {
  1966. "HttpAdapter": "src/"
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "Antoine Corcy",
  1976. "email": "contact@sbin.dk",
  1977. "homepage": "http://sbin.dk",
  1978. "role": "Developer"
  1979. }
  1980. ],
  1981. "description": "HttpAdapter PHP 5.3+ library",
  1982. "homepage": "https://github.com/toin0u/HttpAdapter",
  1983. "keywords": [
  1984. "adapter",
  1985. "http"
  1986. ],
  1987. "time": "2013-05-26 18:18:11"
  1988. },
  1989. {
  1990. "name": "twig/twig",
  1991. "version": "v1.18.0",
  1992. "source": {
  1993. "type": "git",
  1994. "url": "https://github.com/twigphp/Twig.git",
  1995. "reference": "4cf7464348e7f9893a93f7096a90b73722be99cf"
  1996. },
  1997. "dist": {
  1998. "type": "zip",
  1999. "url": "https://api.github.com/repos/twigphp/Twig/zipball/4cf7464348e7f9893a93f7096a90b73722be99cf",
  2000. "reference": "4cf7464348e7f9893a93f7096a90b73722be99cf",
  2001. "shasum": ""
  2002. },
  2003. "require": {
  2004. "php": ">=5.2.4"
  2005. },
  2006. "type": "library",
  2007. "extra": {
  2008. "branch-alias": {
  2009. "dev-master": "1.18-dev"
  2010. }
  2011. },
  2012. "autoload": {
  2013. "psr-0": {
  2014. "Twig_": "lib/"
  2015. }
  2016. },
  2017. "notification-url": "https://packagist.org/downloads/",
  2018. "license": [
  2019. "BSD-3-Clause"
  2020. ],
  2021. "authors": [
  2022. {
  2023. "name": "Fabien Potencier",
  2024. "email": "fabien@symfony.com",
  2025. "homepage": "http://fabien.potencier.org",
  2026. "role": "Lead Developer"
  2027. },
  2028. {
  2029. "name": "Armin Ronacher",
  2030. "email": "armin.ronacher@active-4.com",
  2031. "role": "Project Founder"
  2032. },
  2033. {
  2034. "name": "Twig Team",
  2035. "homepage": "http://twig.sensiolabs.org/contributors",
  2036. "role": "Contributors"
  2037. }
  2038. ],
  2039. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2040. "homepage": "http://twig.sensiolabs.org",
  2041. "keywords": [
  2042. "templating"
  2043. ],
  2044. "time": "2015-01-25 17:32:08"
  2045. },
  2046. {
  2047. "name": "zendframework/zend-config",
  2048. "version": "2.3.3",
  2049. "target-dir": "Zend/Config",
  2050. "source": {
  2051. "type": "git",
  2052. "url": "https://github.com/zendframework/Component_ZendConfig.git",
  2053. "reference": "a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8"
  2054. },
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "https://api.github.com/repos/zendframework/Component_ZendConfig/zipball/a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8",
  2058. "reference": "a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8",
  2059. "shasum": ""
  2060. },
  2061. "require": {
  2062. "php": ">=5.3.23",
  2063. "zendframework/zend-stdlib": "self.version"
  2064. },
  2065. "require-dev": {
  2066. "zendframework/zend-filter": "self.version",
  2067. "zendframework/zend-i18n": "self.version",
  2068. "zendframework/zend-json": "self.version",
  2069. "zendframework/zend-servicemanager": "self.version"
  2070. },
  2071. "suggest": {
  2072. "zendframework/zend-filter": "Zend\\Filter component",
  2073. "zendframework/zend-i18n": "Zend\\I18n component",
  2074. "zendframework/zend-json": "Zend\\Json to use the Json reader or writer classes",
  2075. "zendframework/zend-servicemanager": "Zend\\ServiceManager for use with the Config Factory to retrieve reader and writer instances"
  2076. },
  2077. "type": "library",
  2078. "extra": {
  2079. "branch-alias": {
  2080. "dev-master": "2.3-dev",
  2081. "dev-develop": "2.4-dev"
  2082. }
  2083. },
  2084. "autoload": {
  2085. "psr-0": {
  2086. "Zend\\Config\\": ""
  2087. }
  2088. },
  2089. "notification-url": "https://packagist.org/downloads/",
  2090. "license": [
  2091. "BSD-3-Clause"
  2092. ],
  2093. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  2094. "homepage": "https://github.com/zendframework/zf2",
  2095. "keywords": [
  2096. "config",
  2097. "zf2"
  2098. ],
  2099. "time": "2014-09-16 22:58:11"
  2100. },
  2101. {
  2102. "name": "zendframework/zend-stdlib",
  2103. "version": "2.3.3",
  2104. "target-dir": "Zend/Stdlib",
  2105. "source": {
  2106. "type": "git",
  2107. "url": "https://github.com/zendframework/Component_ZendStdlib.git",
  2108. "reference": "fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33"
  2109. },
  2110. "dist": {
  2111. "type": "zip",
  2112. "url": "https://api.github.com/repos/zendframework/Component_ZendStdlib/zipball/fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33",
  2113. "reference": "fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33",
  2114. "shasum": ""
  2115. },
  2116. "require": {
  2117. "php": ">=5.3.23"
  2118. },
  2119. "require-dev": {
  2120. "zendframework/zend-eventmanager": "self.version",
  2121. "zendframework/zend-serializer": "self.version",
  2122. "zendframework/zend-servicemanager": "self.version"
  2123. },
  2124. "suggest": {
  2125. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  2126. "zendframework/zend-serializer": "Zend\\Serializer component",
  2127. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  2128. },
  2129. "type": "library",
  2130. "extra": {
  2131. "branch-alias": {
  2132. "dev-master": "2.3-dev",
  2133. "dev-develop": "2.4-dev"
  2134. }
  2135. },
  2136. "autoload": {
  2137. "psr-0": {
  2138. "Zend\\Stdlib\\": ""
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "BSD-3-Clause"
  2144. ],
  2145. "homepage": "https://github.com/zendframework/zf2",
  2146. "keywords": [
  2147. "stdlib",
  2148. "zf2"
  2149. ],
  2150. "time": "2014-09-16 22:58:11"
  2151. }
  2152. ],
  2153. "packages-dev": [],
  2154. "aliases": [],
  2155. "minimum-stability": "stable",
  2156. "stability-flags": [],
  2157. "prefer-stable": false,
  2158. "prefer-lowest": false,
  2159. "platform": {
  2160. "php": ">=5.4"
  2161. },
  2162. "platform-dev": []
  2163. }