installed.json 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471
  1. [
  2. {
  3. "name": "doctrine/inflector",
  4. "version": "v1.1.0",
  5. "version_normalized": "1.1.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/doctrine/inflector.git",
  9. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  14. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "php": ">=5.3.2"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "4.*"
  22. },
  23. "time": "2015-11-06T14:35:42+00:00",
  24. "type": "library",
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "1.1.x-dev"
  28. }
  29. },
  30. "installation-source": "dist",
  31. "autoload": {
  32. "psr-0": {
  33. "Doctrine\\Common\\Inflector\\": "lib/"
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Roman Borschel",
  43. "email": "roman@code-factory.org"
  44. },
  45. {
  46. "name": "Benjamin Eberlei",
  47. "email": "kontakt@beberlei.de"
  48. },
  49. {
  50. "name": "Guilherme Blanco",
  51. "email": "guilhermeblanco@gmail.com"
  52. },
  53. {
  54. "name": "Jonathan Wage",
  55. "email": "jonwage@gmail.com"
  56. },
  57. {
  58. "name": "Johannes Schmitt",
  59. "email": "schmittjoh@gmail.com"
  60. }
  61. ],
  62. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  63. "homepage": "http://www.doctrine-project.org",
  64. "keywords": [
  65. "inflection",
  66. "pluralize",
  67. "singularize",
  68. "string"
  69. ]
  70. },
  71. {
  72. "name": "erusev/parsedown",
  73. "version": "1.6.2",
  74. "version_normalized": "1.6.2.0",
  75. "source": {
  76. "type": "git",
  77. "url": "https://github.com/erusev/parsedown.git",
  78. "reference": "1bf24f7334fe16c88bf9d467863309ceaf285b01"
  79. },
  80. "dist": {
  81. "type": "zip",
  82. "url": "https://api.github.com/repos/erusev/parsedown/zipball/1bf24f7334fe16c88bf9d467863309ceaf285b01",
  83. "reference": "1bf24f7334fe16c88bf9d467863309ceaf285b01",
  84. "shasum": ""
  85. },
  86. "require": {
  87. "php": ">=5.3.0"
  88. },
  89. "time": "2017-03-29T16:04:15+00:00",
  90. "type": "library",
  91. "installation-source": "dist",
  92. "autoload": {
  93. "psr-0": {
  94. "Parsedown": ""
  95. }
  96. },
  97. "notification-url": "https://packagist.org/downloads/",
  98. "license": [
  99. "MIT"
  100. ],
  101. "authors": [
  102. {
  103. "name": "Emanuil Rusev",
  104. "email": "hello@erusev.com",
  105. "homepage": "http://erusev.com"
  106. }
  107. ],
  108. "description": "Parser for Markdown.",
  109. "homepage": "http://parsedown.org",
  110. "keywords": [
  111. "markdown",
  112. "parser"
  113. ]
  114. },
  115. {
  116. "name": "jakub-onderka/php-console-color",
  117. "version": "0.1",
  118. "version_normalized": "0.1.0.0",
  119. "source": {
  120. "type": "git",
  121. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  122. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  123. },
  124. "dist": {
  125. "type": "zip",
  126. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  127. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  128. "shasum": ""
  129. },
  130. "require": {
  131. "php": ">=5.3.2"
  132. },
  133. "require-dev": {
  134. "jakub-onderka/php-code-style": "1.0",
  135. "jakub-onderka/php-parallel-lint": "0.*",
  136. "jakub-onderka/php-var-dump-check": "0.*",
  137. "phpunit/phpunit": "3.7.*",
  138. "squizlabs/php_codesniffer": "1.*"
  139. },
  140. "time": "2014-04-08T15:00:19+00:00",
  141. "type": "library",
  142. "installation-source": "dist",
  143. "autoload": {
  144. "psr-0": {
  145. "JakubOnderka\\PhpConsoleColor": "src/"
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "BSD-2-Clause"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Jakub Onderka",
  155. "email": "jakub.onderka@gmail.com",
  156. "homepage": "http://www.acci.cz"
  157. }
  158. ]
  159. },
  160. {
  161. "name": "symfony/polyfill-mbstring",
  162. "version": "v1.4.0",
  163. "version_normalized": "1.4.0.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/symfony/polyfill-mbstring.git",
  167. "reference": "f29dca382a6485c3cbe6379f0c61230167681937"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f29dca382a6485c3cbe6379f0c61230167681937",
  172. "reference": "f29dca382a6485c3cbe6379f0c61230167681937",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "php": ">=5.3.3"
  177. },
  178. "suggest": {
  179. "ext-mbstring": "For best performance"
  180. },
  181. "time": "2017-06-09T14:24:12+00:00",
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "1.4-dev"
  186. }
  187. },
  188. "installation-source": "dist",
  189. "autoload": {
  190. "psr-4": {
  191. "Symfony\\Polyfill\\Mbstring\\": ""
  192. },
  193. "files": [
  194. "bootstrap.php"
  195. ]
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Nicolas Grekas",
  204. "email": "p@tchwork.com"
  205. },
  206. {
  207. "name": "Symfony Community",
  208. "homepage": "https://symfony.com/contributors"
  209. }
  210. ],
  211. "description": "Symfony polyfill for the Mbstring extension",
  212. "homepage": "https://symfony.com",
  213. "keywords": [
  214. "compatibility",
  215. "mbstring",
  216. "polyfill",
  217. "portable",
  218. "shim"
  219. ]
  220. },
  221. {
  222. "name": "symfony/var-dumper",
  223. "version": "v3.3.2",
  224. "version_normalized": "3.3.2.0",
  225. "source": {
  226. "type": "git",
  227. "url": "https://github.com/symfony/var-dumper.git",
  228. "reference": "347c4247a3e40018810b476fcd5dec36d46d08dc"
  229. },
  230. "dist": {
  231. "type": "zip",
  232. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/347c4247a3e40018810b476fcd5dec36d46d08dc",
  233. "reference": "347c4247a3e40018810b476fcd5dec36d46d08dc",
  234. "shasum": ""
  235. },
  236. "require": {
  237. "php": ">=5.5.9",
  238. "symfony/polyfill-mbstring": "~1.0"
  239. },
  240. "conflict": {
  241. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  242. },
  243. "require-dev": {
  244. "ext-iconv": "*",
  245. "twig/twig": "~1.34|~2.4"
  246. },
  247. "suggest": {
  248. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  249. "ext-symfony_debug": ""
  250. },
  251. "time": "2017-06-02T09:10:29+00:00",
  252. "type": "library",
  253. "extra": {
  254. "branch-alias": {
  255. "dev-master": "3.3-dev"
  256. }
  257. },
  258. "installation-source": "dist",
  259. "autoload": {
  260. "files": [
  261. "Resources/functions/dump.php"
  262. ],
  263. "psr-4": {
  264. "Symfony\\Component\\VarDumper\\": ""
  265. },
  266. "exclude-from-classmap": [
  267. "/Tests/"
  268. ]
  269. },
  270. "notification-url": "https://packagist.org/downloads/",
  271. "license": [
  272. "MIT"
  273. ],
  274. "authors": [
  275. {
  276. "name": "Nicolas Grekas",
  277. "email": "p@tchwork.com"
  278. },
  279. {
  280. "name": "Symfony Community",
  281. "homepage": "https://symfony.com/contributors"
  282. }
  283. ],
  284. "description": "Symfony mechanism for exploring and dumping PHP variables",
  285. "homepage": "https://symfony.com",
  286. "keywords": [
  287. "debug",
  288. "dump"
  289. ]
  290. },
  291. {
  292. "name": "psr/log",
  293. "version": "1.0.2",
  294. "version_normalized": "1.0.2.0",
  295. "source": {
  296. "type": "git",
  297. "url": "https://github.com/php-fig/log.git",
  298. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  299. },
  300. "dist": {
  301. "type": "zip",
  302. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  303. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  304. "shasum": ""
  305. },
  306. "require": {
  307. "php": ">=5.3.0"
  308. },
  309. "time": "2016-10-10T12:19:37+00:00",
  310. "type": "library",
  311. "extra": {
  312. "branch-alias": {
  313. "dev-master": "1.0.x-dev"
  314. }
  315. },
  316. "installation-source": "dist",
  317. "autoload": {
  318. "psr-4": {
  319. "Psr\\Log\\": "Psr/Log/"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "PHP-FIG",
  329. "homepage": "http://www.php-fig.org/"
  330. }
  331. ],
  332. "description": "Common interface for logging libraries",
  333. "homepage": "https://github.com/php-fig/log",
  334. "keywords": [
  335. "log",
  336. "psr",
  337. "psr-3"
  338. ]
  339. },
  340. {
  341. "name": "symfony/debug",
  342. "version": "v3.3.2",
  343. "version_normalized": "3.3.2.0",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/symfony/debug.git",
  347. "reference": "e9c50482841ef696e8fa1470d950a79c8921f45d"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://api.github.com/repos/symfony/debug/zipball/e9c50482841ef696e8fa1470d950a79c8921f45d",
  352. "reference": "e9c50482841ef696e8fa1470d950a79c8921f45d",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "php": ">=5.5.9",
  357. "psr/log": "~1.0"
  358. },
  359. "conflict": {
  360. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  361. },
  362. "require-dev": {
  363. "symfony/http-kernel": "~2.8|~3.0"
  364. },
  365. "time": "2017-06-01T21:01:25+00:00",
  366. "type": "library",
  367. "extra": {
  368. "branch-alias": {
  369. "dev-master": "3.3-dev"
  370. }
  371. },
  372. "installation-source": "dist",
  373. "autoload": {
  374. "psr-4": {
  375. "Symfony\\Component\\Debug\\": ""
  376. },
  377. "exclude-from-classmap": [
  378. "/Tests/"
  379. ]
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Fabien Potencier",
  388. "email": "fabien@symfony.com"
  389. },
  390. {
  391. "name": "Symfony Community",
  392. "homepage": "https://symfony.com/contributors"
  393. }
  394. ],
  395. "description": "Symfony Debug Component",
  396. "homepage": "https://symfony.com"
  397. },
  398. {
  399. "name": "symfony/console",
  400. "version": "v3.3.2",
  401. "version_normalized": "3.3.2.0",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/symfony/console.git",
  405. "reference": "70d2a29b2911cbdc91a7e268046c395278238b2e"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://api.github.com/repos/symfony/console/zipball/70d2a29b2911cbdc91a7e268046c395278238b2e",
  410. "reference": "70d2a29b2911cbdc91a7e268046c395278238b2e",
  411. "shasum": ""
  412. },
  413. "require": {
  414. "php": ">=5.5.9",
  415. "symfony/debug": "~2.8|~3.0",
  416. "symfony/polyfill-mbstring": "~1.0"
  417. },
  418. "conflict": {
  419. "symfony/dependency-injection": "<3.3"
  420. },
  421. "require-dev": {
  422. "psr/log": "~1.0",
  423. "symfony/config": "~3.3",
  424. "symfony/dependency-injection": "~3.3",
  425. "symfony/event-dispatcher": "~2.8|~3.0",
  426. "symfony/filesystem": "~2.8|~3.0",
  427. "symfony/http-kernel": "~2.8|~3.0",
  428. "symfony/process": "~2.8|~3.0"
  429. },
  430. "suggest": {
  431. "psr/log": "For using the console logger",
  432. "symfony/event-dispatcher": "",
  433. "symfony/filesystem": "",
  434. "symfony/process": ""
  435. },
  436. "time": "2017-06-02T19:24:58+00:00",
  437. "type": "library",
  438. "extra": {
  439. "branch-alias": {
  440. "dev-master": "3.3-dev"
  441. }
  442. },
  443. "installation-source": "dist",
  444. "autoload": {
  445. "psr-4": {
  446. "Symfony\\Component\\Console\\": ""
  447. },
  448. "exclude-from-classmap": [
  449. "/Tests/"
  450. ]
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Fabien Potencier",
  459. "email": "fabien@symfony.com"
  460. },
  461. {
  462. "name": "Symfony Community",
  463. "homepage": "https://symfony.com/contributors"
  464. }
  465. ],
  466. "description": "Symfony Console Component",
  467. "homepage": "https://symfony.com"
  468. },
  469. {
  470. "name": "nikic/php-parser",
  471. "version": "v3.0.5",
  472. "version_normalized": "3.0.5.0",
  473. "source": {
  474. "type": "git",
  475. "url": "https://github.com/nikic/PHP-Parser.git",
  476. "reference": "2b9e2f71b722f7c53918ab0c25f7646c2013f17d"
  477. },
  478. "dist": {
  479. "type": "zip",
  480. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2b9e2f71b722f7c53918ab0c25f7646c2013f17d",
  481. "reference": "2b9e2f71b722f7c53918ab0c25f7646c2013f17d",
  482. "shasum": ""
  483. },
  484. "require": {
  485. "ext-tokenizer": "*",
  486. "php": ">=5.5"
  487. },
  488. "require-dev": {
  489. "phpunit/phpunit": "~4.0|~5.0"
  490. },
  491. "time": "2017-03-05T18:23:57+00:00",
  492. "bin": [
  493. "bin/php-parse"
  494. ],
  495. "type": "library",
  496. "extra": {
  497. "branch-alias": {
  498. "dev-master": "3.0-dev"
  499. }
  500. },
  501. "installation-source": "dist",
  502. "autoload": {
  503. "psr-4": {
  504. "PhpParser\\": "lib/PhpParser"
  505. }
  506. },
  507. "notification-url": "https://packagist.org/downloads/",
  508. "license": [
  509. "BSD-3-Clause"
  510. ],
  511. "authors": [
  512. {
  513. "name": "Nikita Popov"
  514. }
  515. ],
  516. "description": "A PHP parser written in PHP",
  517. "keywords": [
  518. "parser",
  519. "php"
  520. ]
  521. },
  522. {
  523. "name": "jakub-onderka/php-console-highlighter",
  524. "version": "v0.3.2",
  525. "version_normalized": "0.3.2.0",
  526. "source": {
  527. "type": "git",
  528. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  529. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  530. },
  531. "dist": {
  532. "type": "zip",
  533. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  534. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  535. "shasum": ""
  536. },
  537. "require": {
  538. "jakub-onderka/php-console-color": "~0.1",
  539. "php": ">=5.3.0"
  540. },
  541. "require-dev": {
  542. "jakub-onderka/php-code-style": "~1.0",
  543. "jakub-onderka/php-parallel-lint": "~0.5",
  544. "jakub-onderka/php-var-dump-check": "~0.1",
  545. "phpunit/phpunit": "~4.0",
  546. "squizlabs/php_codesniffer": "~1.5"
  547. },
  548. "time": "2015-04-20T18:58:01+00:00",
  549. "type": "library",
  550. "installation-source": "dist",
  551. "autoload": {
  552. "psr-0": {
  553. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  554. }
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Jakub Onderka",
  563. "email": "acci@acci.cz",
  564. "homepage": "http://www.acci.cz/"
  565. }
  566. ]
  567. },
  568. {
  569. "name": "dnoegel/php-xdg-base-dir",
  570. "version": "0.1",
  571. "version_normalized": "0.1.0.0",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  575. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  580. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "php": ">=5.3.2"
  585. },
  586. "require-dev": {
  587. "phpunit/phpunit": "@stable"
  588. },
  589. "time": "2014-10-24T07:27:01+00:00",
  590. "type": "project",
  591. "installation-source": "dist",
  592. "autoload": {
  593. "psr-4": {
  594. "XdgBaseDir\\": "src/"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "description": "implementation of xdg base directory specification for php"
  602. },
  603. {
  604. "name": "psy/psysh",
  605. "version": "v0.8.6",
  606. "version_normalized": "0.8.6.0",
  607. "source": {
  608. "type": "git",
  609. "url": "https://github.com/bobthecow/psysh.git",
  610. "reference": "7028d6d525fb183d50b249b7c07598e3d386b27d"
  611. },
  612. "dist": {
  613. "type": "zip",
  614. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7028d6d525fb183d50b249b7c07598e3d386b27d",
  615. "reference": "7028d6d525fb183d50b249b7c07598e3d386b27d",
  616. "shasum": ""
  617. },
  618. "require": {
  619. "dnoegel/php-xdg-base-dir": "0.1",
  620. "jakub-onderka/php-console-highlighter": "0.3.*",
  621. "nikic/php-parser": "~1.3|~2.0|~3.0",
  622. "php": ">=5.3.9",
  623. "symfony/console": "~2.3.10|^2.4.2|~3.0",
  624. "symfony/var-dumper": "~2.7|~3.0"
  625. },
  626. "require-dev": {
  627. "friendsofphp/php-cs-fixer": "~1.11",
  628. "hoa/console": "~3.16|~1.14",
  629. "phpunit/phpunit": "~4.4|~5.0",
  630. "symfony/finder": "~2.1|~3.0"
  631. },
  632. "suggest": {
  633. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  634. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  635. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  636. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  637. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  638. },
  639. "time": "2017-06-04T10:34:20+00:00",
  640. "bin": [
  641. "bin/psysh"
  642. ],
  643. "type": "library",
  644. "extra": {
  645. "branch-alias": {
  646. "dev-develop": "0.8.x-dev"
  647. }
  648. },
  649. "installation-source": "dist",
  650. "autoload": {
  651. "files": [
  652. "src/Psy/functions.php"
  653. ],
  654. "psr-4": {
  655. "Psy\\": "src/Psy/"
  656. }
  657. },
  658. "notification-url": "https://packagist.org/downloads/",
  659. "license": [
  660. "MIT"
  661. ],
  662. "authors": [
  663. {
  664. "name": "Justin Hileman",
  665. "email": "justin@justinhileman.info",
  666. "homepage": "http://justinhileman.com"
  667. }
  668. ],
  669. "description": "An interactive shell for modern PHP.",
  670. "homepage": "http://psysh.org",
  671. "keywords": [
  672. "REPL",
  673. "console",
  674. "interactive",
  675. "shell"
  676. ]
  677. },
  678. {
  679. "name": "vlucas/phpdotenv",
  680. "version": "v2.4.0",
  681. "version_normalized": "2.4.0.0",
  682. "source": {
  683. "type": "git",
  684. "url": "https://github.com/vlucas/phpdotenv.git",
  685. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  690. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  691. "shasum": ""
  692. },
  693. "require": {
  694. "php": ">=5.3.9"
  695. },
  696. "require-dev": {
  697. "phpunit/phpunit": "^4.8 || ^5.0"
  698. },
  699. "time": "2016-09-01T10:05:43+00:00",
  700. "type": "library",
  701. "extra": {
  702. "branch-alias": {
  703. "dev-master": "2.4-dev"
  704. }
  705. },
  706. "installation-source": "dist",
  707. "autoload": {
  708. "psr-4": {
  709. "Dotenv\\": "src/"
  710. }
  711. },
  712. "notification-url": "https://packagist.org/downloads/",
  713. "license": [
  714. "BSD-3-Clause-Attribution"
  715. ],
  716. "authors": [
  717. {
  718. "name": "Vance Lucas",
  719. "email": "vance@vancelucas.com",
  720. "homepage": "http://www.vancelucas.com"
  721. }
  722. ],
  723. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  724. "keywords": [
  725. "dotenv",
  726. "env",
  727. "environment"
  728. ]
  729. },
  730. {
  731. "name": "symfony/css-selector",
  732. "version": "v3.3.2",
  733. "version_normalized": "3.3.2.0",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/symfony/css-selector.git",
  737. "reference": "4d882dced7b995d5274293039370148e291808f2"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4d882dced7b995d5274293039370148e291808f2",
  742. "reference": "4d882dced7b995d5274293039370148e291808f2",
  743. "shasum": ""
  744. },
  745. "require": {
  746. "php": ">=5.5.9"
  747. },
  748. "time": "2017-05-01T15:01:29+00:00",
  749. "type": "library",
  750. "extra": {
  751. "branch-alias": {
  752. "dev-master": "3.3-dev"
  753. }
  754. },
  755. "installation-source": "dist",
  756. "autoload": {
  757. "psr-4": {
  758. "Symfony\\Component\\CssSelector\\": ""
  759. },
  760. "exclude-from-classmap": [
  761. "/Tests/"
  762. ]
  763. },
  764. "notification-url": "https://packagist.org/downloads/",
  765. "license": [
  766. "MIT"
  767. ],
  768. "authors": [
  769. {
  770. "name": "Jean-François Simon",
  771. "email": "jeanfrancois.simon@sensiolabs.com"
  772. },
  773. {
  774. "name": "Fabien Potencier",
  775. "email": "fabien@symfony.com"
  776. },
  777. {
  778. "name": "Symfony Community",
  779. "homepage": "https://symfony.com/contributors"
  780. }
  781. ],
  782. "description": "Symfony CssSelector Component",
  783. "homepage": "https://symfony.com"
  784. },
  785. {
  786. "name": "tijsverkoyen/css-to-inline-styles",
  787. "version": "2.2.0",
  788. "version_normalized": "2.2.0.0",
  789. "source": {
  790. "type": "git",
  791. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  792. "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b"
  793. },
  794. "dist": {
  795. "type": "zip",
  796. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b",
  797. "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b",
  798. "shasum": ""
  799. },
  800. "require": {
  801. "php": "^5.5 || ^7",
  802. "symfony/css-selector": "^2.7|~3.0"
  803. },
  804. "require-dev": {
  805. "phpunit/phpunit": "~4.8|5.1.*"
  806. },
  807. "time": "2016-09-20T12:50:39+00:00",
  808. "type": "library",
  809. "extra": {
  810. "branch-alias": {
  811. "dev-master": "2.0.x-dev"
  812. }
  813. },
  814. "installation-source": "dist",
  815. "autoload": {
  816. "psr-4": {
  817. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "license": [
  822. "BSD-3-Clause"
  823. ],
  824. "authors": [
  825. {
  826. "name": "Tijs Verkoyen",
  827. "email": "css_to_inline_styles@verkoyen.eu",
  828. "role": "Developer"
  829. }
  830. ],
  831. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  832. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles"
  833. },
  834. {
  835. "name": "symfony/routing",
  836. "version": "v3.3.2",
  837. "version_normalized": "3.3.2.0",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/symfony/routing.git",
  841. "reference": "39804eeafea5cca851946e1eed122eb94459fdb4"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/symfony/routing/zipball/39804eeafea5cca851946e1eed122eb94459fdb4",
  846. "reference": "39804eeafea5cca851946e1eed122eb94459fdb4",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "php": ">=5.5.9"
  851. },
  852. "conflict": {
  853. "symfony/config": "<2.8",
  854. "symfony/dependency-injection": "<3.3",
  855. "symfony/yaml": "<3.3"
  856. },
  857. "require-dev": {
  858. "doctrine/annotations": "~1.0",
  859. "doctrine/common": "~2.2",
  860. "psr/log": "~1.0",
  861. "symfony/config": "~2.8|~3.0",
  862. "symfony/dependency-injection": "~3.3",
  863. "symfony/expression-language": "~2.8|~3.0",
  864. "symfony/http-foundation": "~2.8|~3.0",
  865. "symfony/yaml": "~3.3"
  866. },
  867. "suggest": {
  868. "doctrine/annotations": "For using the annotation loader",
  869. "symfony/config": "For using the all-in-one router or any loader",
  870. "symfony/dependency-injection": "For loading routes from a service",
  871. "symfony/expression-language": "For using expression matching",
  872. "symfony/http-foundation": "For using a Symfony Request object",
  873. "symfony/yaml": "For using the YAML loader"
  874. },
  875. "time": "2017-06-02T09:51:43+00:00",
  876. "type": "library",
  877. "extra": {
  878. "branch-alias": {
  879. "dev-master": "3.3-dev"
  880. }
  881. },
  882. "installation-source": "dist",
  883. "autoload": {
  884. "psr-4": {
  885. "Symfony\\Component\\Routing\\": ""
  886. },
  887. "exclude-from-classmap": [
  888. "/Tests/"
  889. ]
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Fabien Potencier",
  898. "email": "fabien@symfony.com"
  899. },
  900. {
  901. "name": "Symfony Community",
  902. "homepage": "https://symfony.com/contributors"
  903. }
  904. ],
  905. "description": "Symfony Routing Component",
  906. "homepage": "https://symfony.com",
  907. "keywords": [
  908. "router",
  909. "routing",
  910. "uri",
  911. "url"
  912. ]
  913. },
  914. {
  915. "name": "symfony/process",
  916. "version": "v3.3.2",
  917. "version_normalized": "3.3.2.0",
  918. "source": {
  919. "type": "git",
  920. "url": "https://github.com/symfony/process.git",
  921. "reference": "8e30690c67aafb6c7992d6d8eb0d707807dd3eaf"
  922. },
  923. "dist": {
  924. "type": "zip",
  925. "url": "https://api.github.com/repos/symfony/process/zipball/8e30690c67aafb6c7992d6d8eb0d707807dd3eaf",
  926. "reference": "8e30690c67aafb6c7992d6d8eb0d707807dd3eaf",
  927. "shasum": ""
  928. },
  929. "require": {
  930. "php": ">=5.5.9"
  931. },
  932. "time": "2017-05-22T12:32:03+00:00",
  933. "type": "library",
  934. "extra": {
  935. "branch-alias": {
  936. "dev-master": "3.3-dev"
  937. }
  938. },
  939. "installation-source": "dist",
  940. "autoload": {
  941. "psr-4": {
  942. "Symfony\\Component\\Process\\": ""
  943. },
  944. "exclude-from-classmap": [
  945. "/Tests/"
  946. ]
  947. },
  948. "notification-url": "https://packagist.org/downloads/",
  949. "license": [
  950. "MIT"
  951. ],
  952. "authors": [
  953. {
  954. "name": "Fabien Potencier",
  955. "email": "fabien@symfony.com"
  956. },
  957. {
  958. "name": "Symfony Community",
  959. "homepage": "https://symfony.com/contributors"
  960. }
  961. ],
  962. "description": "Symfony Process Component",
  963. "homepage": "https://symfony.com"
  964. },
  965. {
  966. "name": "symfony/http-foundation",
  967. "version": "v3.3.2",
  968. "version_normalized": "3.3.2.0",
  969. "source": {
  970. "type": "git",
  971. "url": "https://github.com/symfony/http-foundation.git",
  972. "reference": "80eb5a1f968448b77da9e8b2c0827f6e8d767846"
  973. },
  974. "dist": {
  975. "type": "zip",
  976. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/80eb5a1f968448b77da9e8b2c0827f6e8d767846",
  977. "reference": "80eb5a1f968448b77da9e8b2c0827f6e8d767846",
  978. "shasum": ""
  979. },
  980. "require": {
  981. "php": ">=5.5.9",
  982. "symfony/polyfill-mbstring": "~1.1"
  983. },
  984. "require-dev": {
  985. "symfony/expression-language": "~2.8|~3.0"
  986. },
  987. "time": "2017-06-05T13:06:51+00:00",
  988. "type": "library",
  989. "extra": {
  990. "branch-alias": {
  991. "dev-master": "3.3-dev"
  992. }
  993. },
  994. "installation-source": "dist",
  995. "autoload": {
  996. "psr-4": {
  997. "Symfony\\Component\\HttpFoundation\\": ""
  998. },
  999. "exclude-from-classmap": [
  1000. "/Tests/"
  1001. ]
  1002. },
  1003. "notification-url": "https://packagist.org/downloads/",
  1004. "license": [
  1005. "MIT"
  1006. ],
  1007. "authors": [
  1008. {
  1009. "name": "Fabien Potencier",
  1010. "email": "fabien@symfony.com"
  1011. },
  1012. {
  1013. "name": "Symfony Community",
  1014. "homepage": "https://symfony.com/contributors"
  1015. }
  1016. ],
  1017. "description": "Symfony HttpFoundation Component",
  1018. "homepage": "https://symfony.com"
  1019. },
  1020. {
  1021. "name": "symfony/event-dispatcher",
  1022. "version": "v3.3.2",
  1023. "version_normalized": "3.3.2.0",
  1024. "source": {
  1025. "type": "git",
  1026. "url": "https://github.com/symfony/event-dispatcher.git",
  1027. "reference": "4054a102470665451108f9b59305c79176ef98f0"
  1028. },
  1029. "dist": {
  1030. "type": "zip",
  1031. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4054a102470665451108f9b59305c79176ef98f0",
  1032. "reference": "4054a102470665451108f9b59305c79176ef98f0",
  1033. "shasum": ""
  1034. },
  1035. "require": {
  1036. "php": ">=5.5.9"
  1037. },
  1038. "conflict": {
  1039. "symfony/dependency-injection": "<3.3"
  1040. },
  1041. "require-dev": {
  1042. "psr/log": "~1.0",
  1043. "symfony/config": "~2.8|~3.0",
  1044. "symfony/dependency-injection": "~3.3",
  1045. "symfony/expression-language": "~2.8|~3.0",
  1046. "symfony/stopwatch": "~2.8|~3.0"
  1047. },
  1048. "suggest": {
  1049. "symfony/dependency-injection": "",
  1050. "symfony/http-kernel": ""
  1051. },
  1052. "time": "2017-06-04T18:15:29+00:00",
  1053. "type": "library",
  1054. "extra": {
  1055. "branch-alias": {
  1056. "dev-master": "3.3-dev"
  1057. }
  1058. },
  1059. "installation-source": "dist",
  1060. "autoload": {
  1061. "psr-4": {
  1062. "Symfony\\Component\\EventDispatcher\\": ""
  1063. },
  1064. "exclude-from-classmap": [
  1065. "/Tests/"
  1066. ]
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "authors": [
  1073. {
  1074. "name": "Fabien Potencier",
  1075. "email": "fabien@symfony.com"
  1076. },
  1077. {
  1078. "name": "Symfony Community",
  1079. "homepage": "https://symfony.com/contributors"
  1080. }
  1081. ],
  1082. "description": "Symfony EventDispatcher Component",
  1083. "homepage": "https://symfony.com"
  1084. },
  1085. {
  1086. "name": "symfony/http-kernel",
  1087. "version": "v3.3.2",
  1088. "version_normalized": "3.3.2.0",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/symfony/http-kernel.git",
  1092. "reference": "be8280f7fa8e95b86514f1e1be997668a53b2888"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/be8280f7fa8e95b86514f1e1be997668a53b2888",
  1097. "reference": "be8280f7fa8e95b86514f1e1be997668a53b2888",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "php": ">=5.5.9",
  1102. "psr/log": "~1.0",
  1103. "symfony/debug": "~2.8|~3.0",
  1104. "symfony/event-dispatcher": "~2.8|~3.0",
  1105. "symfony/http-foundation": "~3.3"
  1106. },
  1107. "conflict": {
  1108. "symfony/config": "<2.8",
  1109. "symfony/dependency-injection": "<3.3",
  1110. "symfony/var-dumper": "<3.3",
  1111. "twig/twig": "<1.34|<2.4,>=2"
  1112. },
  1113. "require-dev": {
  1114. "psr/cache": "~1.0",
  1115. "symfony/browser-kit": "~2.8|~3.0",
  1116. "symfony/class-loader": "~2.8|~3.0",
  1117. "symfony/config": "~2.8|~3.0",
  1118. "symfony/console": "~2.8|~3.0",
  1119. "symfony/css-selector": "~2.8|~3.0",
  1120. "symfony/dependency-injection": "~3.3",
  1121. "symfony/dom-crawler": "~2.8|~3.0",
  1122. "symfony/expression-language": "~2.8|~3.0",
  1123. "symfony/finder": "~2.8|~3.0",
  1124. "symfony/process": "~2.8|~3.0",
  1125. "symfony/routing": "~2.8|~3.0",
  1126. "symfony/stopwatch": "~2.8|~3.0",
  1127. "symfony/templating": "~2.8|~3.0",
  1128. "symfony/translation": "~2.8|~3.0",
  1129. "symfony/var-dumper": "~3.3"
  1130. },
  1131. "suggest": {
  1132. "symfony/browser-kit": "",
  1133. "symfony/class-loader": "",
  1134. "symfony/config": "",
  1135. "symfony/console": "",
  1136. "symfony/dependency-injection": "",
  1137. "symfony/finder": "",
  1138. "symfony/var-dumper": ""
  1139. },
  1140. "time": "2017-06-06T03:59:58+00:00",
  1141. "type": "library",
  1142. "extra": {
  1143. "branch-alias": {
  1144. "dev-master": "3.3-dev"
  1145. }
  1146. },
  1147. "installation-source": "dist",
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Symfony\\Component\\HttpKernel\\": ""
  1151. },
  1152. "exclude-from-classmap": [
  1153. "/Tests/"
  1154. ]
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Fabien Potencier",
  1163. "email": "fabien@symfony.com"
  1164. },
  1165. {
  1166. "name": "Symfony Community",
  1167. "homepage": "https://symfony.com/contributors"
  1168. }
  1169. ],
  1170. "description": "Symfony HttpKernel Component",
  1171. "homepage": "https://symfony.com"
  1172. },
  1173. {
  1174. "name": "symfony/finder",
  1175. "version": "v3.3.2",
  1176. "version_normalized": "3.3.2.0",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/symfony/finder.git",
  1180. "reference": "baea7f66d30854ad32988c11a09d7ffd485810c4"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://api.github.com/repos/symfony/finder/zipball/baea7f66d30854ad32988c11a09d7ffd485810c4",
  1185. "reference": "baea7f66d30854ad32988c11a09d7ffd485810c4",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "php": ">=5.5.9"
  1190. },
  1191. "time": "2017-06-01T21:01:25+00:00",
  1192. "type": "library",
  1193. "extra": {
  1194. "branch-alias": {
  1195. "dev-master": "3.3-dev"
  1196. }
  1197. },
  1198. "installation-source": "dist",
  1199. "autoload": {
  1200. "psr-4": {
  1201. "Symfony\\Component\\Finder\\": ""
  1202. },
  1203. "exclude-from-classmap": [
  1204. "/Tests/"
  1205. ]
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "MIT"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "Fabien Potencier",
  1214. "email": "fabien@symfony.com"
  1215. },
  1216. {
  1217. "name": "Symfony Community",
  1218. "homepage": "https://symfony.com/contributors"
  1219. }
  1220. ],
  1221. "description": "Symfony Finder Component",
  1222. "homepage": "https://symfony.com"
  1223. },
  1224. {
  1225. "name": "swiftmailer/swiftmailer",
  1226. "version": "v5.4.8",
  1227. "version_normalized": "5.4.8.0",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1231. "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/9a06dc570a0367850280eefd3f1dc2da45aef517",
  1236. "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "php": ">=5.3.3"
  1241. },
  1242. "require-dev": {
  1243. "mockery/mockery": "~0.9.1",
  1244. "symfony/phpunit-bridge": "~3.2"
  1245. },
  1246. "time": "2017-05-01T15:54:03+00:00",
  1247. "type": "library",
  1248. "extra": {
  1249. "branch-alias": {
  1250. "dev-master": "5.4-dev"
  1251. }
  1252. },
  1253. "installation-source": "dist",
  1254. "autoload": {
  1255. "files": [
  1256. "lib/swift_required.php"
  1257. ]
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Chris Corbyn"
  1266. },
  1267. {
  1268. "name": "Fabien Potencier",
  1269. "email": "fabien@symfony.com"
  1270. }
  1271. ],
  1272. "description": "Swiftmailer, free feature-rich PHP mailer",
  1273. "homepage": "http://swiftmailer.org",
  1274. "keywords": [
  1275. "email",
  1276. "mail",
  1277. "mailer"
  1278. ]
  1279. },
  1280. {
  1281. "name": "paragonie/random_compat",
  1282. "version": "v2.0.10",
  1283. "version_normalized": "2.0.10.0",
  1284. "source": {
  1285. "type": "git",
  1286. "url": "https://github.com/paragonie/random_compat.git",
  1287. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d"
  1288. },
  1289. "dist": {
  1290. "type": "zip",
  1291. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  1292. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  1293. "shasum": ""
  1294. },
  1295. "require": {
  1296. "php": ">=5.2.0"
  1297. },
  1298. "require-dev": {
  1299. "phpunit/phpunit": "4.*|5.*"
  1300. },
  1301. "suggest": {
  1302. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1303. },
  1304. "time": "2017-03-13T16:27:32+00:00",
  1305. "type": "library",
  1306. "installation-source": "dist",
  1307. "autoload": {
  1308. "files": [
  1309. "lib/random.php"
  1310. ]
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "authors": [
  1317. {
  1318. "name": "Paragon Initiative Enterprises",
  1319. "email": "security@paragonie.com",
  1320. "homepage": "https://paragonie.com"
  1321. }
  1322. ],
  1323. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1324. "keywords": [
  1325. "csprng",
  1326. "pseudorandom",
  1327. "random"
  1328. ]
  1329. },
  1330. {
  1331. "name": "ramsey/uuid",
  1332. "version": "3.6.1",
  1333. "version_normalized": "3.6.1.0",
  1334. "source": {
  1335. "type": "git",
  1336. "url": "https://github.com/ramsey/uuid.git",
  1337. "reference": "4ae32dd9ab8860a4bbd750ad269cba7f06f7934e"
  1338. },
  1339. "dist": {
  1340. "type": "zip",
  1341. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4ae32dd9ab8860a4bbd750ad269cba7f06f7934e",
  1342. "reference": "4ae32dd9ab8860a4bbd750ad269cba7f06f7934e",
  1343. "shasum": ""
  1344. },
  1345. "require": {
  1346. "paragonie/random_compat": "^1.0|^2.0",
  1347. "php": "^5.4 || ^7.0"
  1348. },
  1349. "replace": {
  1350. "rhumsaa/uuid": "self.version"
  1351. },
  1352. "require-dev": {
  1353. "apigen/apigen": "^4.1",
  1354. "codeception/aspect-mock": "^1.0 | ^2.0",
  1355. "doctrine/annotations": "~1.2.0",
  1356. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ^2.1",
  1357. "ircmaxell/random-lib": "^1.1",
  1358. "jakub-onderka/php-parallel-lint": "^0.9.0",
  1359. "mockery/mockery": "^0.9.4",
  1360. "moontoast/math": "^1.1",
  1361. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  1362. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  1363. "satooshi/php-coveralls": "^0.6.1",
  1364. "squizlabs/php_codesniffer": "^2.3"
  1365. },
  1366. "suggest": {
  1367. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1368. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1369. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1370. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1371. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1372. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1373. },
  1374. "time": "2017-03-26T20:37:53+00:00",
  1375. "type": "library",
  1376. "extra": {
  1377. "branch-alias": {
  1378. "dev-master": "3.x-dev"
  1379. }
  1380. },
  1381. "installation-source": "dist",
  1382. "autoload": {
  1383. "psr-4": {
  1384. "Ramsey\\Uuid\\": "src/"
  1385. }
  1386. },
  1387. "notification-url": "https://packagist.org/downloads/",
  1388. "license": [
  1389. "MIT"
  1390. ],
  1391. "authors": [
  1392. {
  1393. "name": "Marijn Huizendveld",
  1394. "email": "marijn.huizendveld@gmail.com"
  1395. },
  1396. {
  1397. "name": "Thibaud Fabre",
  1398. "email": "thibaud@aztech.io"
  1399. },
  1400. {
  1401. "name": "Ben Ramsey",
  1402. "email": "ben@benramsey.com",
  1403. "homepage": "https://benramsey.com"
  1404. }
  1405. ],
  1406. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1407. "homepage": "https://github.com/ramsey/uuid",
  1408. "keywords": [
  1409. "guid",
  1410. "identifier",
  1411. "uuid"
  1412. ]
  1413. },
  1414. {
  1415. "name": "symfony/translation",
  1416. "version": "v3.3.2",
  1417. "version_normalized": "3.3.2.0",
  1418. "source": {
  1419. "type": "git",
  1420. "url": "https://github.com/symfony/translation.git",
  1421. "reference": "dc3b2a0c6cfff60327ba1c043a82092735397543"
  1422. },
  1423. "dist": {
  1424. "type": "zip",
  1425. "url": "https://api.github.com/repos/symfony/translation/zipball/dc3b2a0c6cfff60327ba1c043a82092735397543",
  1426. "reference": "dc3b2a0c6cfff60327ba1c043a82092735397543",
  1427. "shasum": ""
  1428. },
  1429. "require": {
  1430. "php": ">=5.5.9",
  1431. "symfony/polyfill-mbstring": "~1.0"
  1432. },
  1433. "conflict": {
  1434. "symfony/config": "<2.8",
  1435. "symfony/yaml": "<3.3"
  1436. },
  1437. "require-dev": {
  1438. "psr/log": "~1.0",
  1439. "symfony/config": "~2.8|~3.0",
  1440. "symfony/intl": "^2.8.18|^3.2.5",
  1441. "symfony/yaml": "~3.3"
  1442. },
  1443. "suggest": {
  1444. "psr/log": "To use logging capability in translator",
  1445. "symfony/config": "",
  1446. "symfony/yaml": ""
  1447. },
  1448. "time": "2017-05-22T07:42:36+00:00",
  1449. "type": "library",
  1450. "extra": {
  1451. "branch-alias": {
  1452. "dev-master": "3.3-dev"
  1453. }
  1454. },
  1455. "installation-source": "dist",
  1456. "autoload": {
  1457. "psr-4": {
  1458. "Symfony\\Component\\Translation\\": ""
  1459. },
  1460. "exclude-from-classmap": [
  1461. "/Tests/"
  1462. ]
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "MIT"
  1467. ],
  1468. "authors": [
  1469. {
  1470. "name": "Fabien Potencier",
  1471. "email": "fabien@symfony.com"
  1472. },
  1473. {
  1474. "name": "Symfony Community",
  1475. "homepage": "https://symfony.com/contributors"
  1476. }
  1477. ],
  1478. "description": "Symfony Translation Component",
  1479. "homepage": "https://symfony.com"
  1480. },
  1481. {
  1482. "name": "nesbot/carbon",
  1483. "version": "1.22.1",
  1484. "version_normalized": "1.22.1.0",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/briannesbitt/Carbon.git",
  1488. "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
  1493. "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
  1494. "shasum": ""
  1495. },
  1496. "require": {
  1497. "php": ">=5.3.0",
  1498. "symfony/translation": "~2.6 || ~3.0"
  1499. },
  1500. "require-dev": {
  1501. "friendsofphp/php-cs-fixer": "~2",
  1502. "phpunit/phpunit": "~4.0 || ~5.0"
  1503. },
  1504. "time": "2017-01-16T07:55:07+00:00",
  1505. "type": "library",
  1506. "extra": {
  1507. "branch-alias": {
  1508. "dev-master": "1.23-dev"
  1509. }
  1510. },
  1511. "installation-source": "dist",
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Carbon\\": "src/Carbon/"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Brian Nesbitt",
  1524. "email": "brian@nesbot.com",
  1525. "homepage": "http://nesbot.com"
  1526. }
  1527. ],
  1528. "description": "A simple API extension for DateTime.",
  1529. "homepage": "http://carbon.nesbot.com",
  1530. "keywords": [
  1531. "date",
  1532. "datetime",
  1533. "time"
  1534. ]
  1535. },
  1536. {
  1537. "name": "mtdowling/cron-expression",
  1538. "version": "v1.2.0",
  1539. "version_normalized": "1.2.0.0",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/mtdowling/cron-expression.git",
  1543. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  1548. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  1549. "shasum": ""
  1550. },
  1551. "require": {
  1552. "php": ">=5.3.2"
  1553. },
  1554. "require-dev": {
  1555. "phpunit/phpunit": "~4.0|~5.0"
  1556. },
  1557. "time": "2017-01-23T04:29:33+00:00",
  1558. "type": "library",
  1559. "installation-source": "dist",
  1560. "autoload": {
  1561. "psr-4": {
  1562. "Cron\\": "src/Cron/"
  1563. }
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "Michael Dowling",
  1572. "email": "mtdowling@gmail.com",
  1573. "homepage": "https://github.com/mtdowling"
  1574. }
  1575. ],
  1576. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1577. "keywords": [
  1578. "cron",
  1579. "schedule"
  1580. ]
  1581. },
  1582. {
  1583. "name": "monolog/monolog",
  1584. "version": "1.22.1",
  1585. "version_normalized": "1.22.1.0",
  1586. "source": {
  1587. "type": "git",
  1588. "url": "https://github.com/Seldaek/monolog.git",
  1589. "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0"
  1590. },
  1591. "dist": {
  1592. "type": "zip",
  1593. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1e044bc4b34e91743943479f1be7a1d5eb93add0",
  1594. "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0",
  1595. "shasum": ""
  1596. },
  1597. "require": {
  1598. "php": ">=5.3.0",
  1599. "psr/log": "~1.0"
  1600. },
  1601. "provide": {
  1602. "psr/log-implementation": "1.0.0"
  1603. },
  1604. "require-dev": {
  1605. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1606. "doctrine/couchdb": "~1.0@dev",
  1607. "graylog2/gelf-php": "~1.0",
  1608. "jakub-onderka/php-parallel-lint": "0.9",
  1609. "php-amqplib/php-amqplib": "~2.4",
  1610. "php-console/php-console": "^3.1.3",
  1611. "phpunit/phpunit": "~4.5",
  1612. "phpunit/phpunit-mock-objects": "2.3.0",
  1613. "ruflin/elastica": ">=0.90 <3.0",
  1614. "sentry/sentry": "^0.13",
  1615. "swiftmailer/swiftmailer": "~5.3"
  1616. },
  1617. "suggest": {
  1618. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1619. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1620. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1621. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1622. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1623. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1624. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1625. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1626. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1627. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1628. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1629. },
  1630. "time": "2017-03-13T07:08:03+00:00",
  1631. "type": "library",
  1632. "extra": {
  1633. "branch-alias": {
  1634. "dev-master": "2.0.x-dev"
  1635. }
  1636. },
  1637. "installation-source": "dist",
  1638. "autoload": {
  1639. "psr-4": {
  1640. "Monolog\\": "src/Monolog"
  1641. }
  1642. },
  1643. "notification-url": "https://packagist.org/downloads/",
  1644. "license": [
  1645. "MIT"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "Jordi Boggiano",
  1650. "email": "j.boggiano@seld.be",
  1651. "homepage": "http://seld.be"
  1652. }
  1653. ],
  1654. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1655. "homepage": "http://github.com/Seldaek/monolog",
  1656. "keywords": [
  1657. "log",
  1658. "logging",
  1659. "psr-3"
  1660. ]
  1661. },
  1662. {
  1663. "name": "league/flysystem",
  1664. "version": "1.0.40",
  1665. "version_normalized": "1.0.40.0",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/thephpleague/flysystem.git",
  1669. "reference": "3828f0b24e2c1918bb362d57a53205d6dc8fde61"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3828f0b24e2c1918bb362d57a53205d6dc8fde61",
  1674. "reference": "3828f0b24e2c1918bb362d57a53205d6dc8fde61",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "php": ">=5.5.9"
  1679. },
  1680. "conflict": {
  1681. "league/flysystem-sftp": "<1.0.6"
  1682. },
  1683. "require-dev": {
  1684. "ext-fileinfo": "*",
  1685. "mockery/mockery": "~0.9",
  1686. "phpspec/phpspec": "^2.2",
  1687. "phpunit/phpunit": "~4.8"
  1688. },
  1689. "suggest": {
  1690. "ext-fileinfo": "Required for MimeType",
  1691. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1692. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1693. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1694. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1695. "league/flysystem-copy": "Allows you to use Copy.com storage",
  1696. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1697. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1698. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1699. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1700. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1701. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage"
  1702. },
  1703. "time": "2017-04-28T10:15:08+00:00",
  1704. "type": "library",
  1705. "extra": {
  1706. "branch-alias": {
  1707. "dev-master": "1.1-dev"
  1708. }
  1709. },
  1710. "installation-source": "dist",
  1711. "autoload": {
  1712. "psr-4": {
  1713. "League\\Flysystem\\": "src/"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Frank de Jonge",
  1723. "email": "info@frenky.net"
  1724. }
  1725. ],
  1726. "description": "Filesystem abstraction: Many filesystems, one API.",
  1727. "keywords": [
  1728. "Cloud Files",
  1729. "WebDAV",
  1730. "abstraction",
  1731. "aws",
  1732. "cloud",
  1733. "copy.com",
  1734. "dropbox",
  1735. "file systems",
  1736. "files",
  1737. "filesystem",
  1738. "filesystems",
  1739. "ftp",
  1740. "rackspace",
  1741. "remote",
  1742. "s3",
  1743. "sftp",
  1744. "storage"
  1745. ]
  1746. },
  1747. {
  1748. "name": "laravel/framework",
  1749. "version": "v5.4.26",
  1750. "version_normalized": "5.4.26.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/laravel/framework.git",
  1754. "reference": "a7ebbfab64111e24f8e584db64e2be9279ded357"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/laravel/framework/zipball/a7ebbfab64111e24f8e584db64e2be9279ded357",
  1759. "reference": "a7ebbfab64111e24f8e584db64e2be9279ded357",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "doctrine/inflector": "~1.0",
  1764. "erusev/parsedown": "~1.6",
  1765. "ext-mbstring": "*",
  1766. "ext-openssl": "*",
  1767. "league/flysystem": "~1.0",
  1768. "monolog/monolog": "~1.11",
  1769. "mtdowling/cron-expression": "~1.0",
  1770. "nesbot/carbon": "~1.20",
  1771. "paragonie/random_compat": "~1.4|~2.0",
  1772. "php": ">=5.6.4",
  1773. "ramsey/uuid": "~3.0",
  1774. "swiftmailer/swiftmailer": "~5.4",
  1775. "symfony/console": "~3.2",
  1776. "symfony/debug": "~3.2",
  1777. "symfony/finder": "~3.2",
  1778. "symfony/http-foundation": "~3.2",
  1779. "symfony/http-kernel": "~3.2",
  1780. "symfony/process": "~3.2",
  1781. "symfony/routing": "~3.2",
  1782. "symfony/var-dumper": "~3.2",
  1783. "tijsverkoyen/css-to-inline-styles": "~2.2",
  1784. "vlucas/phpdotenv": "~2.2"
  1785. },
  1786. "replace": {
  1787. "illuminate/auth": "self.version",
  1788. "illuminate/broadcasting": "self.version",
  1789. "illuminate/bus": "self.version",
  1790. "illuminate/cache": "self.version",
  1791. "illuminate/config": "self.version",
  1792. "illuminate/console": "self.version",
  1793. "illuminate/container": "self.version",
  1794. "illuminate/contracts": "self.version",
  1795. "illuminate/cookie": "self.version",
  1796. "illuminate/database": "self.version",
  1797. "illuminate/encryption": "self.version",
  1798. "illuminate/events": "self.version",
  1799. "illuminate/exception": "self.version",
  1800. "illuminate/filesystem": "self.version",
  1801. "illuminate/hashing": "self.version",
  1802. "illuminate/http": "self.version",
  1803. "illuminate/log": "self.version",
  1804. "illuminate/mail": "self.version",
  1805. "illuminate/notifications": "self.version",
  1806. "illuminate/pagination": "self.version",
  1807. "illuminate/pipeline": "self.version",
  1808. "illuminate/queue": "self.version",
  1809. "illuminate/redis": "self.version",
  1810. "illuminate/routing": "self.version",
  1811. "illuminate/session": "self.version",
  1812. "illuminate/support": "self.version",
  1813. "illuminate/translation": "self.version",
  1814. "illuminate/validation": "self.version",
  1815. "illuminate/view": "self.version",
  1816. "tightenco/collect": "self.version"
  1817. },
  1818. "require-dev": {
  1819. "aws/aws-sdk-php": "~3.0",
  1820. "doctrine/dbal": "~2.5",
  1821. "mockery/mockery": "~0.9.4",
  1822. "pda/pheanstalk": "~3.0",
  1823. "phpunit/phpunit": "~5.7",
  1824. "predis/predis": "~1.0",
  1825. "symfony/css-selector": "~3.2",
  1826. "symfony/dom-crawler": "~3.2"
  1827. },
  1828. "suggest": {
  1829. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  1830. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  1831. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  1832. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  1833. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  1834. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  1835. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  1836. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  1837. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  1838. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  1839. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).",
  1840. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.2).",
  1841. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.2).",
  1842. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (0.2.*)."
  1843. },
  1844. "time": "2017-06-13T18:58:49+00:00",
  1845. "type": "library",
  1846. "extra": {
  1847. "branch-alias": {
  1848. "dev-master": "5.4-dev"
  1849. }
  1850. },
  1851. "installation-source": "dist",
  1852. "autoload": {
  1853. "files": [
  1854. "src/Illuminate/Foundation/helpers.php",
  1855. "src/Illuminate/Support/helpers.php"
  1856. ],
  1857. "psr-4": {
  1858. "Illuminate\\": "src/Illuminate/"
  1859. }
  1860. },
  1861. "notification-url": "https://packagist.org/downloads/",
  1862. "license": [
  1863. "MIT"
  1864. ],
  1865. "authors": [
  1866. {
  1867. "name": "Taylor Otwell",
  1868. "email": "taylor@laravel.com"
  1869. }
  1870. ],
  1871. "description": "The Laravel Framework.",
  1872. "homepage": "https://laravel.com",
  1873. "keywords": [
  1874. "framework",
  1875. "laravel"
  1876. ]
  1877. },
  1878. {
  1879. "name": "laravel/tinker",
  1880. "version": "v1.0.1",
  1881. "version_normalized": "1.0.1.0",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/laravel/tinker.git",
  1885. "reference": "7eb2e281395131897407285672ef5532e87e17f9"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/laravel/tinker/zipball/7eb2e281395131897407285672ef5532e87e17f9",
  1890. "reference": "7eb2e281395131897407285672ef5532e87e17f9",
  1891. "shasum": ""
  1892. },
  1893. "require": {
  1894. "illuminate/console": "~5.1",
  1895. "illuminate/contracts": "~5.1",
  1896. "illuminate/support": "~5.1",
  1897. "php": ">=5.5.9",
  1898. "psy/psysh": "0.7.*|0.8.*",
  1899. "symfony/var-dumper": "~3.0"
  1900. },
  1901. "require-dev": {
  1902. "phpunit/phpunit": "~4.0|~5.0"
  1903. },
  1904. "suggest": {
  1905. "illuminate/database": "The Illuminate Database package (~5.1)."
  1906. },
  1907. "time": "2017-06-01T16:31:26+00:00",
  1908. "type": "library",
  1909. "extra": {
  1910. "branch-alias": {
  1911. "dev-master": "1.0-dev"
  1912. },
  1913. "laravel": {
  1914. "providers": [
  1915. "Laravel\\Tinker\\TinkerServiceProvider"
  1916. ]
  1917. }
  1918. },
  1919. "installation-source": "dist",
  1920. "autoload": {
  1921. "psr-4": {
  1922. "Laravel\\Tinker\\": "src/"
  1923. }
  1924. },
  1925. "notification-url": "https://packagist.org/downloads/",
  1926. "license": [
  1927. "MIT"
  1928. ],
  1929. "authors": [
  1930. {
  1931. "name": "Taylor Otwell",
  1932. "email": "taylor@laravel.com"
  1933. }
  1934. ],
  1935. "description": "Powerful REPL for the Laravel framework.",
  1936. "keywords": [
  1937. "REPL",
  1938. "Tinker",
  1939. "laravel",
  1940. "psysh"
  1941. ]
  1942. },
  1943. {
  1944. "name": "fzaninotto/faker",
  1945. "version": "v1.6.0",
  1946. "version_normalized": "1.6.0.0",
  1947. "source": {
  1948. "type": "git",
  1949. "url": "https://github.com/fzaninotto/Faker.git",
  1950. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"
  1951. },
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  1955. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "php": "^5.3.3|^7.0"
  1960. },
  1961. "require-dev": {
  1962. "ext-intl": "*",
  1963. "phpunit/phpunit": "~4.0",
  1964. "squizlabs/php_codesniffer": "~1.5"
  1965. },
  1966. "time": "2016-04-29T12:21:54+00:00",
  1967. "type": "library",
  1968. "extra": {
  1969. "branch-alias": []
  1970. },
  1971. "installation-source": "dist",
  1972. "autoload": {
  1973. "psr-4": {
  1974. "Faker\\": "src/Faker/"
  1975. }
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "MIT"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "François Zaninotto"
  1984. }
  1985. ],
  1986. "description": "Faker is a PHP library that generates fake data for you.",
  1987. "keywords": [
  1988. "data",
  1989. "faker",
  1990. "fixtures"
  1991. ]
  1992. },
  1993. {
  1994. "name": "hamcrest/hamcrest-php",
  1995. "version": "v1.2.2",
  1996. "version_normalized": "1.2.2.0",
  1997. "source": {
  1998. "type": "git",
  1999. "url": "https://github.com/hamcrest/hamcrest-php.git",
  2000. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
  2001. },
  2002. "dist": {
  2003. "type": "zip",
  2004. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c",
  2005. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
  2006. "shasum": ""
  2007. },
  2008. "require": {
  2009. "php": ">=5.3.2"
  2010. },
  2011. "replace": {
  2012. "cordoval/hamcrest-php": "*",
  2013. "davedevelopment/hamcrest-php": "*",
  2014. "kodova/hamcrest-php": "*"
  2015. },
  2016. "require-dev": {
  2017. "phpunit/php-file-iterator": "1.3.3",
  2018. "satooshi/php-coveralls": "dev-master"
  2019. },
  2020. "time": "2015-05-11T14:41:42+00:00",
  2021. "type": "library",
  2022. "installation-source": "dist",
  2023. "autoload": {
  2024. "classmap": [
  2025. "hamcrest"
  2026. ],
  2027. "files": [
  2028. "hamcrest/Hamcrest.php"
  2029. ]
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "BSD"
  2034. ],
  2035. "description": "This is the PHP port of Hamcrest Matchers",
  2036. "keywords": [
  2037. "test"
  2038. ]
  2039. },
  2040. {
  2041. "name": "mockery/mockery",
  2042. "version": "0.9.9",
  2043. "version_normalized": "0.9.9.0",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://github.com/mockery/mockery.git",
  2047. "reference": "6fdb61243844dc924071d3404bb23994ea0b6856"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://api.github.com/repos/mockery/mockery/zipball/6fdb61243844dc924071d3404bb23994ea0b6856",
  2052. "reference": "6fdb61243844dc924071d3404bb23994ea0b6856",
  2053. "shasum": ""
  2054. },
  2055. "require": {
  2056. "hamcrest/hamcrest-php": "~1.1",
  2057. "lib-pcre": ">=7.0",
  2058. "php": ">=5.3.2"
  2059. },
  2060. "require-dev": {
  2061. "phpunit/phpunit": "~4.0"
  2062. },
  2063. "time": "2017-02-28T12:52:32+00:00",
  2064. "type": "library",
  2065. "extra": {
  2066. "branch-alias": {
  2067. "dev-master": "0.9.x-dev"
  2068. }
  2069. },
  2070. "installation-source": "dist",
  2071. "autoload": {
  2072. "psr-0": {
  2073. "Mockery": "library/"
  2074. }
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "BSD-3-Clause"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "Pádraic Brady",
  2083. "email": "padraic.brady@gmail.com",
  2084. "homepage": "http://blog.astrumfutura.com"
  2085. },
  2086. {
  2087. "name": "Dave Marshall",
  2088. "email": "dave.marshall@atstsolutions.co.uk",
  2089. "homepage": "http://davedevelopment.co.uk"
  2090. }
  2091. ],
  2092. "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
  2093. "homepage": "http://github.com/padraic/mockery",
  2094. "keywords": [
  2095. "BDD",
  2096. "TDD",
  2097. "library",
  2098. "mock",
  2099. "mock objects",
  2100. "mockery",
  2101. "stub",
  2102. "test",
  2103. "test double",
  2104. "testing"
  2105. ]
  2106. },
  2107. {
  2108. "name": "webmozart/assert",
  2109. "version": "1.2.0",
  2110. "version_normalized": "1.2.0.0",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/webmozart/assert.git",
  2114. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  2119. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  2120. "shasum": ""
  2121. },
  2122. "require": {
  2123. "php": "^5.3.3 || ^7.0"
  2124. },
  2125. "require-dev": {
  2126. "phpunit/phpunit": "^4.6",
  2127. "sebastian/version": "^1.0.1"
  2128. },
  2129. "time": "2016-11-23T20:04:58+00:00",
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "1.3-dev"
  2134. }
  2135. },
  2136. "installation-source": "dist",
  2137. "autoload": {
  2138. "psr-4": {
  2139. "Webmozart\\Assert\\": "src/"
  2140. }
  2141. },
  2142. "notification-url": "https://packagist.org/downloads/",
  2143. "license": [
  2144. "MIT"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Bernhard Schussek",
  2149. "email": "bschussek@gmail.com"
  2150. }
  2151. ],
  2152. "description": "Assertions to validate method input/output with nice error messages.",
  2153. "keywords": [
  2154. "assert",
  2155. "check",
  2156. "validate"
  2157. ]
  2158. },
  2159. {
  2160. "name": "phpdocumentor/reflection-common",
  2161. "version": "1.0",
  2162. "version_normalized": "1.0.0.0",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2166. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  2171. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "php": ">=5.5"
  2176. },
  2177. "require-dev": {
  2178. "phpunit/phpunit": "^4.6"
  2179. },
  2180. "time": "2015-12-27T11:43:31+00:00",
  2181. "type": "library",
  2182. "extra": {
  2183. "branch-alias": {
  2184. "dev-master": "1.0.x-dev"
  2185. }
  2186. },
  2187. "installation-source": "dist",
  2188. "autoload": {
  2189. "psr-4": {
  2190. "phpDocumentor\\Reflection\\": [
  2191. "src"
  2192. ]
  2193. }
  2194. },
  2195. "notification-url": "https://packagist.org/downloads/",
  2196. "license": [
  2197. "MIT"
  2198. ],
  2199. "authors": [
  2200. {
  2201. "name": "Jaap van Otterdijk",
  2202. "email": "opensource@ijaap.nl"
  2203. }
  2204. ],
  2205. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2206. "homepage": "http://www.phpdoc.org",
  2207. "keywords": [
  2208. "FQSEN",
  2209. "phpDocumentor",
  2210. "phpdoc",
  2211. "reflection",
  2212. "static analysis"
  2213. ]
  2214. },
  2215. {
  2216. "name": "phpdocumentor/type-resolver",
  2217. "version": "0.2.1",
  2218. "version_normalized": "0.2.1.0",
  2219. "source": {
  2220. "type": "git",
  2221. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2222. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb"
  2223. },
  2224. "dist": {
  2225. "type": "zip",
  2226. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  2227. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  2228. "shasum": ""
  2229. },
  2230. "require": {
  2231. "php": ">=5.5",
  2232. "phpdocumentor/reflection-common": "^1.0"
  2233. },
  2234. "require-dev": {
  2235. "mockery/mockery": "^0.9.4",
  2236. "phpunit/phpunit": "^5.2||^4.8.24"
  2237. },
  2238. "time": "2016-11-25T06:54:22+00:00",
  2239. "type": "library",
  2240. "extra": {
  2241. "branch-alias": {
  2242. "dev-master": "1.0.x-dev"
  2243. }
  2244. },
  2245. "installation-source": "dist",
  2246. "autoload": {
  2247. "psr-4": {
  2248. "phpDocumentor\\Reflection\\": [
  2249. "src/"
  2250. ]
  2251. }
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "MIT"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "Mike van Riel",
  2260. "email": "me@mikevanriel.com"
  2261. }
  2262. ]
  2263. },
  2264. {
  2265. "name": "phpdocumentor/reflection-docblock",
  2266. "version": "3.1.1",
  2267. "version_normalized": "3.1.1.0",
  2268. "source": {
  2269. "type": "git",
  2270. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2271. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e"
  2272. },
  2273. "dist": {
  2274. "type": "zip",
  2275. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  2276. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  2277. "shasum": ""
  2278. },
  2279. "require": {
  2280. "php": ">=5.5",
  2281. "phpdocumentor/reflection-common": "^1.0@dev",
  2282. "phpdocumentor/type-resolver": "^0.2.0",
  2283. "webmozart/assert": "^1.0"
  2284. },
  2285. "require-dev": {
  2286. "mockery/mockery": "^0.9.4",
  2287. "phpunit/phpunit": "^4.4"
  2288. },
  2289. "time": "2016-09-30T07:12:33+00:00",
  2290. "type": "library",
  2291. "installation-source": "dist",
  2292. "autoload": {
  2293. "psr-4": {
  2294. "phpDocumentor\\Reflection\\": [
  2295. "src/"
  2296. ]
  2297. }
  2298. },
  2299. "notification-url": "https://packagist.org/downloads/",
  2300. "license": [
  2301. "MIT"
  2302. ],
  2303. "authors": [
  2304. {
  2305. "name": "Mike van Riel",
  2306. "email": "me@mikevanriel.com"
  2307. }
  2308. ],
  2309. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock."
  2310. },
  2311. {
  2312. "name": "phpunit/php-token-stream",
  2313. "version": "1.4.11",
  2314. "version_normalized": "1.4.11.0",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2318. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7",
  2323. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "ext-tokenizer": "*",
  2328. "php": ">=5.3.3"
  2329. },
  2330. "require-dev": {
  2331. "phpunit/phpunit": "~4.2"
  2332. },
  2333. "time": "2017-02-27T10:12:30+00:00",
  2334. "type": "library",
  2335. "extra": {
  2336. "branch-alias": {
  2337. "dev-master": "1.4-dev"
  2338. }
  2339. },
  2340. "installation-source": "dist",
  2341. "autoload": {
  2342. "classmap": [
  2343. "src/"
  2344. ]
  2345. },
  2346. "notification-url": "https://packagist.org/downloads/",
  2347. "license": [
  2348. "BSD-3-Clause"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "Sebastian Bergmann",
  2353. "email": "sebastian@phpunit.de"
  2354. }
  2355. ],
  2356. "description": "Wrapper around PHP's tokenizer extension.",
  2357. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2358. "keywords": [
  2359. "tokenizer"
  2360. ]
  2361. },
  2362. {
  2363. "name": "symfony/yaml",
  2364. "version": "v3.3.2",
  2365. "version_normalized": "3.3.2.0",
  2366. "source": {
  2367. "type": "git",
  2368. "url": "https://github.com/symfony/yaml.git",
  2369. "reference": "9752a30000a8ca9f4b34b5227d15d0101b96b063"
  2370. },
  2371. "dist": {
  2372. "type": "zip",
  2373. "url": "https://api.github.com/repos/symfony/yaml/zipball/9752a30000a8ca9f4b34b5227d15d0101b96b063",
  2374. "reference": "9752a30000a8ca9f4b34b5227d15d0101b96b063",
  2375. "shasum": ""
  2376. },
  2377. "require": {
  2378. "php": ">=5.5.9"
  2379. },
  2380. "require-dev": {
  2381. "symfony/console": "~2.8|~3.0"
  2382. },
  2383. "suggest": {
  2384. "symfony/console": "For validating YAML files using the lint command"
  2385. },
  2386. "time": "2017-06-02T22:05:06+00:00",
  2387. "type": "library",
  2388. "extra": {
  2389. "branch-alias": {
  2390. "dev-master": "3.3-dev"
  2391. }
  2392. },
  2393. "installation-source": "dist",
  2394. "autoload": {
  2395. "psr-4": {
  2396. "Symfony\\Component\\Yaml\\": ""
  2397. },
  2398. "exclude-from-classmap": [
  2399. "/Tests/"
  2400. ]
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Fabien Potencier",
  2409. "email": "fabien@symfony.com"
  2410. },
  2411. {
  2412. "name": "Symfony Community",
  2413. "homepage": "https://symfony.com/contributors"
  2414. }
  2415. ],
  2416. "description": "Symfony Yaml Component",
  2417. "homepage": "https://symfony.com"
  2418. },
  2419. {
  2420. "name": "sebastian/version",
  2421. "version": "2.0.1",
  2422. "version_normalized": "2.0.1.0",
  2423. "source": {
  2424. "type": "git",
  2425. "url": "https://github.com/sebastianbergmann/version.git",
  2426. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2427. },
  2428. "dist": {
  2429. "type": "zip",
  2430. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2431. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2432. "shasum": ""
  2433. },
  2434. "require": {
  2435. "php": ">=5.6"
  2436. },
  2437. "time": "2016-10-03T07:35:21+00:00",
  2438. "type": "library",
  2439. "extra": {
  2440. "branch-alias": {
  2441. "dev-master": "2.0.x-dev"
  2442. }
  2443. },
  2444. "installation-source": "dist",
  2445. "autoload": {
  2446. "classmap": [
  2447. "src/"
  2448. ]
  2449. },
  2450. "notification-url": "https://packagist.org/downloads/",
  2451. "license": [
  2452. "BSD-3-Clause"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "Sebastian Bergmann",
  2457. "email": "sebastian@phpunit.de",
  2458. "role": "lead"
  2459. }
  2460. ],
  2461. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2462. "homepage": "https://github.com/sebastianbergmann/version"
  2463. },
  2464. {
  2465. "name": "sebastian/resource-operations",
  2466. "version": "1.0.0",
  2467. "version_normalized": "1.0.0.0",
  2468. "source": {
  2469. "type": "git",
  2470. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2471. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  2472. },
  2473. "dist": {
  2474. "type": "zip",
  2475. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2476. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2477. "shasum": ""
  2478. },
  2479. "require": {
  2480. "php": ">=5.6.0"
  2481. },
  2482. "time": "2015-07-28T20:34:47+00:00",
  2483. "type": "library",
  2484. "extra": {
  2485. "branch-alias": {
  2486. "dev-master": "1.0.x-dev"
  2487. }
  2488. },
  2489. "installation-source": "dist",
  2490. "autoload": {
  2491. "classmap": [
  2492. "src/"
  2493. ]
  2494. },
  2495. "notification-url": "https://packagist.org/downloads/",
  2496. "license": [
  2497. "BSD-3-Clause"
  2498. ],
  2499. "authors": [
  2500. {
  2501. "name": "Sebastian Bergmann",
  2502. "email": "sebastian@phpunit.de"
  2503. }
  2504. ],
  2505. "description": "Provides a list of PHP built-in functions that operate on resources",
  2506. "homepage": "https://www.github.com/sebastianbergmann/resource-operations"
  2507. },
  2508. {
  2509. "name": "sebastian/recursion-context",
  2510. "version": "2.0.0",
  2511. "version_normalized": "2.0.0.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2515. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  2520. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "php": ">=5.3.3"
  2525. },
  2526. "require-dev": {
  2527. "phpunit/phpunit": "~4.4"
  2528. },
  2529. "time": "2016-11-19T07:33:16+00:00",
  2530. "type": "library",
  2531. "extra": {
  2532. "branch-alias": {
  2533. "dev-master": "2.0.x-dev"
  2534. }
  2535. },
  2536. "installation-source": "dist",
  2537. "autoload": {
  2538. "classmap": [
  2539. "src/"
  2540. ]
  2541. },
  2542. "notification-url": "https://packagist.org/downloads/",
  2543. "license": [
  2544. "BSD-3-Clause"
  2545. ],
  2546. "authors": [
  2547. {
  2548. "name": "Jeff Welch",
  2549. "email": "whatthejeff@gmail.com"
  2550. },
  2551. {
  2552. "name": "Sebastian Bergmann",
  2553. "email": "sebastian@phpunit.de"
  2554. },
  2555. {
  2556. "name": "Adam Harvey",
  2557. "email": "aharvey@php.net"
  2558. }
  2559. ],
  2560. "description": "Provides functionality to recursively process PHP variables",
  2561. "homepage": "http://www.github.com/sebastianbergmann/recursion-context"
  2562. },
  2563. {
  2564. "name": "sebastian/object-enumerator",
  2565. "version": "2.0.1",
  2566. "version_normalized": "2.0.1.0",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2570. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
  2575. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  2576. "shasum": ""
  2577. },
  2578. "require": {
  2579. "php": ">=5.6",
  2580. "sebastian/recursion-context": "~2.0"
  2581. },
  2582. "require-dev": {
  2583. "phpunit/phpunit": "~5"
  2584. },
  2585. "time": "2017-02-18T15:18:39+00:00",
  2586. "type": "library",
  2587. "extra": {
  2588. "branch-alias": {
  2589. "dev-master": "2.0.x-dev"
  2590. }
  2591. },
  2592. "installation-source": "dist",
  2593. "autoload": {
  2594. "classmap": [
  2595. "src/"
  2596. ]
  2597. },
  2598. "notification-url": "https://packagist.org/downloads/",
  2599. "license": [
  2600. "BSD-3-Clause"
  2601. ],
  2602. "authors": [
  2603. {
  2604. "name": "Sebastian Bergmann",
  2605. "email": "sebastian@phpunit.de"
  2606. }
  2607. ],
  2608. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2609. "homepage": "https://github.com/sebastianbergmann/object-enumerator/"
  2610. },
  2611. {
  2612. "name": "sebastian/global-state",
  2613. "version": "1.1.1",
  2614. "version_normalized": "1.1.1.0",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/sebastianbergmann/global-state.git",
  2618. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2623. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2624. "shasum": ""
  2625. },
  2626. "require": {
  2627. "php": ">=5.3.3"
  2628. },
  2629. "require-dev": {
  2630. "phpunit/phpunit": "~4.2"
  2631. },
  2632. "suggest": {
  2633. "ext-uopz": "*"
  2634. },
  2635. "time": "2015-10-12T03:26:01+00:00",
  2636. "type": "library",
  2637. "extra": {
  2638. "branch-alias": {
  2639. "dev-master": "1.0-dev"
  2640. }
  2641. },
  2642. "installation-source": "dist",
  2643. "autoload": {
  2644. "classmap": [
  2645. "src/"
  2646. ]
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "BSD-3-Clause"
  2651. ],
  2652. "authors": [
  2653. {
  2654. "name": "Sebastian Bergmann",
  2655. "email": "sebastian@phpunit.de"
  2656. }
  2657. ],
  2658. "description": "Snapshotting of global state",
  2659. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2660. "keywords": [
  2661. "global state"
  2662. ]
  2663. },
  2664. {
  2665. "name": "sebastian/exporter",
  2666. "version": "2.0.0",
  2667. "version_normalized": "2.0.0.0",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://github.com/sebastianbergmann/exporter.git",
  2671. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  2676. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  2677. "shasum": ""
  2678. },
  2679. "require": {
  2680. "php": ">=5.3.3",
  2681. "sebastian/recursion-context": "~2.0"
  2682. },
  2683. "require-dev": {
  2684. "ext-mbstring": "*",
  2685. "phpunit/phpunit": "~4.4"
  2686. },
  2687. "time": "2016-11-19T08:54:04+00:00",
  2688. "type": "library",
  2689. "extra": {
  2690. "branch-alias": {
  2691. "dev-master": "2.0.x-dev"
  2692. }
  2693. },
  2694. "installation-source": "dist",
  2695. "autoload": {
  2696. "classmap": [
  2697. "src/"
  2698. ]
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "BSD-3-Clause"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Jeff Welch",
  2707. "email": "whatthejeff@gmail.com"
  2708. },
  2709. {
  2710. "name": "Volker Dusch",
  2711. "email": "github@wallbash.com"
  2712. },
  2713. {
  2714. "name": "Bernhard Schussek",
  2715. "email": "bschussek@2bepublished.at"
  2716. },
  2717. {
  2718. "name": "Sebastian Bergmann",
  2719. "email": "sebastian@phpunit.de"
  2720. },
  2721. {
  2722. "name": "Adam Harvey",
  2723. "email": "aharvey@php.net"
  2724. }
  2725. ],
  2726. "description": "Provides the functionality to export PHP variables for visualization",
  2727. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2728. "keywords": [
  2729. "export",
  2730. "exporter"
  2731. ]
  2732. },
  2733. {
  2734. "name": "sebastian/environment",
  2735. "version": "2.0.0",
  2736. "version_normalized": "2.0.0.0",
  2737. "source": {
  2738. "type": "git",
  2739. "url": "https://github.com/sebastianbergmann/environment.git",
  2740. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  2741. },
  2742. "dist": {
  2743. "type": "zip",
  2744. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  2745. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  2746. "shasum": ""
  2747. },
  2748. "require": {
  2749. "php": "^5.6 || ^7.0"
  2750. },
  2751. "require-dev": {
  2752. "phpunit/phpunit": "^5.0"
  2753. },
  2754. "time": "2016-11-26T07:53:53+00:00",
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-master": "2.0.x-dev"
  2759. }
  2760. },
  2761. "installation-source": "dist",
  2762. "autoload": {
  2763. "classmap": [
  2764. "src/"
  2765. ]
  2766. },
  2767. "notification-url": "https://packagist.org/downloads/",
  2768. "license": [
  2769. "BSD-3-Clause"
  2770. ],
  2771. "authors": [
  2772. {
  2773. "name": "Sebastian Bergmann",
  2774. "email": "sebastian@phpunit.de"
  2775. }
  2776. ],
  2777. "description": "Provides functionality to handle HHVM/PHP environments",
  2778. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2779. "keywords": [
  2780. "Xdebug",
  2781. "environment",
  2782. "hhvm"
  2783. ]
  2784. },
  2785. {
  2786. "name": "sebastian/diff",
  2787. "version": "1.4.3",
  2788. "version_normalized": "1.4.3.0",
  2789. "source": {
  2790. "type": "git",
  2791. "url": "https://github.com/sebastianbergmann/diff.git",
  2792. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  2793. },
  2794. "dist": {
  2795. "type": "zip",
  2796. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  2797. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  2798. "shasum": ""
  2799. },
  2800. "require": {
  2801. "php": "^5.3.3 || ^7.0"
  2802. },
  2803. "require-dev": {
  2804. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2805. },
  2806. "time": "2017-05-22T07:24:03+00:00",
  2807. "type": "library",
  2808. "extra": {
  2809. "branch-alias": {
  2810. "dev-master": "1.4-dev"
  2811. }
  2812. },
  2813. "installation-source": "dist",
  2814. "autoload": {
  2815. "classmap": [
  2816. "src/"
  2817. ]
  2818. },
  2819. "notification-url": "https://packagist.org/downloads/",
  2820. "license": [
  2821. "BSD-3-Clause"
  2822. ],
  2823. "authors": [
  2824. {
  2825. "name": "Kore Nordmann",
  2826. "email": "mail@kore-nordmann.de"
  2827. },
  2828. {
  2829. "name": "Sebastian Bergmann",
  2830. "email": "sebastian@phpunit.de"
  2831. }
  2832. ],
  2833. "description": "Diff implementation",
  2834. "homepage": "https://github.com/sebastianbergmann/diff",
  2835. "keywords": [
  2836. "diff"
  2837. ]
  2838. },
  2839. {
  2840. "name": "sebastian/comparator",
  2841. "version": "1.2.4",
  2842. "version_normalized": "1.2.4.0",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/sebastianbergmann/comparator.git",
  2846. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  2851. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  2852. "shasum": ""
  2853. },
  2854. "require": {
  2855. "php": ">=5.3.3",
  2856. "sebastian/diff": "~1.2",
  2857. "sebastian/exporter": "~1.2 || ~2.0"
  2858. },
  2859. "require-dev": {
  2860. "phpunit/phpunit": "~4.4"
  2861. },
  2862. "time": "2017-01-29T09:50:25+00:00",
  2863. "type": "library",
  2864. "extra": {
  2865. "branch-alias": {
  2866. "dev-master": "1.2.x-dev"
  2867. }
  2868. },
  2869. "installation-source": "dist",
  2870. "autoload": {
  2871. "classmap": [
  2872. "src/"
  2873. ]
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "BSD-3-Clause"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Jeff Welch",
  2882. "email": "whatthejeff@gmail.com"
  2883. },
  2884. {
  2885. "name": "Volker Dusch",
  2886. "email": "github@wallbash.com"
  2887. },
  2888. {
  2889. "name": "Bernhard Schussek",
  2890. "email": "bschussek@2bepublished.at"
  2891. },
  2892. {
  2893. "name": "Sebastian Bergmann",
  2894. "email": "sebastian@phpunit.de"
  2895. }
  2896. ],
  2897. "description": "Provides the functionality to compare PHP values for equality",
  2898. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  2899. "keywords": [
  2900. "comparator",
  2901. "compare",
  2902. "equality"
  2903. ]
  2904. },
  2905. {
  2906. "name": "phpunit/php-text-template",
  2907. "version": "1.2.1",
  2908. "version_normalized": "1.2.1.0",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2912. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2917. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "php": ">=5.3.3"
  2922. },
  2923. "time": "2015-06-21T13:50:34+00:00",
  2924. "type": "library",
  2925. "installation-source": "dist",
  2926. "autoload": {
  2927. "classmap": [
  2928. "src/"
  2929. ]
  2930. },
  2931. "notification-url": "https://packagist.org/downloads/",
  2932. "license": [
  2933. "BSD-3-Clause"
  2934. ],
  2935. "authors": [
  2936. {
  2937. "name": "Sebastian Bergmann",
  2938. "email": "sebastian@phpunit.de",
  2939. "role": "lead"
  2940. }
  2941. ],
  2942. "description": "Simple template engine.",
  2943. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2944. "keywords": [
  2945. "template"
  2946. ]
  2947. },
  2948. {
  2949. "name": "doctrine/instantiator",
  2950. "version": "1.0.5",
  2951. "version_normalized": "1.0.5.0",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://github.com/doctrine/instantiator.git",
  2955. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  2960. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2961. "shasum": ""
  2962. },
  2963. "require": {
  2964. "php": ">=5.3,<8.0-DEV"
  2965. },
  2966. "require-dev": {
  2967. "athletic/athletic": "~0.1.8",
  2968. "ext-pdo": "*",
  2969. "ext-phar": "*",
  2970. "phpunit/phpunit": "~4.0",
  2971. "squizlabs/php_codesniffer": "~2.0"
  2972. },
  2973. "time": "2015-06-14T21:17:01+00:00",
  2974. "type": "library",
  2975. "extra": {
  2976. "branch-alias": {
  2977. "dev-master": "1.0.x-dev"
  2978. }
  2979. },
  2980. "installation-source": "dist",
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Marco Pivetta",
  2993. "email": "ocramius@gmail.com",
  2994. "homepage": "http://ocramius.github.com/"
  2995. }
  2996. ],
  2997. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2998. "homepage": "https://github.com/doctrine/instantiator",
  2999. "keywords": [
  3000. "constructor",
  3001. "instantiate"
  3002. ]
  3003. },
  3004. {
  3005. "name": "phpunit/phpunit-mock-objects",
  3006. "version": "3.4.3",
  3007. "version_normalized": "3.4.3.0",
  3008. "source": {
  3009. "type": "git",
  3010. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3011. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24"
  3012. },
  3013. "dist": {
  3014. "type": "zip",
  3015. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  3016. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  3017. "shasum": ""
  3018. },
  3019. "require": {
  3020. "doctrine/instantiator": "^1.0.2",
  3021. "php": "^5.6 || ^7.0",
  3022. "phpunit/php-text-template": "^1.2",
  3023. "sebastian/exporter": "^1.2 || ^2.0"
  3024. },
  3025. "conflict": {
  3026. "phpunit/phpunit": "<5.4.0"
  3027. },
  3028. "require-dev": {
  3029. "phpunit/phpunit": "^5.4"
  3030. },
  3031. "suggest": {
  3032. "ext-soap": "*"
  3033. },
  3034. "time": "2016-12-08T20:27:08+00:00",
  3035. "type": "library",
  3036. "extra": {
  3037. "branch-alias": {
  3038. "dev-master": "3.2.x-dev"
  3039. }
  3040. },
  3041. "installation-source": "dist",
  3042. "autoload": {
  3043. "classmap": [
  3044. "src/"
  3045. ]
  3046. },
  3047. "notification-url": "https://packagist.org/downloads/",
  3048. "license": [
  3049. "BSD-3-Clause"
  3050. ],
  3051. "authors": [
  3052. {
  3053. "name": "Sebastian Bergmann",
  3054. "email": "sb@sebastian-bergmann.de",
  3055. "role": "lead"
  3056. }
  3057. ],
  3058. "description": "Mock Object library for PHPUnit",
  3059. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3060. "keywords": [
  3061. "mock",
  3062. "xunit"
  3063. ]
  3064. },
  3065. {
  3066. "name": "phpunit/php-timer",
  3067. "version": "1.0.9",
  3068. "version_normalized": "1.0.9.0",
  3069. "source": {
  3070. "type": "git",
  3071. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3072. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  3073. },
  3074. "dist": {
  3075. "type": "zip",
  3076. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3077. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3078. "shasum": ""
  3079. },
  3080. "require": {
  3081. "php": "^5.3.3 || ^7.0"
  3082. },
  3083. "require-dev": {
  3084. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3085. },
  3086. "time": "2017-02-26T11:10:40+00:00",
  3087. "type": "library",
  3088. "extra": {
  3089. "branch-alias": {
  3090. "dev-master": "1.0-dev"
  3091. }
  3092. },
  3093. "installation-source": "dist",
  3094. "autoload": {
  3095. "classmap": [
  3096. "src/"
  3097. ]
  3098. },
  3099. "notification-url": "https://packagist.org/downloads/",
  3100. "license": [
  3101. "BSD-3-Clause"
  3102. ],
  3103. "authors": [
  3104. {
  3105. "name": "Sebastian Bergmann",
  3106. "email": "sb@sebastian-bergmann.de",
  3107. "role": "lead"
  3108. }
  3109. ],
  3110. "description": "Utility class for timing",
  3111. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3112. "keywords": [
  3113. "timer"
  3114. ]
  3115. },
  3116. {
  3117. "name": "phpunit/php-file-iterator",
  3118. "version": "1.4.2",
  3119. "version_normalized": "1.4.2.0",
  3120. "source": {
  3121. "type": "git",
  3122. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3123. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
  3124. },
  3125. "dist": {
  3126. "type": "zip",
  3127. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  3128. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  3129. "shasum": ""
  3130. },
  3131. "require": {
  3132. "php": ">=5.3.3"
  3133. },
  3134. "time": "2016-10-03T07:40:28+00:00",
  3135. "type": "library",
  3136. "extra": {
  3137. "branch-alias": {
  3138. "dev-master": "1.4.x-dev"
  3139. }
  3140. },
  3141. "installation-source": "dist",
  3142. "autoload": {
  3143. "classmap": [
  3144. "src/"
  3145. ]
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "BSD-3-Clause"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Sebastian Bergmann",
  3154. "email": "sb@sebastian-bergmann.de",
  3155. "role": "lead"
  3156. }
  3157. ],
  3158. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3159. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3160. "keywords": [
  3161. "filesystem",
  3162. "iterator"
  3163. ]
  3164. },
  3165. {
  3166. "name": "sebastian/code-unit-reverse-lookup",
  3167. "version": "1.0.1",
  3168. "version_normalized": "1.0.1.0",
  3169. "source": {
  3170. "type": "git",
  3171. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3172. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3173. },
  3174. "dist": {
  3175. "type": "zip",
  3176. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3177. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3178. "shasum": ""
  3179. },
  3180. "require": {
  3181. "php": "^5.6 || ^7.0"
  3182. },
  3183. "require-dev": {
  3184. "phpunit/phpunit": "^5.7 || ^6.0"
  3185. },
  3186. "time": "2017-03-04T06:30:41+00:00",
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-master": "1.0.x-dev"
  3191. }
  3192. },
  3193. "installation-source": "dist",
  3194. "autoload": {
  3195. "classmap": [
  3196. "src/"
  3197. ]
  3198. },
  3199. "notification-url": "https://packagist.org/downloads/",
  3200. "license": [
  3201. "BSD-3-Clause"
  3202. ],
  3203. "authors": [
  3204. {
  3205. "name": "Sebastian Bergmann",
  3206. "email": "sebastian@phpunit.de"
  3207. }
  3208. ],
  3209. "description": "Looks up which function or method a line of code belongs to",
  3210. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/"
  3211. },
  3212. {
  3213. "name": "phpunit/php-code-coverage",
  3214. "version": "4.0.8",
  3215. "version_normalized": "4.0.8.0",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3219. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  3224. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "ext-dom": "*",
  3229. "ext-xmlwriter": "*",
  3230. "php": "^5.6 || ^7.0",
  3231. "phpunit/php-file-iterator": "^1.3",
  3232. "phpunit/php-text-template": "^1.2",
  3233. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  3234. "sebastian/code-unit-reverse-lookup": "^1.0",
  3235. "sebastian/environment": "^1.3.2 || ^2.0",
  3236. "sebastian/version": "^1.0 || ^2.0"
  3237. },
  3238. "require-dev": {
  3239. "ext-xdebug": "^2.1.4",
  3240. "phpunit/phpunit": "^5.7"
  3241. },
  3242. "suggest": {
  3243. "ext-xdebug": "^2.5.1"
  3244. },
  3245. "time": "2017-04-02T07:44:40+00:00",
  3246. "type": "library",
  3247. "extra": {
  3248. "branch-alias": {
  3249. "dev-master": "4.0.x-dev"
  3250. }
  3251. },
  3252. "installation-source": "dist",
  3253. "autoload": {
  3254. "classmap": [
  3255. "src/"
  3256. ]
  3257. },
  3258. "notification-url": "https://packagist.org/downloads/",
  3259. "license": [
  3260. "BSD-3-Clause"
  3261. ],
  3262. "authors": [
  3263. {
  3264. "name": "Sebastian Bergmann",
  3265. "email": "sb@sebastian-bergmann.de",
  3266. "role": "lead"
  3267. }
  3268. ],
  3269. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3270. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3271. "keywords": [
  3272. "coverage",
  3273. "testing",
  3274. "xunit"
  3275. ]
  3276. },
  3277. {
  3278. "name": "phpspec/prophecy",
  3279. "version": "v1.7.0",
  3280. "version_normalized": "1.7.0.0",
  3281. "source": {
  3282. "type": "git",
  3283. "url": "https://github.com/phpspec/prophecy.git",
  3284. "reference": "93d39f1f7f9326d746203c7c056f300f7f126073"
  3285. },
  3286. "dist": {
  3287. "type": "zip",
  3288. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/93d39f1f7f9326d746203c7c056f300f7f126073",
  3289. "reference": "93d39f1f7f9326d746203c7c056f300f7f126073",
  3290. "shasum": ""
  3291. },
  3292. "require": {
  3293. "doctrine/instantiator": "^1.0.2",
  3294. "php": "^5.3|^7.0",
  3295. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  3296. "sebastian/comparator": "^1.1|^2.0",
  3297. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  3298. },
  3299. "require-dev": {
  3300. "phpspec/phpspec": "^2.5|^3.2",
  3301. "phpunit/phpunit": "^4.8 || ^5.6.5"
  3302. },
  3303. "time": "2017-03-02T20:05:34+00:00",
  3304. "type": "library",
  3305. "extra": {
  3306. "branch-alias": {
  3307. "dev-master": "1.6.x-dev"
  3308. }
  3309. },
  3310. "installation-source": "dist",
  3311. "autoload": {
  3312. "psr-0": {
  3313. "Prophecy\\": "src/"
  3314. }
  3315. },
  3316. "notification-url": "https://packagist.org/downloads/",
  3317. "license": [
  3318. "MIT"
  3319. ],
  3320. "authors": [
  3321. {
  3322. "name": "Konstantin Kudryashov",
  3323. "email": "ever.zet@gmail.com",
  3324. "homepage": "http://everzet.com"
  3325. },
  3326. {
  3327. "name": "Marcello Duarte",
  3328. "email": "marcello.duarte@gmail.com"
  3329. }
  3330. ],
  3331. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3332. "homepage": "https://github.com/phpspec/prophecy",
  3333. "keywords": [
  3334. "Double",
  3335. "Dummy",
  3336. "fake",
  3337. "mock",
  3338. "spy",
  3339. "stub"
  3340. ]
  3341. },
  3342. {
  3343. "name": "myclabs/deep-copy",
  3344. "version": "1.6.1",
  3345. "version_normalized": "1.6.1.0",
  3346. "source": {
  3347. "type": "git",
  3348. "url": "https://github.com/myclabs/DeepCopy.git",
  3349. "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102"
  3350. },
  3351. "dist": {
  3352. "type": "zip",
  3353. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/8e6e04167378abf1ddb4d3522d8755c5fd90d102",
  3354. "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102",
  3355. "shasum": ""
  3356. },
  3357. "require": {
  3358. "php": ">=5.4.0"
  3359. },
  3360. "require-dev": {
  3361. "doctrine/collections": "1.*",
  3362. "phpunit/phpunit": "~4.1"
  3363. },
  3364. "time": "2017-04-12T18:52:22+00:00",
  3365. "type": "library",
  3366. "installation-source": "dist",
  3367. "autoload": {
  3368. "psr-4": {
  3369. "DeepCopy\\": "src/DeepCopy/"
  3370. }
  3371. },
  3372. "notification-url": "https://packagist.org/downloads/",
  3373. "license": [
  3374. "MIT"
  3375. ],
  3376. "description": "Create deep copies (clones) of your objects",
  3377. "homepage": "https://github.com/myclabs/DeepCopy",
  3378. "keywords": [
  3379. "clone",
  3380. "copy",
  3381. "duplicate",
  3382. "object",
  3383. "object graph"
  3384. ]
  3385. },
  3386. {
  3387. "name": "phpunit/phpunit",
  3388. "version": "5.7.20",
  3389. "version_normalized": "5.7.20.0",
  3390. "source": {
  3391. "type": "git",
  3392. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3393. "reference": "3cb94a5f8c07a03c8b7527ed7468a2926203f58b"
  3394. },
  3395. "dist": {
  3396. "type": "zip",
  3397. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3cb94a5f8c07a03c8b7527ed7468a2926203f58b",
  3398. "reference": "3cb94a5f8c07a03c8b7527ed7468a2926203f58b",
  3399. "shasum": ""
  3400. },
  3401. "require": {
  3402. "ext-dom": "*",
  3403. "ext-json": "*",
  3404. "ext-libxml": "*",
  3405. "ext-mbstring": "*",
  3406. "ext-xml": "*",
  3407. "myclabs/deep-copy": "~1.3",
  3408. "php": "^5.6 || ^7.0",
  3409. "phpspec/prophecy": "^1.6.2",
  3410. "phpunit/php-code-coverage": "^4.0.4",
  3411. "phpunit/php-file-iterator": "~1.4",
  3412. "phpunit/php-text-template": "~1.2",
  3413. "phpunit/php-timer": "^1.0.6",
  3414. "phpunit/phpunit-mock-objects": "^3.2",
  3415. "sebastian/comparator": "^1.2.4",
  3416. "sebastian/diff": "^1.4.3",
  3417. "sebastian/environment": "^1.3.4 || ^2.0",
  3418. "sebastian/exporter": "~2.0",
  3419. "sebastian/global-state": "^1.1",
  3420. "sebastian/object-enumerator": "~2.0",
  3421. "sebastian/resource-operations": "~1.0",
  3422. "sebastian/version": "~1.0.3|~2.0",
  3423. "symfony/yaml": "~2.1|~3.0"
  3424. },
  3425. "conflict": {
  3426. "phpdocumentor/reflection-docblock": "3.0.2"
  3427. },
  3428. "require-dev": {
  3429. "ext-pdo": "*"
  3430. },
  3431. "suggest": {
  3432. "ext-xdebug": "*",
  3433. "phpunit/php-invoker": "~1.1"
  3434. },
  3435. "time": "2017-05-22T07:42:55+00:00",
  3436. "bin": [
  3437. "phpunit"
  3438. ],
  3439. "type": "library",
  3440. "extra": {
  3441. "branch-alias": {
  3442. "dev-master": "5.7.x-dev"
  3443. }
  3444. },
  3445. "installation-source": "dist",
  3446. "autoload": {
  3447. "classmap": [
  3448. "src/"
  3449. ]
  3450. },
  3451. "notification-url": "https://packagist.org/downloads/",
  3452. "license": [
  3453. "BSD-3-Clause"
  3454. ],
  3455. "authors": [
  3456. {
  3457. "name": "Sebastian Bergmann",
  3458. "email": "sebastian@phpunit.de",
  3459. "role": "lead"
  3460. }
  3461. ],
  3462. "description": "The PHP Unit Testing framework.",
  3463. "homepage": "https://phpunit.de/",
  3464. "keywords": [
  3465. "phpunit",
  3466. "testing",
  3467. "xunit"
  3468. ]
  3469. }
  3470. ]