composer.lock 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932
  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. "content-hash": "99b3cc808c2aaa7b5f9351713fad7812",
  8. "packages": [
  9. {
  10. "name": "alchemy/binary-driver",
  11. "version": "1.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  15. "reference": "1.5.0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/1.5.0",
  20. "reference": "1.5.0",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "evenement/evenement": ">=1.0,<2.0",
  25. "monolog/monolog": ">=1.3,<2.0",
  26. "php": ">=5.3.3",
  27. "psr/log": ">=1.0,<2.0",
  28. "symfony/process": ">=2.0,<3.0"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": ">=3.7,<4.0"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-0": {
  36. "Alchemy": "src"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "MIT"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Romain Neutron",
  46. "email": "imprec@gmail.com",
  47. "homepage": "http://www.lickmychip.com/"
  48. },
  49. {
  50. "name": "Nicolas Le Goff",
  51. "email": "legoff.n@gmail.com"
  52. },
  53. {
  54. "name": "Phraseanet Team",
  55. "email": "info@alchemy.fr",
  56. "homepage": "http://www.phraseanet.com/"
  57. }
  58. ],
  59. "description": "A set of tools to build binary drivers",
  60. "keywords": [
  61. "binary",
  62. "driver"
  63. ],
  64. "time": "2013-06-21T15:51:20+00:00"
  65. },
  66. {
  67. "name": "alchemy/phpexiftool",
  68. "version": "0.3.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/alchemy-fr/PHPExiftool.git",
  72. "reference": "5c7d6124729eb34f2d86f730e534067e6be31ab9"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/alchemy-fr/PHPExiftool/zipball/5c7d6124729eb34f2d86f730e534067e6be31ab9",
  77. "reference": "5c7d6124729eb34f2d86f730e534067e6be31ab9",
  78. "shasum": ""
  79. },
  80. "require": {
  81. "doctrine/cache": "~1.0",
  82. "doctrine/collections": "~1.0",
  83. "monolog/monolog": "~1.3",
  84. "php": ">=5.3.3",
  85. "phpexiftool/exiftool": "9.15",
  86. "symfony/process": "~2.0"
  87. },
  88. "require-dev": {
  89. "jms/serializer": "~0.10",
  90. "sami/sami": "~1.0",
  91. "silex/silex": "~1.0",
  92. "symfony/console": "~2.0",
  93. "symfony/css-selector": "~2.0",
  94. "symfony/dom-crawler": "~2.0",
  95. "symfony/finder": "~2.0",
  96. "symfony/yaml": "~2.0"
  97. },
  98. "suggest": {
  99. "jms/serializer": "To serialize tags",
  100. "symfony/yaml": "To serialize tags in Yaml format"
  101. },
  102. "type": "library",
  103. "extra": {
  104. "branch-alias": {
  105. "dev-master": "0.3-dev"
  106. }
  107. },
  108. "autoload": {
  109. "psr-0": {
  110. "PHPExiftool": "lib"
  111. }
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "MIT"
  116. ],
  117. "authors": [
  118. {
  119. "name": "Romain Neutron",
  120. "email": "imprec@gmail.com",
  121. "homepage": "http://www.lickmychip.com/"
  122. }
  123. ],
  124. "description": "Exiftool driver for PHP",
  125. "keywords": [
  126. "exiftool",
  127. "metadata"
  128. ],
  129. "time": "2013-08-07T13:54:27+00:00"
  130. },
  131. {
  132. "name": "doctrine/cache",
  133. "version": "v1.2.0",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/doctrine/cache.git",
  137. "reference": "d0e4447707a064a5814b18cb0dcc2f24185f6179"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/doctrine/cache/zipball/d0e4447707a064a5814b18cb0dcc2f24185f6179",
  142. "reference": "d0e4447707a064a5814b18cb0dcc2f24185f6179",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "php": ">=5.3.2"
  147. },
  148. "conflict": {
  149. "doctrine/common": ">2.2,<2.4"
  150. },
  151. "type": "library",
  152. "extra": {
  153. "branch-alias": {
  154. "dev-master": "1.0.x-dev"
  155. }
  156. },
  157. "autoload": {
  158. "psr-0": {
  159. "Doctrine\\Common\\Cache\\": "lib/"
  160. }
  161. },
  162. "notification-url": "https://packagist.org/downloads/",
  163. "license": [
  164. "MIT"
  165. ],
  166. "authors": [
  167. {
  168. "name": "Jonathan Wage",
  169. "email": "jonwage@gmail.com",
  170. "homepage": "http://www.jwage.com/"
  171. },
  172. {
  173. "name": "Guilherme Blanco",
  174. "email": "guilhermeblanco@gmail.com",
  175. "homepage": "http://www.instaclick.com"
  176. },
  177. {
  178. "name": "Roman Borschel",
  179. "email": "roman@code-factory.org"
  180. },
  181. {
  182. "name": "Benjamin Eberlei",
  183. "email": "kontakt@beberlei.de"
  184. },
  185. {
  186. "name": "Johannes Schmitt",
  187. "email": "schmittjoh@gmail.com",
  188. "homepage": "http://jmsyst.com",
  189. "role": "Developer of wrapped JMSSerializerBundle"
  190. }
  191. ],
  192. "description": "Caching library offering an object-oriented API for many cache backends",
  193. "homepage": "http://www.doctrine-project.org",
  194. "keywords": [
  195. "cache",
  196. "caching"
  197. ],
  198. "time": "2013-09-26T19:23:25+00:00"
  199. },
  200. {
  201. "name": "doctrine/collections",
  202. "version": "v1.1",
  203. "source": {
  204. "type": "git",
  205. "url": "https://github.com/doctrine/collections.git",
  206. "reference": "v1.1"
  207. },
  208. "dist": {
  209. "type": "zip",
  210. "url": "https://api.github.com/repos/doctrine/collections/zipball/v1.1",
  211. "reference": "v1.1",
  212. "shasum": ""
  213. },
  214. "require": {
  215. "php": ">=5.3.2"
  216. },
  217. "type": "library",
  218. "extra": {
  219. "branch-alias": {
  220. "dev-master": "1.1.x-dev"
  221. }
  222. },
  223. "autoload": {
  224. "psr-0": {
  225. "Doctrine\\Common\\Collections\\": "lib/"
  226. }
  227. },
  228. "notification-url": "https://packagist.org/downloads/",
  229. "license": [
  230. "MIT"
  231. ],
  232. "authors": [
  233. {
  234. "name": "Jonathan Wage",
  235. "email": "jonwage@gmail.com",
  236. "homepage": "http://www.jwage.com/"
  237. },
  238. {
  239. "name": "Guilherme Blanco",
  240. "email": "guilhermeblanco@gmail.com",
  241. "homepage": "http://www.instaclick.com"
  242. },
  243. {
  244. "name": "Roman Borschel",
  245. "email": "roman@code-factory.org"
  246. },
  247. {
  248. "name": "Benjamin Eberlei",
  249. "email": "kontakt@beberlei.de"
  250. },
  251. {
  252. "name": "Johannes Schmitt",
  253. "email": "schmittjoh@gmail.com",
  254. "homepage": "http://jmsyst.com",
  255. "role": "Developer of wrapped JMSSerializerBundle"
  256. }
  257. ],
  258. "description": "Collections Abstraction library",
  259. "homepage": "http://www.doctrine-project.org",
  260. "keywords": [
  261. "array",
  262. "collections",
  263. "iterator"
  264. ],
  265. "time": "2013-03-07T12:15:54+00:00"
  266. },
  267. {
  268. "name": "evenement/evenement",
  269. "version": "v1.0.0",
  270. "source": {
  271. "type": "git",
  272. "url": "https://github.com/igorw/evenement.git",
  273. "reference": "v1.0.0"
  274. },
  275. "dist": {
  276. "type": "zip",
  277. "url": "https://api.github.com/repos/igorw/evenement/zipball/v1.0.0",
  278. "reference": "v1.0.0",
  279. "shasum": ""
  280. },
  281. "require": {
  282. "php": ">=5.3.0"
  283. },
  284. "type": "library",
  285. "autoload": {
  286. "psr-0": {
  287. "Evenement": "src"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "Igor Wiedler",
  297. "email": "igor@wiedler.ch",
  298. "homepage": "http://wiedler.ch/igor/"
  299. }
  300. ],
  301. "description": "Événement is a very simple event dispatching library for PHP 5.3",
  302. "keywords": [
  303. "event-dispatcher"
  304. ],
  305. "time": "2012-05-30T08:01:08+00:00"
  306. },
  307. {
  308. "name": "monolog/monolog",
  309. "version": "1.6.0",
  310. "source": {
  311. "type": "git",
  312. "url": "https://github.com/Seldaek/monolog.git",
  313. "reference": "f72392d0e6eb855118f5a84e89ac2d257c704abd"
  314. },
  315. "dist": {
  316. "type": "zip",
  317. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f72392d0e6eb855118f5a84e89ac2d257c704abd",
  318. "reference": "f72392d0e6eb855118f5a84e89ac2d257c704abd",
  319. "shasum": ""
  320. },
  321. "require": {
  322. "php": ">=5.3.0",
  323. "psr/log": "~1.0"
  324. },
  325. "require-dev": {
  326. "doctrine/couchdb": "dev-master",
  327. "mlehner/gelf-php": "1.0.*",
  328. "raven/raven": "0.5.*"
  329. },
  330. "suggest": {
  331. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  332. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  333. "ext-mongo": "Allow sending log messages to a MongoDB server",
  334. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server",
  335. "raven/raven": "Allow sending log messages to a Sentry server"
  336. },
  337. "type": "library",
  338. "extra": {
  339. "branch-alias": {
  340. "dev-master": "1.6.x-dev"
  341. }
  342. },
  343. "autoload": {
  344. "psr-0": {
  345. "Monolog": "src/"
  346. }
  347. },
  348. "notification-url": "https://packagist.org/downloads/",
  349. "license": [
  350. "MIT"
  351. ],
  352. "authors": [
  353. {
  354. "name": "Jordi Boggiano",
  355. "email": "j.boggiano@seld.be",
  356. "homepage": "http://seld.be",
  357. "role": "Developer"
  358. }
  359. ],
  360. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  361. "homepage": "http://github.com/Seldaek/monolog",
  362. "keywords": [
  363. "log",
  364. "logging",
  365. "psr-3"
  366. ],
  367. "time": "2013-07-28T22:38:30+00:00"
  368. },
  369. {
  370. "name": "neutron/temporary-filesystem",
  371. "version": "2.1.1",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  375. "reference": "6b21fa99fd452efea16b9a7adb7304ccfff854d0"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/6b21fa99fd452efea16b9a7adb7304ccfff854d0",
  380. "reference": "6b21fa99fd452efea16b9a7adb7304ccfff854d0",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "symfony/filesystem": "~2.0"
  385. },
  386. "require-dev": {
  387. "phpunit/phpunit": "~3.7"
  388. },
  389. "type": "library",
  390. "autoload": {
  391. "psr-0": {
  392. "Neutron": "src"
  393. }
  394. },
  395. "notification-url": "https://packagist.org/downloads/",
  396. "license": [
  397. "MIT"
  398. ],
  399. "authors": [
  400. {
  401. "name": "Romain Neutron",
  402. "email": "imprec@gmail.com",
  403. "homepage": "http://www.lickmychip.com/"
  404. }
  405. ],
  406. "description": "Symfony filesystem extension to handle temporary files",
  407. "time": "2013-10-10T10:58:09+00:00"
  408. },
  409. {
  410. "name": "php-ffmpeg/php-ffmpeg",
  411. "version": "0.4.0",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  415. "reference": "0d82e5ad3cb50fd78882b5e15aaf57b39a274103"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/0d82e5ad3cb50fd78882b5e15aaf57b39a274103",
  420. "reference": "0d82e5ad3cb50fd78882b5e15aaf57b39a274103",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "alchemy/binary-driver": "~1.5",
  425. "doctrine/cache": "~1.0",
  426. "evenement/evenement": "~1.0",
  427. "neutron/temporary-filesystem": "~2.1, >=2.1.1",
  428. "php": ">=5.3.3"
  429. },
  430. "require-dev": {
  431. "phpunit/phpunit": "~3.7",
  432. "sami/sami": "~1.0",
  433. "silex/silex": "~1.0"
  434. },
  435. "suggest": {
  436. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  437. },
  438. "type": "library",
  439. "extra": {
  440. "branch-alias": {
  441. "dev-master": "0.4-dev"
  442. }
  443. },
  444. "autoload": {
  445. "psr-0": {
  446. "FFMpeg": "src"
  447. }
  448. },
  449. "notification-url": "https://packagist.org/downloads/",
  450. "license": [
  451. "MIT"
  452. ],
  453. "authors": [
  454. {
  455. "name": "Romain Neutron",
  456. "email": "imprec@gmail.com",
  457. "homepage": "http://www.lickmychip.com/"
  458. },
  459. {
  460. "name": "Phraseanet Team",
  461. "email": "info@alchemy.fr",
  462. "homepage": "http://www.phraseanet.com/"
  463. }
  464. ],
  465. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  466. "keywords": [
  467. "audio",
  468. "audio processing",
  469. "avconv",
  470. "avprobe",
  471. "ffmpeg",
  472. "ffprobe",
  473. "video",
  474. "video processing"
  475. ],
  476. "time": "2013-10-21T12:16:28+00:00"
  477. },
  478. {
  479. "name": "phpexiftool/exiftool",
  480. "version": "9.15",
  481. "source": {
  482. "type": "git",
  483. "url": "https://github.com/alchemy-fr/exiftool.git",
  484. "reference": "9.15"
  485. },
  486. "dist": {
  487. "type": "zip",
  488. "url": "https://api.github.com/repos/alchemy-fr/exiftool/zipball/9.15",
  489. "reference": "9.15",
  490. "shasum": ""
  491. },
  492. "require": {
  493. "phpexiftool/phpexiftool": "*"
  494. },
  495. "type": "library",
  496. "notification-url": "https://packagist.org/downloads/",
  497. "license": [
  498. "Perl Licensing"
  499. ],
  500. "authors": [
  501. {
  502. "name": "Phil Harvey",
  503. "email": "phil@owl.phy.queensu.ca",
  504. "homepage": "http://www.sno.phy.queensu.ca/~phil/exiftool/"
  505. }
  506. ],
  507. "description": "Exiftool is a library for reading, writing and editing meta information. This package is not PHP, but required for the main PHP driver : PHP Exiftool",
  508. "keywords": [
  509. "exiftool",
  510. "metadatas"
  511. ],
  512. "time": "2013-01-30T18:48:32+00:00"
  513. },
  514. {
  515. "name": "phpexiftool/phpexiftool",
  516. "version": "0.3.0",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/romainneutron/PHPExiftool.git",
  520. "reference": "5c7d6124729eb34f2d86f730e534067e6be31ab9"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/romainneutron/PHPExiftool/zipball/5c7d6124729eb34f2d86f730e534067e6be31ab9",
  525. "reference": "5c7d6124729eb34f2d86f730e534067e6be31ab9",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "doctrine/cache": "~1.0",
  530. "doctrine/collections": "~1.0",
  531. "monolog/monolog": "~1.3",
  532. "php": ">=5.3.3",
  533. "phpexiftool/exiftool": "9.15",
  534. "symfony/process": "~2.0"
  535. },
  536. "require-dev": {
  537. "jms/serializer": "~0.10",
  538. "sami/sami": "~1.0",
  539. "silex/silex": "~1.0",
  540. "symfony/console": "~2.0",
  541. "symfony/css-selector": "~2.0",
  542. "symfony/dom-crawler": "~2.0",
  543. "symfony/finder": "~2.0",
  544. "symfony/yaml": "~2.0"
  545. },
  546. "suggest": {
  547. "jms/serializer": "To serialize tags",
  548. "symfony/yaml": "To serialize tags in Yaml format"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "0.3-dev"
  554. }
  555. },
  556. "autoload": {
  557. "psr-0": {
  558. "PHPExiftool": "lib"
  559. }
  560. },
  561. "notification-url": "https://packagist.org/downloads/",
  562. "license": [
  563. "MIT"
  564. ],
  565. "authors": [
  566. {
  567. "name": "Romain Neutron",
  568. "email": "imprec@gmail.com",
  569. "homepage": "http://www.lickmychip.com/"
  570. }
  571. ],
  572. "description": "Exiftool driver for PHP",
  573. "keywords": [
  574. "exiftool",
  575. "metadata"
  576. ],
  577. "time": "2013-08-07T13:54:27+00:00"
  578. },
  579. {
  580. "name": "psr/log",
  581. "version": "1.0.0",
  582. "source": {
  583. "type": "git",
  584. "url": "https://github.com/php-fig/log.git",
  585. "reference": "1.0.0"
  586. },
  587. "dist": {
  588. "type": "zip",
  589. "url": "https://api.github.com/repos/php-fig/log/zipball/1.0.0",
  590. "reference": "1.0.0",
  591. "shasum": ""
  592. },
  593. "type": "library",
  594. "autoload": {
  595. "psr-0": {
  596. "Psr\\Log\\": ""
  597. }
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "MIT"
  602. ],
  603. "authors": [
  604. {
  605. "name": "PHP-FIG",
  606. "homepage": "http://www.php-fig.org/"
  607. }
  608. ],
  609. "description": "Common interface for logging libraries",
  610. "keywords": [
  611. "log",
  612. "psr",
  613. "psr-3"
  614. ],
  615. "time": "2012-12-21T11:40:51+00:00"
  616. },
  617. {
  618. "name": "symfony/filesystem",
  619. "version": "v2.3.6",
  620. "target-dir": "Symfony/Component/Filesystem",
  621. "source": {
  622. "type": "git",
  623. "url": "https://github.com/symfony/filesystem.git",
  624. "reference": "2b8995042086c5552c94d33b5553c492e9cfc00e"
  625. },
  626. "dist": {
  627. "type": "zip",
  628. "url": "https://api.github.com/repos/symfony/filesystem/zipball/2b8995042086c5552c94d33b5553c492e9cfc00e",
  629. "reference": "2b8995042086c5552c94d33b5553c492e9cfc00e",
  630. "shasum": ""
  631. },
  632. "require": {
  633. "php": ">=5.3.3"
  634. },
  635. "type": "library",
  636. "extra": {
  637. "branch-alias": {
  638. "dev-master": "2.3-dev"
  639. }
  640. },
  641. "autoload": {
  642. "psr-0": {
  643. "Symfony\\Component\\Filesystem\\": ""
  644. }
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "MIT"
  649. ],
  650. "authors": [
  651. {
  652. "name": "Fabien Potencier",
  653. "email": "fabien@symfony.com"
  654. },
  655. {
  656. "name": "Symfony Community",
  657. "homepage": "http://symfony.com/contributors"
  658. }
  659. ],
  660. "description": "Symfony Filesystem Component",
  661. "homepage": "http://symfony.com",
  662. "time": "2013-09-19T09:45:20+00:00"
  663. },
  664. {
  665. "name": "symfony/http-foundation",
  666. "version": "v2.3.6",
  667. "target-dir": "Symfony/Component/HttpFoundation",
  668. "source": {
  669. "type": "git",
  670. "url": "https://github.com/symfony/http-foundation.git",
  671. "reference": "59e712338cd05463ebcb8da6422a01b1291871e3"
  672. },
  673. "dist": {
  674. "type": "zip",
  675. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/59e712338cd05463ebcb8da6422a01b1291871e3",
  676. "reference": "59e712338cd05463ebcb8da6422a01b1291871e3",
  677. "shasum": ""
  678. },
  679. "require": {
  680. "php": ">=5.3.3"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "branch-alias": {
  685. "dev-master": "2.3-dev"
  686. }
  687. },
  688. "autoload": {
  689. "psr-0": {
  690. "Symfony\\Component\\HttpFoundation\\": ""
  691. },
  692. "classmap": [
  693. "Symfony/Component/HttpFoundation/Resources/stubs"
  694. ]
  695. },
  696. "notification-url": "https://packagist.org/downloads/",
  697. "license": [
  698. "MIT"
  699. ],
  700. "authors": [
  701. {
  702. "name": "Fabien Potencier",
  703. "email": "fabien@symfony.com"
  704. },
  705. {
  706. "name": "Symfony Community",
  707. "homepage": "http://symfony.com/contributors"
  708. }
  709. ],
  710. "description": "Symfony HttpFoundation Component",
  711. "homepage": "http://symfony.com",
  712. "time": "2013-09-29T19:41:41+00:00"
  713. },
  714. {
  715. "name": "symfony/process",
  716. "version": "v2.3.6",
  717. "target-dir": "Symfony/Component/Process",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/symfony/process.git",
  721. "reference": "81191e354fe9dad0451036ccf0fdf283649d3f1e"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/symfony/process/zipball/81191e354fe9dad0451036ccf0fdf283649d3f1e",
  726. "reference": "81191e354fe9dad0451036ccf0fdf283649d3f1e",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": ">=5.3.3"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-master": "2.3-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-0": {
  740. "Symfony\\Component\\Process\\": ""
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Fabien Potencier",
  750. "email": "fabien@symfony.com"
  751. },
  752. {
  753. "name": "Symfony Community",
  754. "homepage": "http://symfony.com/contributors"
  755. }
  756. ],
  757. "description": "Symfony Process Component",
  758. "homepage": "http://symfony.com",
  759. "time": "2013-10-09T21:17:57+00:00"
  760. }
  761. ],
  762. "packages-dev": [
  763. {
  764. "name": "doctrine/annotations",
  765. "version": "v1.1.2",
  766. "source": {
  767. "type": "git",
  768. "url": "https://github.com/doctrine/annotations.git",
  769. "reference": "v1.1.2"
  770. },
  771. "dist": {
  772. "type": "zip",
  773. "url": "https://api.github.com/repos/doctrine/annotations/zipball/v1.1.2",
  774. "reference": "v1.1.2",
  775. "shasum": ""
  776. },
  777. "require": {
  778. "doctrine/lexer": "1.*",
  779. "php": ">=5.3.2"
  780. },
  781. "require-dev": {
  782. "doctrine/cache": "1.*"
  783. },
  784. "type": "library",
  785. "extra": {
  786. "branch-alias": {
  787. "dev-master": "1.0.x-dev"
  788. }
  789. },
  790. "autoload": {
  791. "psr-0": {
  792. "Doctrine\\Common\\Annotations\\": "lib/"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Jonathan Wage",
  802. "email": "jonwage@gmail.com",
  803. "homepage": "http://www.jwage.com/"
  804. },
  805. {
  806. "name": "Guilherme Blanco",
  807. "email": "guilhermeblanco@gmail.com",
  808. "homepage": "http://www.instaclick.com"
  809. },
  810. {
  811. "name": "Roman Borschel",
  812. "email": "roman@code-factory.org"
  813. },
  814. {
  815. "name": "Benjamin Eberlei",
  816. "email": "kontakt@beberlei.de"
  817. },
  818. {
  819. "name": "Johannes Schmitt",
  820. "email": "schmittjoh@gmail.com",
  821. "homepage": "https://github.com/schmittjoh",
  822. "role": "Developer of wrapped JMSSerializerBundle"
  823. }
  824. ],
  825. "description": "Docblock Annotations Parser",
  826. "homepage": "http://www.doctrine-project.org",
  827. "keywords": [
  828. "annotations",
  829. "docblock",
  830. "parser"
  831. ],
  832. "time": "2013-06-16T21:33:03+00:00"
  833. },
  834. {
  835. "name": "doctrine/lexer",
  836. "version": "v1.0",
  837. "source": {
  838. "type": "git",
  839. "url": "https://github.com/doctrine/lexer.git",
  840. "reference": "v1.0"
  841. },
  842. "dist": {
  843. "type": "zip",
  844. "url": "https://github.com/doctrine/lexer/archive/v1.0.zip",
  845. "reference": "v1.0",
  846. "shasum": ""
  847. },
  848. "require": {
  849. "php": ">=5.3.2"
  850. },
  851. "type": "library",
  852. "autoload": {
  853. "psr-0": {
  854. "Doctrine\\Common\\Lexer\\": "lib/"
  855. }
  856. },
  857. "notification-url": "https://packagist.org/downloads/",
  858. "license": [
  859. "MIT"
  860. ],
  861. "authors": [
  862. {
  863. "name": "Guilherme Blanco",
  864. "email": "guilhermeblanco@gmail.com",
  865. "homepage": "http://www.instaclick.com"
  866. },
  867. {
  868. "name": "Roman Borschel",
  869. "email": "roman@code-factory.org"
  870. },
  871. {
  872. "name": "Johannes Schmitt",
  873. "email": "schmittjoh@gmail.com",
  874. "homepage": "https://github.com/schmittjoh",
  875. "role": "Developer of wrapped JMSSerializerBundle"
  876. }
  877. ],
  878. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  879. "homepage": "http://www.doctrine-project.org",
  880. "keywords": [
  881. "lexer",
  882. "parser"
  883. ],
  884. "time": "2013-01-12T18:59:04+00:00"
  885. },
  886. {
  887. "name": "jms/metadata",
  888. "version": "1.4.2",
  889. "source": {
  890. "type": "git",
  891. "url": "https://github.com/schmittjoh/metadata.git",
  892. "reference": "246d7096801ce29b5aea30a1abf0277ccfb9f055"
  893. },
  894. "dist": {
  895. "type": "zip",
  896. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/246d7096801ce29b5aea30a1abf0277ccfb9f055",
  897. "reference": "246d7096801ce29b5aea30a1abf0277ccfb9f055",
  898. "shasum": ""
  899. },
  900. "require": {
  901. "php": ">=5.3.0"
  902. },
  903. "require-dev": {
  904. "doctrine/cache": "~1.0"
  905. },
  906. "type": "library",
  907. "extra": {
  908. "branch-alias": {
  909. "dev-master": "1.4.x-dev"
  910. }
  911. },
  912. "autoload": {
  913. "psr-0": {
  914. "Metadata\\": "src/"
  915. }
  916. },
  917. "notification-url": "https://packagist.org/downloads/",
  918. "license": [
  919. "Apache"
  920. ],
  921. "authors": [
  922. {
  923. "name": "Johannes M. Schmitt",
  924. "email": "schmittjoh@gmail.com",
  925. "homepage": "http://jmsyst.com",
  926. "role": "Developer of wrapped JMSSerializerBundle"
  927. }
  928. ],
  929. "description": "Class/method/property metadata management in PHP",
  930. "keywords": [
  931. "annotations",
  932. "metadata",
  933. "xml",
  934. "yaml"
  935. ],
  936. "time": "2013-09-13T09:05:44+00:00"
  937. },
  938. {
  939. "name": "jms/parser-lib",
  940. "version": "1.0.0",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/schmittjoh/parser-lib.git",
  944. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  949. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  950. "shasum": ""
  951. },
  952. "require": {
  953. "phpoption/phpoption": ">=0.9,<2.0-dev"
  954. },
  955. "type": "library",
  956. "extra": {
  957. "branch-alias": {
  958. "dev-master": "1.0-dev"
  959. }
  960. },
  961. "autoload": {
  962. "psr-0": {
  963. "JMS\\": "src/"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "Apache2"
  969. ],
  970. "description": "A library for easily creating recursive-descent parsers.",
  971. "time": "2012-11-18T18:08:43+00:00"
  972. },
  973. {
  974. "name": "jms/serializer",
  975. "version": "0.12.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/schmittjoh/serializer.git",
  979. "reference": "f901383fd3fb5faa55fdf82558a08e7773050d78"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/f901383fd3fb5faa55fdf82558a08e7773050d78",
  984. "reference": "f901383fd3fb5faa55fdf82558a08e7773050d78",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "doctrine/annotations": "1.*",
  989. "jms/metadata": "~1.1",
  990. "jms/parser-lib": "1.*",
  991. "php": ">=5.3.2",
  992. "phpcollection/phpcollection": ">=0.1,<0.3-dev"
  993. },
  994. "require-dev": {
  995. "doctrine/orm": ">=2.1,<2.4-dev",
  996. "symfony/filesystem": "2.*",
  997. "symfony/form": ">=2.1,<2.2-dev",
  998. "symfony/translation": ">=2.0,<2.2-dev",
  999. "symfony/validator": ">=2.0,<2.2-dev",
  1000. "symfony/yaml": "2.*",
  1001. "twig/twig": ">=1.8,<2.0-dev"
  1002. },
  1003. "suggest": {
  1004. "symfony/yaml": "Required if you'd like to serialize data to YAML format."
  1005. },
  1006. "type": "library",
  1007. "extra": {
  1008. "branch-alias": {
  1009. "dev-master": "0.12-dev"
  1010. }
  1011. },
  1012. "autoload": {
  1013. "psr-0": {
  1014. "JMS\\Serializer": "src/"
  1015. }
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "Apache2"
  1020. ],
  1021. "authors": [
  1022. {
  1023. "name": "Johannes Schmitt",
  1024. "email": "schmittjoh@gmail.com",
  1025. "homepage": "https://github.com/schmittjoh",
  1026. "role": "Developer of wrapped JMSSerializerBundle"
  1027. }
  1028. ],
  1029. "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
  1030. "homepage": "http://jmsyst.com/libs/serializer",
  1031. "keywords": [
  1032. "deserialization",
  1033. "jaxb",
  1034. "json",
  1035. "serialization",
  1036. "xml"
  1037. ],
  1038. "time": "2013-03-28T16:41:24+00:00"
  1039. },
  1040. {
  1041. "name": "phpcollection/phpcollection",
  1042. "version": "0.2.0",
  1043. "source": {
  1044. "type": "git",
  1045. "url": "https://github.com/schmittjoh/php-collection.git",
  1046. "reference": "acb02a921bb364f360ce786b13455345063c4a07"
  1047. },
  1048. "dist": {
  1049. "type": "zip",
  1050. "url": "https://api.github.com/repos/schmittjoh/php-collection/zipball/acb02a921bb364f360ce786b13455345063c4a07",
  1051. "reference": "acb02a921bb364f360ce786b13455345063c4a07",
  1052. "shasum": ""
  1053. },
  1054. "require": {
  1055. "phpoption/phpoption": "1.*"
  1056. },
  1057. "type": "library",
  1058. "extra": {
  1059. "branch-alias": {
  1060. "dev-master": "0.2-dev"
  1061. }
  1062. },
  1063. "autoload": {
  1064. "psr-0": {
  1065. "PhpCollection": "src/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "Apache2"
  1071. ],
  1072. "authors": [
  1073. {
  1074. "name": "Johannes Schmitt",
  1075. "email": "schmittjoh@gmail.com",
  1076. "homepage": "https://github.com/schmittjoh",
  1077. "role": "Developer of wrapped JMSSerializerBundle"
  1078. }
  1079. ],
  1080. "description": "General-Purpose Collection Library for PHP",
  1081. "keywords": [
  1082. "collection",
  1083. "list",
  1084. "map",
  1085. "sequence",
  1086. "set"
  1087. ],
  1088. "time": "2013-01-23T15:16:14+00:00"
  1089. },
  1090. {
  1091. "name": "phpoption/phpoption",
  1092. "version": "1.3.0",
  1093. "source": {
  1094. "type": "git",
  1095. "url": "https://github.com/schmittjoh/php-option.git",
  1096. "reference": "1c7e8016289d17d83ced49c56d0f266fd0568941"
  1097. },
  1098. "dist": {
  1099. "type": "zip",
  1100. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/1c7e8016289d17d83ced49c56d0f266fd0568941",
  1101. "reference": "1c7e8016289d17d83ced49c56d0f266fd0568941",
  1102. "shasum": ""
  1103. },
  1104. "require": {
  1105. "php": ">=5.3.0"
  1106. },
  1107. "type": "library",
  1108. "extra": {
  1109. "branch-alias": {
  1110. "dev-master": "1.3-dev"
  1111. }
  1112. },
  1113. "autoload": {
  1114. "psr-0": {
  1115. "PhpOption\\": "src/"
  1116. }
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "Apache2"
  1121. ],
  1122. "authors": [
  1123. {
  1124. "name": "Johannes M. Schmitt",
  1125. "email": "schmittjoh@gmail.com",
  1126. "homepage": "http://jmsyst.com",
  1127. "role": "Developer of wrapped JMSSerializerBundle"
  1128. }
  1129. ],
  1130. "description": "Option Type for PHP",
  1131. "keywords": [
  1132. "language",
  1133. "option",
  1134. "php",
  1135. "type"
  1136. ],
  1137. "time": "2013-05-19T11:09:35+00:00"
  1138. },
  1139. {
  1140. "name": "phpunit/php-code-coverage",
  1141. "version": "1.2.13",
  1142. "source": {
  1143. "type": "git",
  1144. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1145. "reference": "466e7cd2554b4e264c9e3f31216d25ac0e5f3d94"
  1146. },
  1147. "dist": {
  1148. "type": "zip",
  1149. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/466e7cd2554b4e264c9e3f31216d25ac0e5f3d94",
  1150. "reference": "466e7cd2554b4e264c9e3f31216d25ac0e5f3d94",
  1151. "shasum": ""
  1152. },
  1153. "require": {
  1154. "php": ">=5.3.3",
  1155. "phpunit/php-file-iterator": ">=1.3.0@stable",
  1156. "phpunit/php-text-template": ">=1.1.1@stable",
  1157. "phpunit/php-token-stream": ">=1.1.3@stable"
  1158. },
  1159. "require-dev": {
  1160. "phpunit/phpunit": "3.7.*@dev"
  1161. },
  1162. "suggest": {
  1163. "ext-dom": "*",
  1164. "ext-xdebug": ">=2.0.5"
  1165. },
  1166. "type": "library",
  1167. "extra": {
  1168. "branch-alias": {
  1169. "dev-master": "1.2.x-dev"
  1170. }
  1171. },
  1172. "autoload": {
  1173. "classmap": [
  1174. "PHP/"
  1175. ]
  1176. },
  1177. "notification-url": "https://packagist.org/downloads/",
  1178. "include-path": [
  1179. ""
  1180. ],
  1181. "license": [
  1182. "BSD-3-Clause"
  1183. ],
  1184. "authors": [
  1185. {
  1186. "name": "Sebastian Bergmann",
  1187. "email": "sb@sebastian-bergmann.de",
  1188. "role": "lead"
  1189. }
  1190. ],
  1191. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1192. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1193. "keywords": [
  1194. "coverage",
  1195. "testing",
  1196. "xunit"
  1197. ],
  1198. "time": "2013-09-10T08:14:32+00:00"
  1199. },
  1200. {
  1201. "name": "phpunit/php-file-iterator",
  1202. "version": "1.3.4",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1206. "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/acd690379117b042d1c8af1fafd61bde001bf6bb",
  1211. "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "php": ">=5.3.3"
  1216. },
  1217. "type": "library",
  1218. "autoload": {
  1219. "classmap": [
  1220. "File/"
  1221. ]
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "include-path": [
  1225. ""
  1226. ],
  1227. "license": [
  1228. "BSD-3-Clause"
  1229. ],
  1230. "authors": [
  1231. {
  1232. "name": "Sebastian Bergmann",
  1233. "email": "sb@sebastian-bergmann.de",
  1234. "role": "lead"
  1235. }
  1236. ],
  1237. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1238. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1239. "keywords": [
  1240. "filesystem",
  1241. "iterator"
  1242. ],
  1243. "time": "2013-10-10T15:34:57+00:00"
  1244. },
  1245. {
  1246. "name": "phpunit/php-text-template",
  1247. "version": "1.1.4",
  1248. "source": {
  1249. "type": "git",
  1250. "url": "git://github.com/sebastianbergmann/php-text-template.git",
  1251. "reference": "1.1.4"
  1252. },
  1253. "dist": {
  1254. "type": "zip",
  1255. "url": "https://github.com/sebastianbergmann/php-text-template/zipball/1.1.4",
  1256. "reference": "1.1.4",
  1257. "shasum": ""
  1258. },
  1259. "require": {
  1260. "php": ">=5.3.3"
  1261. },
  1262. "type": "library",
  1263. "autoload": {
  1264. "classmap": [
  1265. "Text/"
  1266. ]
  1267. },
  1268. "notification-url": "https://packagist.org/downloads/",
  1269. "include-path": [
  1270. ""
  1271. ],
  1272. "license": [
  1273. "BSD-3-Clause"
  1274. ],
  1275. "authors": [
  1276. {
  1277. "name": "Sebastian Bergmann",
  1278. "email": "sb@sebastian-bergmann.de",
  1279. "role": "lead"
  1280. }
  1281. ],
  1282. "description": "Simple template engine.",
  1283. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1284. "keywords": [
  1285. "template"
  1286. ],
  1287. "time": "2012-10-31T11:15:28+00:00"
  1288. },
  1289. {
  1290. "name": "phpunit/php-timer",
  1291. "version": "1.0.5",
  1292. "source": {
  1293. "type": "git",
  1294. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1295. "reference": "19689d4354b295ee3d8c54b4f42c3efb69cbc17c"
  1296. },
  1297. "dist": {
  1298. "type": "zip",
  1299. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/19689d4354b295ee3d8c54b4f42c3efb69cbc17c",
  1300. "reference": "19689d4354b295ee3d8c54b4f42c3efb69cbc17c",
  1301. "shasum": ""
  1302. },
  1303. "require": {
  1304. "php": ">=5.3.3"
  1305. },
  1306. "type": "library",
  1307. "autoload": {
  1308. "classmap": [
  1309. "PHP/"
  1310. ]
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "include-path": [
  1314. ""
  1315. ],
  1316. "license": [
  1317. "BSD-3-Clause"
  1318. ],
  1319. "authors": [
  1320. {
  1321. "name": "Sebastian Bergmann",
  1322. "email": "sb@sebastian-bergmann.de",
  1323. "role": "lead"
  1324. }
  1325. ],
  1326. "description": "Utility class for timing",
  1327. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1328. "keywords": [
  1329. "timer"
  1330. ],
  1331. "time": "2013-08-02T07:42:54+00:00"
  1332. },
  1333. {
  1334. "name": "phpunit/php-token-stream",
  1335. "version": "1.2.1",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1339. "reference": "5220af2a7929aa35cf663d97c89ad3d50cf5fa3e"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/5220af2a7929aa35cf663d97c89ad3d50cf5fa3e",
  1344. "reference": "5220af2a7929aa35cf663d97c89ad3d50cf5fa3e",
  1345. "shasum": ""
  1346. },
  1347. "require": {
  1348. "ext-tokenizer": "*",
  1349. "php": ">=5.3.3"
  1350. },
  1351. "type": "library",
  1352. "extra": {
  1353. "branch-alias": {
  1354. "dev-master": "1.2-dev"
  1355. }
  1356. },
  1357. "autoload": {
  1358. "classmap": [
  1359. "PHP/"
  1360. ]
  1361. },
  1362. "notification-url": "https://packagist.org/downloads/",
  1363. "include-path": [
  1364. ""
  1365. ],
  1366. "license": [
  1367. "BSD-3-Clause"
  1368. ],
  1369. "authors": [
  1370. {
  1371. "name": "Sebastian Bergmann",
  1372. "email": "sb@sebastian-bergmann.de",
  1373. "role": "lead"
  1374. }
  1375. ],
  1376. "description": "Wrapper around PHP's tokenizer extension.",
  1377. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1378. "keywords": [
  1379. "tokenizer"
  1380. ],
  1381. "time": "2013-09-13T04:58:23+00:00"
  1382. },
  1383. {
  1384. "name": "phpunit/phpunit",
  1385. "version": "3.7.28",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1389. "reference": "3b97c8492bcafbabe6b6fbd2ab35f2f04d932a8d"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3b97c8492bcafbabe6b6fbd2ab35f2f04d932a8d",
  1394. "reference": "3b97c8492bcafbabe6b6fbd2ab35f2f04d932a8d",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "ext-dom": "*",
  1399. "ext-pcre": "*",
  1400. "ext-reflection": "*",
  1401. "ext-spl": "*",
  1402. "php": ">=5.3.3",
  1403. "phpunit/php-code-coverage": "~1.2.1",
  1404. "phpunit/php-file-iterator": ">=1.3.1",
  1405. "phpunit/php-text-template": ">=1.1.1",
  1406. "phpunit/php-timer": ">=1.0.4",
  1407. "phpunit/phpunit-mock-objects": "~1.2.0",
  1408. "symfony/yaml": "~2.0"
  1409. },
  1410. "require-dev": {
  1411. "pear-pear/pear": "1.9.4"
  1412. },
  1413. "suggest": {
  1414. "ext-json": "*",
  1415. "ext-simplexml": "*",
  1416. "ext-tokenizer": "*",
  1417. "phpunit/php-invoker": ">=1.1.0,<1.2.0"
  1418. },
  1419. "bin": [
  1420. "composer/bin/phpunit"
  1421. ],
  1422. "type": "library",
  1423. "extra": {
  1424. "branch-alias": {
  1425. "dev-master": "3.7.x-dev"
  1426. }
  1427. },
  1428. "autoload": {
  1429. "classmap": [
  1430. "PHPUnit/"
  1431. ]
  1432. },
  1433. "notification-url": "https://packagist.org/downloads/",
  1434. "include-path": [
  1435. "",
  1436. "../../symfony/yaml/"
  1437. ],
  1438. "license": [
  1439. "BSD-3-Clause"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "Sebastian Bergmann",
  1444. "email": "sebastian@phpunit.de",
  1445. "role": "lead"
  1446. }
  1447. ],
  1448. "description": "The PHP Unit Testing framework.",
  1449. "homepage": "http://www.phpunit.de/",
  1450. "keywords": [
  1451. "phpunit",
  1452. "testing",
  1453. "xunit"
  1454. ],
  1455. "time": "2013-10-17T07:27:40+00:00"
  1456. },
  1457. {
  1458. "name": "phpunit/phpunit-mock-objects",
  1459. "version": "1.2.3",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "git://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1463. "reference": "1.2.3"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects/archive/1.2.3.zip",
  1468. "reference": "1.2.3",
  1469. "shasum": ""
  1470. },
  1471. "require": {
  1472. "php": ">=5.3.3",
  1473. "phpunit/php-text-template": ">=1.1.1@stable"
  1474. },
  1475. "suggest": {
  1476. "ext-soap": "*"
  1477. },
  1478. "type": "library",
  1479. "autoload": {
  1480. "classmap": [
  1481. "PHPUnit/"
  1482. ]
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "include-path": [
  1486. ""
  1487. ],
  1488. "license": [
  1489. "BSD-3-Clause"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Sebastian Bergmann",
  1494. "email": "sb@sebastian-bergmann.de",
  1495. "role": "lead"
  1496. }
  1497. ],
  1498. "description": "Mock Object library for PHPUnit",
  1499. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1500. "keywords": [
  1501. "mock",
  1502. "xunit"
  1503. ],
  1504. "time": "2013-01-13T10:24:48+00:00"
  1505. },
  1506. {
  1507. "name": "pimple/pimple",
  1508. "version": "v1.0.2",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/fabpot/Pimple.git",
  1512. "reference": "v1.0.2"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/fabpot/Pimple/zipball/v1.0.2",
  1517. "reference": "v1.0.2",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "php": ">=5.3.0"
  1522. },
  1523. "type": "library",
  1524. "extra": {
  1525. "branch-alias": {
  1526. "dev-master": "1.0.x-dev"
  1527. }
  1528. },
  1529. "autoload": {
  1530. "psr-0": {
  1531. "Pimple": "lib/"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "Fabien Potencier",
  1541. "email": "fabien@symfony.com"
  1542. }
  1543. ],
  1544. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  1545. "homepage": "http://pimple.sensiolabs.org",
  1546. "keywords": [
  1547. "container",
  1548. "dependency injection"
  1549. ],
  1550. "time": "2013-03-08T08:21:40+00:00"
  1551. },
  1552. {
  1553. "name": "silex/silex",
  1554. "version": "v1.1.1",
  1555. "source": {
  1556. "type": "git",
  1557. "url": "https://github.com/fabpot/Silex.git",
  1558. "reference": "b3a7beefa7e9a4d9d81bf207126f181858d4abda"
  1559. },
  1560. "dist": {
  1561. "type": "zip",
  1562. "url": "https://api.github.com/repos/fabpot/Silex/zipball/b3a7beefa7e9a4d9d81bf207126f181858d4abda",
  1563. "reference": "b3a7beefa7e9a4d9d81bf207126f181858d4abda",
  1564. "shasum": ""
  1565. },
  1566. "require": {
  1567. "php": ">=5.3.3",
  1568. "pimple/pimple": "1.*",
  1569. "symfony/event-dispatcher": ">=2.3,<2.5-dev",
  1570. "symfony/http-foundation": ">=2.3,<2.5-dev",
  1571. "symfony/http-kernel": ">=2.3,<2.5-dev",
  1572. "symfony/routing": ">=2.3,<2.5-dev"
  1573. },
  1574. "require-dev": {
  1575. "doctrine/dbal": ">=2.2.0,<2.4.0-dev",
  1576. "monolog/monolog": "~1.4,>=1.4.1",
  1577. "phpunit/phpunit": "~3.7",
  1578. "swiftmailer/swiftmailer": "5.*",
  1579. "symfony/browser-kit": ">=2.3,<2.5-dev",
  1580. "symfony/config": ">=2.3,<2.5-dev",
  1581. "symfony/css-selector": ">=2.3,<2.5-dev",
  1582. "symfony/debug": ">=2.3,<2.5-dev",
  1583. "symfony/dom-crawler": ">=2.3,<2.5-dev",
  1584. "symfony/finder": ">=2.3,<2.5-dev",
  1585. "symfony/form": ">=2.3,<2.5-dev",
  1586. "symfony/locale": ">=2.3,<2.5-dev",
  1587. "symfony/monolog-bridge": ">=2.3,<2.5-dev",
  1588. "symfony/options-resolver": ">=2.3,<2.5-dev",
  1589. "symfony/process": ">=2.3,<2.5-dev",
  1590. "symfony/security": ">=2.3,<2.5-dev",
  1591. "symfony/serializer": ">=2.3,<2.5-dev",
  1592. "symfony/translation": ">=2.3,<2.5-dev",
  1593. "symfony/twig-bridge": ">=2.3,<2.5-dev",
  1594. "symfony/validator": ">=2.3,<2.5-dev",
  1595. "twig/twig": ">=1.8.0,<2.0-dev"
  1596. },
  1597. "suggest": {
  1598. "symfony/browser-kit": ">=2.3,<2.5-dev",
  1599. "symfony/css-selector": ">=2.3,<2.5-dev",
  1600. "symfony/dom-crawler": ">=2.3,<2.5-dev",
  1601. "symfony/form": ">=2.3,<2.5-dev"
  1602. },
  1603. "type": "library",
  1604. "extra": {
  1605. "branch-alias": {
  1606. "dev-master": "1.1.x-dev"
  1607. }
  1608. },
  1609. "autoload": {
  1610. "psr-0": {
  1611. "Silex": "src/"
  1612. }
  1613. },
  1614. "notification-url": "https://packagist.org/downloads/",
  1615. "license": [
  1616. "MIT"
  1617. ],
  1618. "authors": [
  1619. {
  1620. "name": "Fabien Potencier",
  1621. "email": "fabien@symfony.com"
  1622. },
  1623. {
  1624. "name": "Igor Wiedler",
  1625. "email": "igor@wiedler.ch",
  1626. "homepage": "http://wiedler.ch/igor/"
  1627. }
  1628. ],
  1629. "description": "The PHP micro-framework based on the Symfony2 Components",
  1630. "homepage": "http://silex.sensiolabs.org",
  1631. "keywords": [
  1632. "microframework"
  1633. ],
  1634. "time": "2013-10-11T10:30:06+00:00"
  1635. },
  1636. {
  1637. "name": "symfony/debug",
  1638. "version": "v2.3.6",
  1639. "target-dir": "Symfony/Component/Debug",
  1640. "source": {
  1641. "type": "git",
  1642. "url": "https://github.com/symfony/Debug.git",
  1643. "reference": "7f671456b9617d0a54f04597ae1c1ed3a1e858fd"
  1644. },
  1645. "dist": {
  1646. "type": "zip",
  1647. "url": "https://api.github.com/repos/symfony/Debug/zipball/7f671456b9617d0a54f04597ae1c1ed3a1e858fd",
  1648. "reference": "7f671456b9617d0a54f04597ae1c1ed3a1e858fd",
  1649. "shasum": ""
  1650. },
  1651. "require": {
  1652. "php": ">=5.3.3"
  1653. },
  1654. "require-dev": {
  1655. "symfony/http-foundation": "~2.1",
  1656. "symfony/http-kernel": "~2.1"
  1657. },
  1658. "suggest": {
  1659. "symfony/class-loader": "",
  1660. "symfony/http-foundation": "",
  1661. "symfony/http-kernel": ""
  1662. },
  1663. "type": "library",
  1664. "extra": {
  1665. "branch-alias": {
  1666. "dev-master": "2.3-dev"
  1667. }
  1668. },
  1669. "autoload": {
  1670. "psr-0": {
  1671. "Symfony\\Component\\Debug\\": ""
  1672. }
  1673. },
  1674. "notification-url": "https://packagist.org/downloads/",
  1675. "license": [
  1676. "MIT"
  1677. ],
  1678. "authors": [
  1679. {
  1680. "name": "Fabien Potencier",
  1681. "email": "fabien@symfony.com"
  1682. },
  1683. {
  1684. "name": "Symfony Community",
  1685. "homepage": "http://symfony.com/contributors"
  1686. }
  1687. ],
  1688. "description": "Symfony Debug Component",
  1689. "homepage": "http://symfony.com",
  1690. "time": "2013-09-19T09:47:13+00:00"
  1691. },
  1692. {
  1693. "name": "symfony/event-dispatcher",
  1694. "version": "v2.3.6",
  1695. "target-dir": "Symfony/Component/EventDispatcher",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://github.com/symfony/EventDispatcher.git",
  1699. "reference": "7fc72a7a346a1887d3968cc1ce5642a15cd182e9"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/7fc72a7a346a1887d3968cc1ce5642a15cd182e9",
  1704. "reference": "7fc72a7a346a1887d3968cc1ce5642a15cd182e9",
  1705. "shasum": ""
  1706. },
  1707. "require": {
  1708. "php": ">=5.3.3"
  1709. },
  1710. "require-dev": {
  1711. "symfony/dependency-injection": "~2.0"
  1712. },
  1713. "suggest": {
  1714. "symfony/dependency-injection": "",
  1715. "symfony/http-kernel": ""
  1716. },
  1717. "type": "library",
  1718. "extra": {
  1719. "branch-alias": {
  1720. "dev-master": "2.3-dev"
  1721. }
  1722. },
  1723. "autoload": {
  1724. "psr-0": {
  1725. "Symfony\\Component\\EventDispatcher\\": ""
  1726. }
  1727. },
  1728. "notification-url": "https://packagist.org/downloads/",
  1729. "license": [
  1730. "MIT"
  1731. ],
  1732. "authors": [
  1733. {
  1734. "name": "Fabien Potencier",
  1735. "email": "fabien@symfony.com"
  1736. },
  1737. {
  1738. "name": "Symfony Community",
  1739. "homepage": "http://symfony.com/contributors"
  1740. }
  1741. ],
  1742. "description": "Symfony EventDispatcher Component",
  1743. "homepage": "http://symfony.com",
  1744. "time": "2013-09-19T09:45:20+00:00"
  1745. },
  1746. {
  1747. "name": "symfony/http-kernel",
  1748. "version": "v2.3.6",
  1749. "target-dir": "Symfony/Component/HttpKernel",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://github.com/symfony/HttpKernel.git",
  1753. "reference": "9ace7b963fa6d2eae8471c246e6fabc2ef714566"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/9ace7b963fa6d2eae8471c246e6fabc2ef714566",
  1758. "reference": "9ace7b963fa6d2eae8471c246e6fabc2ef714566",
  1759. "shasum": ""
  1760. },
  1761. "require": {
  1762. "php": ">=5.3.3",
  1763. "psr/log": "~1.0",
  1764. "symfony/debug": "~2.3",
  1765. "symfony/event-dispatcher": "~2.1",
  1766. "symfony/http-foundation": "~2.2"
  1767. },
  1768. "require-dev": {
  1769. "symfony/browser-kit": "~2.2",
  1770. "symfony/class-loader": "~2.1",
  1771. "symfony/config": "~2.0",
  1772. "symfony/console": "~2.2",
  1773. "symfony/dependency-injection": "~2.0",
  1774. "symfony/finder": "~2.0",
  1775. "symfony/process": "~2.0",
  1776. "symfony/routing": "~2.2",
  1777. "symfony/stopwatch": "~2.2",
  1778. "symfony/templating": "~2.2"
  1779. },
  1780. "suggest": {
  1781. "symfony/browser-kit": "",
  1782. "symfony/class-loader": "",
  1783. "symfony/config": "",
  1784. "symfony/console": "",
  1785. "symfony/dependency-injection": "",
  1786. "symfony/finder": ""
  1787. },
  1788. "type": "library",
  1789. "extra": {
  1790. "branch-alias": {
  1791. "dev-master": "2.3-dev"
  1792. }
  1793. },
  1794. "autoload": {
  1795. "psr-0": {
  1796. "Symfony\\Component\\HttpKernel\\": ""
  1797. }
  1798. },
  1799. "notification-url": "https://packagist.org/downloads/",
  1800. "license": [
  1801. "MIT"
  1802. ],
  1803. "authors": [
  1804. {
  1805. "name": "Fabien Potencier",
  1806. "email": "fabien@symfony.com"
  1807. },
  1808. {
  1809. "name": "Symfony Community",
  1810. "homepage": "http://symfony.com/contributors"
  1811. }
  1812. ],
  1813. "description": "Symfony HttpKernel Component",
  1814. "homepage": "http://symfony.com",
  1815. "time": "2013-10-10T13:24:22+00:00"
  1816. },
  1817. {
  1818. "name": "symfony/routing",
  1819. "version": "v2.3.6",
  1820. "target-dir": "Symfony/Component/Routing",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/symfony/Routing.git",
  1824. "reference": "7d41463094752e87a0fae60316d236abecb8a034"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/symfony/Routing/zipball/7d41463094752e87a0fae60316d236abecb8a034",
  1829. "reference": "7d41463094752e87a0fae60316d236abecb8a034",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "php": ">=5.3.3"
  1834. },
  1835. "require-dev": {
  1836. "doctrine/common": "~2.2",
  1837. "psr/log": "~1.0",
  1838. "symfony/config": "~2.2",
  1839. "symfony/yaml": "~2.0"
  1840. },
  1841. "suggest": {
  1842. "doctrine/common": "",
  1843. "symfony/config": "",
  1844. "symfony/yaml": ""
  1845. },
  1846. "type": "library",
  1847. "extra": {
  1848. "branch-alias": {
  1849. "dev-master": "2.3-dev"
  1850. }
  1851. },
  1852. "autoload": {
  1853. "psr-0": {
  1854. "Symfony\\Component\\Routing\\": ""
  1855. }
  1856. },
  1857. "notification-url": "https://packagist.org/downloads/",
  1858. "license": [
  1859. "MIT"
  1860. ],
  1861. "authors": [
  1862. {
  1863. "name": "Fabien Potencier",
  1864. "email": "fabien@symfony.com"
  1865. },
  1866. {
  1867. "name": "Symfony Community",
  1868. "homepage": "http://symfony.com/contributors"
  1869. }
  1870. ],
  1871. "description": "Symfony Routing Component",
  1872. "homepage": "http://symfony.com",
  1873. "time": "2013-09-29T19:41:41+00:00"
  1874. },
  1875. {
  1876. "name": "symfony/yaml",
  1877. "version": "v2.3.6",
  1878. "target-dir": "Symfony/Component/Yaml",
  1879. "source": {
  1880. "type": "git",
  1881. "url": "https://github.com/symfony/Yaml.git",
  1882. "reference": "6bb881b948368482e1abf1a75c08bcf88a1c5fc3"
  1883. },
  1884. "dist": {
  1885. "type": "zip",
  1886. "url": "https://api.github.com/repos/symfony/Yaml/zipball/6bb881b948368482e1abf1a75c08bcf88a1c5fc3",
  1887. "reference": "6bb881b948368482e1abf1a75c08bcf88a1c5fc3",
  1888. "shasum": ""
  1889. },
  1890. "require": {
  1891. "php": ">=5.3.3"
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "2.3-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-0": {
  1901. "Symfony\\Component\\Yaml\\": ""
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "authors": [
  1909. {
  1910. "name": "Fabien Potencier",
  1911. "email": "fabien@symfony.com"
  1912. },
  1913. {
  1914. "name": "Symfony Community",
  1915. "homepage": "http://symfony.com/contributors"
  1916. }
  1917. ],
  1918. "description": "Symfony Yaml Component",
  1919. "homepage": "http://symfony.com",
  1920. "time": "2013-09-22T18:04:39+00:00"
  1921. }
  1922. ],
  1923. "aliases": [],
  1924. "minimum-stability": "stable",
  1925. "stability-flags": [],
  1926. "prefer-stable": false,
  1927. "prefer-lowest": false,
  1928. "platform": {
  1929. "php": ">=5.3.0"
  1930. },
  1931. "platform-dev": []
  1932. }