composer.lock 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "655f3e16c1c33d89e1baf6383b2efb26",
  8. "packages": [
  9. {
  10. "name": "antoligy/dom-string-iterators",
  11. "version": "v1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/antoligy/dom-string-iterators.git",
  15. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/antoligy/dom-string-iterators/zipball/fae88f66e1970d68c5585fc42db44f1217bf74e6",
  20. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "": "src/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "CC0-1.0"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Alex Wilson",
  39. "email": "a@ax.gy"
  40. },
  41. {
  42. "name": "Kornel Lesinski",
  43. "email": "pornel@pornel.net"
  44. },
  45. {
  46. "name": "Patrick Galbraith",
  47. "email": "patrick.j.galbraith@gmail.com"
  48. }
  49. ],
  50. "description": "Composer package for DOMWordsIterator and DOMLettersIterator",
  51. "time": "2018-02-03T16:01:11+00:00"
  52. },
  53. {
  54. "name": "composer/ca-bundle",
  55. "version": "1.1.4",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/composer/ca-bundle.git",
  59. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  64. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "ext-openssl": "*",
  69. "ext-pcre": "*",
  70. "php": "^5.3.2 || ^7.0"
  71. },
  72. "require-dev": {
  73. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  74. "psr/log": "^1.0",
  75. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  76. },
  77. "type": "library",
  78. "extra": {
  79. "branch-alias": {
  80. "dev-master": "1.x-dev"
  81. }
  82. },
  83. "autoload": {
  84. "psr-4": {
  85. "Composer\\CaBundle\\": "src"
  86. }
  87. },
  88. "notification-url": "https://packagist.org/downloads/",
  89. "license": [
  90. "MIT"
  91. ],
  92. "authors": [
  93. {
  94. "name": "Jordi Boggiano",
  95. "email": "j.boggiano@seld.be",
  96. "homepage": "http://seld.be"
  97. }
  98. ],
  99. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  100. "keywords": [
  101. "cabundle",
  102. "cacert",
  103. "certificate",
  104. "ssl",
  105. "tls"
  106. ],
  107. "time": "2019-01-28T09:30:10+00:00"
  108. },
  109. {
  110. "name": "doctrine/cache",
  111. "version": "v1.6.2",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/doctrine/cache.git",
  115. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  120. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": "~5.5|~7.0"
  125. },
  126. "conflict": {
  127. "doctrine/common": ">2.2,<2.4"
  128. },
  129. "require-dev": {
  130. "phpunit/phpunit": "~4.8|~5.0",
  131. "predis/predis": "~1.0",
  132. "satooshi/php-coveralls": "~0.6"
  133. },
  134. "type": "library",
  135. "extra": {
  136. "branch-alias": {
  137. "dev-master": "1.6.x-dev"
  138. }
  139. },
  140. "autoload": {
  141. "psr-4": {
  142. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  143. }
  144. },
  145. "notification-url": "https://packagist.org/downloads/",
  146. "license": [
  147. "MIT"
  148. ],
  149. "authors": [
  150. {
  151. "name": "Roman Borschel",
  152. "email": "roman@code-factory.org"
  153. },
  154. {
  155. "name": "Benjamin Eberlei",
  156. "email": "kontakt@beberlei.de"
  157. },
  158. {
  159. "name": "Guilherme Blanco",
  160. "email": "guilhermeblanco@gmail.com"
  161. },
  162. {
  163. "name": "Jonathan Wage",
  164. "email": "jonwage@gmail.com"
  165. },
  166. {
  167. "name": "Johannes Schmitt",
  168. "email": "schmittjoh@gmail.com"
  169. }
  170. ],
  171. "description": "Caching library offering an object-oriented API for many cache backends",
  172. "homepage": "http://www.doctrine-project.org",
  173. "keywords": [
  174. "cache",
  175. "caching"
  176. ],
  177. "time": "2017-07-22T12:49:21+00:00"
  178. },
  179. {
  180. "name": "doctrine/collections",
  181. "version": "v1.4.0",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/doctrine/collections.git",
  185. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  190. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "php": "^5.6 || ^7.0"
  195. },
  196. "require-dev": {
  197. "doctrine/coding-standard": "~0.1@dev",
  198. "phpunit/phpunit": "^5.7"
  199. },
  200. "type": "library",
  201. "extra": {
  202. "branch-alias": {
  203. "dev-master": "1.3.x-dev"
  204. }
  205. },
  206. "autoload": {
  207. "psr-0": {
  208. "Doctrine\\Common\\Collections\\": "lib/"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Roman Borschel",
  218. "email": "roman@code-factory.org"
  219. },
  220. {
  221. "name": "Benjamin Eberlei",
  222. "email": "kontakt@beberlei.de"
  223. },
  224. {
  225. "name": "Guilherme Blanco",
  226. "email": "guilhermeblanco@gmail.com"
  227. },
  228. {
  229. "name": "Jonathan Wage",
  230. "email": "jonwage@gmail.com"
  231. },
  232. {
  233. "name": "Johannes Schmitt",
  234. "email": "schmittjoh@gmail.com"
  235. }
  236. ],
  237. "description": "Collections Abstraction library",
  238. "homepage": "http://www.doctrine-project.org",
  239. "keywords": [
  240. "array",
  241. "collections",
  242. "iterator"
  243. ],
  244. "time": "2017-01-03T10:49:41+00:00"
  245. },
  246. {
  247. "name": "donatj/phpuseragentparser",
  248. "version": "v0.13.0",
  249. "source": {
  250. "type": "git",
  251. "url": "https://github.com/donatj/PhpUserAgent.git",
  252. "reference": "5f2da266d2a386f9b231d4344ae37baf7a467c2d"
  253. },
  254. "dist": {
  255. "type": "zip",
  256. "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/5f2da266d2a386f9b231d4344ae37baf7a467c2d",
  257. "reference": "5f2da266d2a386f9b231d4344ae37baf7a467c2d",
  258. "shasum": ""
  259. },
  260. "require": {
  261. "php": ">=5.3.0"
  262. },
  263. "require-dev": {
  264. "camspiers/json-pretty": "0.1.*",
  265. "donatj/drop": "*",
  266. "phpunit/phpunit": "~4.8"
  267. },
  268. "type": "library",
  269. "autoload": {
  270. "files": [
  271. "src/UserAgentParser.php"
  272. ]
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Jesse G. Donat",
  281. "email": "donatj@gmail.com",
  282. "homepage": "http://donatstudios.com",
  283. "role": "Developer"
  284. }
  285. ],
  286. "description": "Lightning fast, minimalist PHP UserAgent string parser.",
  287. "homepage": "http://donatstudios.com/PHP-Parser-HTTP_USER_AGENT",
  288. "keywords": [
  289. "browser",
  290. "browser detection",
  291. "parser",
  292. "user agent",
  293. "useragent"
  294. ],
  295. "time": "2019-03-08T20:52:23+00:00"
  296. },
  297. {
  298. "name": "erusev/parsedown",
  299. "version": "1.6.4",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/erusev/parsedown.git",
  303. "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/erusev/parsedown/zipball/fbe3fe878f4fe69048bb8a52783a09802004f548",
  308. "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548",
  309. "shasum": ""
  310. },
  311. "require": {
  312. "php": ">=5.3.0"
  313. },
  314. "require-dev": {
  315. "phpunit/phpunit": "^4.8.35"
  316. },
  317. "type": "library",
  318. "autoload": {
  319. "psr-0": {
  320. "Parsedown": ""
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Emanuil Rusev",
  330. "email": "hello@erusev.com",
  331. "homepage": "http://erusev.com"
  332. }
  333. ],
  334. "description": "Parser for Markdown.",
  335. "homepage": "http://parsedown.org",
  336. "keywords": [
  337. "markdown",
  338. "parser"
  339. ],
  340. "time": "2017-11-14T20:44:03+00:00"
  341. },
  342. {
  343. "name": "erusev/parsedown-extra",
  344. "version": "0.7.1",
  345. "source": {
  346. "type": "git",
  347. "url": "https://github.com/erusev/parsedown-extra.git",
  348. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c"
  349. },
  350. "dist": {
  351. "type": "zip",
  352. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/0db5cce7354e4b76f155d092ab5eb3981c21258c",
  353. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c",
  354. "shasum": ""
  355. },
  356. "require": {
  357. "erusev/parsedown": "~1.4"
  358. },
  359. "type": "library",
  360. "autoload": {
  361. "psr-0": {
  362. "ParsedownExtra": ""
  363. }
  364. },
  365. "notification-url": "https://packagist.org/downloads/",
  366. "license": [
  367. "MIT"
  368. ],
  369. "authors": [
  370. {
  371. "name": "Emanuil Rusev",
  372. "email": "hello@erusev.com",
  373. "homepage": "http://erusev.com"
  374. }
  375. ],
  376. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  377. "homepage": "https://github.com/erusev/parsedown-extra",
  378. "keywords": [
  379. "markdown",
  380. "markdown extra",
  381. "parsedown",
  382. "parser"
  383. ],
  384. "time": "2015-11-01T10:19:22+00:00"
  385. },
  386. {
  387. "name": "filp/whoops",
  388. "version": "2.3.1",
  389. "source": {
  390. "type": "git",
  391. "url": "https://github.com/filp/whoops.git",
  392. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  393. },
  394. "dist": {
  395. "type": "zip",
  396. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  397. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  398. "shasum": ""
  399. },
  400. "require": {
  401. "php": "^5.5.9 || ^7.0",
  402. "psr/log": "^1.0.1"
  403. },
  404. "require-dev": {
  405. "mockery/mockery": "^0.9 || ^1.0",
  406. "phpunit/phpunit": "^4.8.35 || ^5.7",
  407. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  408. },
  409. "suggest": {
  410. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  411. "whoops/soap": "Formats errors as SOAP responses"
  412. },
  413. "type": "library",
  414. "extra": {
  415. "branch-alias": {
  416. "dev-master": "2.2-dev"
  417. }
  418. },
  419. "autoload": {
  420. "psr-4": {
  421. "Whoops\\": "src/Whoops/"
  422. }
  423. },
  424. "notification-url": "https://packagist.org/downloads/",
  425. "license": [
  426. "MIT"
  427. ],
  428. "authors": [
  429. {
  430. "name": "Filipe Dobreira",
  431. "homepage": "https://github.com/filp",
  432. "role": "Developer"
  433. }
  434. ],
  435. "description": "php error handling for cool kids",
  436. "homepage": "https://filp.github.io/whoops/",
  437. "keywords": [
  438. "error",
  439. "exception",
  440. "handling",
  441. "library",
  442. "throwable",
  443. "whoops"
  444. ],
  445. "time": "2018-10-23T09:00:00+00:00"
  446. },
  447. {
  448. "name": "gregwar/cache",
  449. "version": "v1.0.12",
  450. "target-dir": "Gregwar/Cache",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/Gregwar/Cache.git",
  454. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/Gregwar/Cache/zipball/305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  459. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": ">=5.3"
  464. },
  465. "type": "library",
  466. "autoload": {
  467. "psr-0": {
  468. "Gregwar\\Cache": ""
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Gregwar",
  478. "email": "g.passault@gmail.com"
  479. }
  480. ],
  481. "description": "A lightweight file-system cache system",
  482. "keywords": [
  483. "cache",
  484. "caching",
  485. "file-system",
  486. "system"
  487. ],
  488. "time": "2016-09-23T08:16:04+00:00"
  489. },
  490. {
  491. "name": "gregwar/image",
  492. "version": "v2.0.24",
  493. "target-dir": "Gregwar/Image",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/Gregwar/Image.git",
  497. "reference": "52145816255dd20cb4bb115d0f9e1030c6287994"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/Gregwar/Image/zipball/52145816255dd20cb4bb115d0f9e1030c6287994",
  502. "reference": "52145816255dd20cb4bb115d0f9e1030c6287994",
  503. "shasum": ""
  504. },
  505. "require": {
  506. "ext-gd": "*",
  507. "gregwar/cache": "^1.0.6",
  508. "php": "^5.3 || ^7.0"
  509. },
  510. "require-dev": {
  511. "sllh/php-cs-fixer-styleci-bridge": "~1.0",
  512. "symfony/phpunit-bridge": "^2.7.4 || ^3.0"
  513. },
  514. "suggest": {
  515. "behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
  516. },
  517. "type": "library",
  518. "autoload": {
  519. "psr-0": {
  520. "Gregwar\\Image": ""
  521. }
  522. },
  523. "notification-url": "https://packagist.org/downloads/",
  524. "license": [
  525. "MIT"
  526. ],
  527. "authors": [
  528. {
  529. "name": "Grégoire Passault",
  530. "email": "g.passault@gmail.com",
  531. "homepage": "http://www.gregwar.com/"
  532. }
  533. ],
  534. "description": "Image handling",
  535. "homepage": "https://github.com/Gregwar/Image",
  536. "keywords": [
  537. "gd",
  538. "image"
  539. ],
  540. "time": "2019-01-27T15:10:06+00:00"
  541. },
  542. {
  543. "name": "guzzlehttp/psr7",
  544. "version": "1.5.2",
  545. "source": {
  546. "type": "git",
  547. "url": "https://github.com/guzzle/psr7.git",
  548. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  549. },
  550. "dist": {
  551. "type": "zip",
  552. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  553. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  554. "shasum": ""
  555. },
  556. "require": {
  557. "php": ">=5.4.0",
  558. "psr/http-message": "~1.0",
  559. "ralouphie/getallheaders": "^2.0.5"
  560. },
  561. "provide": {
  562. "psr/http-message-implementation": "1.0"
  563. },
  564. "require-dev": {
  565. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  566. },
  567. "type": "library",
  568. "extra": {
  569. "branch-alias": {
  570. "dev-master": "1.5-dev"
  571. }
  572. },
  573. "autoload": {
  574. "psr-4": {
  575. "GuzzleHttp\\Psr7\\": "src/"
  576. },
  577. "files": [
  578. "src/functions_include.php"
  579. ]
  580. },
  581. "notification-url": "https://packagist.org/downloads/",
  582. "license": [
  583. "MIT"
  584. ],
  585. "authors": [
  586. {
  587. "name": "Michael Dowling",
  588. "email": "mtdowling@gmail.com",
  589. "homepage": "https://github.com/mtdowling"
  590. },
  591. {
  592. "name": "Tobias Schultze",
  593. "homepage": "https://github.com/Tobion"
  594. }
  595. ],
  596. "description": "PSR-7 message implementation that also provides common utility methods",
  597. "keywords": [
  598. "http",
  599. "message",
  600. "psr-7",
  601. "request",
  602. "response",
  603. "stream",
  604. "uri",
  605. "url"
  606. ],
  607. "time": "2018-12-04T20:46:45+00:00"
  608. },
  609. {
  610. "name": "league/climate",
  611. "version": "3.4.1",
  612. "source": {
  613. "type": "git",
  614. "url": "https://github.com/thephpleague/climate.git",
  615. "reference": "d657a19837c1f79a891381fb128b755aa3386381"
  616. },
  617. "dist": {
  618. "type": "zip",
  619. "url": "https://api.github.com/repos/thephpleague/climate/zipball/d657a19837c1f79a891381fb128b755aa3386381",
  620. "reference": "d657a19837c1f79a891381fb128b755aa3386381",
  621. "shasum": ""
  622. },
  623. "require": {
  624. "php": "^5.6|^7.0",
  625. "psr/log": "^1.0",
  626. "seld/cli-prompt": "^1.0"
  627. },
  628. "require-dev": {
  629. "mikey179/vfsstream": "^1.4",
  630. "mockery/mockery": "^1.0",
  631. "phpunit/phpunit": "^5.7.16"
  632. },
  633. "suggest": {
  634. "ext-mbstring": "If ext-mbstring is not available you MUST install symfony/polyfill-mbstring"
  635. },
  636. "type": "library",
  637. "autoload": {
  638. "psr-4": {
  639. "League\\CLImate\\": "src/"
  640. }
  641. },
  642. "notification-url": "https://packagist.org/downloads/",
  643. "license": [
  644. "MIT"
  645. ],
  646. "authors": [
  647. {
  648. "name": "Craig Duncan",
  649. "email": "git@duncanc.co.uk",
  650. "homepage": "https://github.com/duncan3dc",
  651. "role": "Developer"
  652. },
  653. {
  654. "name": "Joe Tannenbaum",
  655. "email": "hey@joe.codes",
  656. "homepage": "http://joe.codes/",
  657. "role": "Developer"
  658. }
  659. ],
  660. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  661. "keywords": [
  662. "cli",
  663. "colors",
  664. "command",
  665. "php",
  666. "terminal"
  667. ],
  668. "time": "2018-04-29T16:43:54+00:00"
  669. },
  670. {
  671. "name": "matthiasmullie/minify",
  672. "version": "1.3.61",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/matthiasmullie/minify.git",
  676. "reference": "d5acb8ce5b6acb7d11bafe97cecc533f6e4fd751"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/d5acb8ce5b6acb7d11bafe97cecc533f6e4fd751",
  681. "reference": "d5acb8ce5b6acb7d11bafe97cecc533f6e4fd751",
  682. "shasum": ""
  683. },
  684. "require": {
  685. "ext-pcre": "*",
  686. "matthiasmullie/path-converter": "~1.1",
  687. "php": ">=5.3.0"
  688. },
  689. "require-dev": {
  690. "friendsofphp/php-cs-fixer": "~2.0",
  691. "matthiasmullie/scrapbook": "~1.0",
  692. "phpunit/phpunit": "~4.8"
  693. },
  694. "suggest": {
  695. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  696. },
  697. "bin": [
  698. "bin/minifycss",
  699. "bin/minifyjs"
  700. ],
  701. "type": "library",
  702. "autoload": {
  703. "psr-4": {
  704. "MatthiasMullie\\Minify\\": "src/"
  705. }
  706. },
  707. "notification-url": "https://packagist.org/downloads/",
  708. "license": [
  709. "MIT"
  710. ],
  711. "authors": [
  712. {
  713. "name": "Matthias Mullie",
  714. "email": "minify@mullie.eu",
  715. "homepage": "http://www.mullie.eu",
  716. "role": "Developer"
  717. }
  718. ],
  719. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  720. "homepage": "http://www.minifier.org",
  721. "keywords": [
  722. "JS",
  723. "css",
  724. "javascript",
  725. "minifier",
  726. "minify"
  727. ],
  728. "time": "2018-11-26T23:10:39+00:00"
  729. },
  730. {
  731. "name": "matthiasmullie/path-converter",
  732. "version": "1.1.2",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/matthiasmullie/path-converter.git",
  736. "reference": "5e4b121c8b9f97c80835c1d878b0812ba1d607c9"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/5e4b121c8b9f97c80835c1d878b0812ba1d607c9",
  741. "reference": "5e4b121c8b9f97c80835c1d878b0812ba1d607c9",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "ext-pcre": "*",
  746. "php": ">=5.3.0"
  747. },
  748. "require-dev": {
  749. "phpunit/phpunit": "~4.8"
  750. },
  751. "type": "library",
  752. "autoload": {
  753. "psr-4": {
  754. "MatthiasMullie\\PathConverter\\": "src/"
  755. }
  756. },
  757. "notification-url": "https://packagist.org/downloads/",
  758. "license": [
  759. "MIT"
  760. ],
  761. "authors": [
  762. {
  763. "name": "Matthias Mullie",
  764. "email": "pathconverter@mullie.eu",
  765. "homepage": "http://www.mullie.eu",
  766. "role": "Developer"
  767. }
  768. ],
  769. "description": "Relative path converter",
  770. "homepage": "http://github.com/matthiasmullie/path-converter",
  771. "keywords": [
  772. "converter",
  773. "path",
  774. "paths",
  775. "relative"
  776. ],
  777. "time": "2018-10-25T15:19:41+00:00"
  778. },
  779. {
  780. "name": "maximebf/debugbar",
  781. "version": "v1.15.0",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/maximebf/php-debugbar.git",
  785. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  790. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "php": ">=5.3.0",
  795. "psr/log": "^1.0",
  796. "symfony/var-dumper": "^2.6|^3.0|^4.0"
  797. },
  798. "require-dev": {
  799. "phpunit/phpunit": "^4.0|^5.0"
  800. },
  801. "suggest": {
  802. "kriswallsmith/assetic": "The best way to manage assets",
  803. "monolog/monolog": "Log using Monolog",
  804. "predis/predis": "Redis storage"
  805. },
  806. "type": "library",
  807. "extra": {
  808. "branch-alias": {
  809. "dev-master": "1.14-dev"
  810. }
  811. },
  812. "autoload": {
  813. "psr-4": {
  814. "DebugBar\\": "src/DebugBar/"
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Maxime Bouroumeau-Fuseau",
  824. "email": "maxime.bouroumeau@gmail.com",
  825. "homepage": "http://maximebf.com"
  826. },
  827. {
  828. "name": "Barry vd. Heuvel",
  829. "email": "barryvdh@gmail.com"
  830. }
  831. ],
  832. "description": "Debug bar in the browser for php application",
  833. "homepage": "https://github.com/maximebf/php-debugbar",
  834. "keywords": [
  835. "debug",
  836. "debugbar"
  837. ],
  838. "time": "2017-12-15T11:13:46+00:00"
  839. },
  840. {
  841. "name": "miljar/php-exif",
  842. "version": "v0.6.4",
  843. "source": {
  844. "type": "git",
  845. "url": "https://github.com/PHPExif/php-exif.git",
  846. "reference": "361c15b8bc7d5ef26a9492fe537f09c920fe6511"
  847. },
  848. "dist": {
  849. "type": "zip",
  850. "url": "https://api.github.com/repos/PHPExif/php-exif/zipball/361c15b8bc7d5ef26a9492fe537f09c920fe6511",
  851. "reference": "361c15b8bc7d5ef26a9492fe537f09c920fe6511",
  852. "shasum": ""
  853. },
  854. "require": {
  855. "php": ">=5.3.0"
  856. },
  857. "require-dev": {
  858. "phpmd/phpmd": "~2.2",
  859. "phpunit/phpunit": "3.7.*",
  860. "satooshi/php-coveralls": "~0.6",
  861. "sebastian/phpcpd": "1.4.*@stable",
  862. "squizlabs/php_codesniffer": "1.4.*@stable"
  863. },
  864. "suggest": {
  865. "ext-exif": "Use exif PHP extension as adapter",
  866. "lib-exiftool": "Use perl lib exiftool as adapter"
  867. },
  868. "type": "library",
  869. "autoload": {
  870. "psr-0": {
  871. "PHPExif": "lib/"
  872. }
  873. },
  874. "notification-url": "https://packagist.org/downloads/",
  875. "license": [
  876. "MIT"
  877. ],
  878. "authors": [
  879. {
  880. "name": "Tom Van Herreweghe",
  881. "homepage": "http://theanalogguy.be",
  882. "role": "Developer"
  883. }
  884. ],
  885. "description": "Object-Oriented EXIF parsing",
  886. "keywords": [
  887. "IPTC",
  888. "exif",
  889. "exiftool",
  890. "jpeg",
  891. "tiff"
  892. ],
  893. "time": "2018-03-27T10:41:55+00:00"
  894. },
  895. {
  896. "name": "monolog/monolog",
  897. "version": "1.24.0",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/Seldaek/monolog.git",
  901. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  906. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  907. "shasum": ""
  908. },
  909. "require": {
  910. "php": ">=5.3.0",
  911. "psr/log": "~1.0"
  912. },
  913. "provide": {
  914. "psr/log-implementation": "1.0.0"
  915. },
  916. "require-dev": {
  917. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  918. "doctrine/couchdb": "~1.0@dev",
  919. "graylog2/gelf-php": "~1.0",
  920. "jakub-onderka/php-parallel-lint": "0.9",
  921. "php-amqplib/php-amqplib": "~2.4",
  922. "php-console/php-console": "^3.1.3",
  923. "phpunit/phpunit": "~4.5",
  924. "phpunit/phpunit-mock-objects": "2.3.0",
  925. "ruflin/elastica": ">=0.90 <3.0",
  926. "sentry/sentry": "^0.13",
  927. "swiftmailer/swiftmailer": "^5.3|^6.0"
  928. },
  929. "suggest": {
  930. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  931. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  932. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  933. "ext-mongo": "Allow sending log messages to a MongoDB server",
  934. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  935. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  936. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  937. "php-console/php-console": "Allow sending log messages to Google Chrome",
  938. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  939. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  940. "sentry/sentry": "Allow sending log messages to a Sentry server"
  941. },
  942. "type": "library",
  943. "extra": {
  944. "branch-alias": {
  945. "dev-master": "2.0.x-dev"
  946. }
  947. },
  948. "autoload": {
  949. "psr-4": {
  950. "Monolog\\": "src/Monolog"
  951. }
  952. },
  953. "notification-url": "https://packagist.org/downloads/",
  954. "license": [
  955. "MIT"
  956. ],
  957. "authors": [
  958. {
  959. "name": "Jordi Boggiano",
  960. "email": "j.boggiano@seld.be",
  961. "homepage": "http://seld.be"
  962. }
  963. ],
  964. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  965. "homepage": "http://github.com/Seldaek/monolog",
  966. "keywords": [
  967. "log",
  968. "logging",
  969. "psr-3"
  970. ],
  971. "time": "2018-11-05T09:00:11+00:00"
  972. },
  973. {
  974. "name": "phive/twig-extensions-deferred",
  975. "version": "v1.0.2",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/rybakit/twig-deferred-extension.git",
  979. "reference": "5a2426d622afa74034e754ca5ea1d1ff7887627f"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/rybakit/twig-deferred-extension/zipball/5a2426d622afa74034e754ca5ea1d1ff7887627f",
  984. "reference": "5a2426d622afa74034e754ca5ea1d1ff7887627f",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "twig/twig": "~1.18"
  989. },
  990. "type": "library",
  991. "autoload": {
  992. "psr-4": {
  993. "Phive\\Twig\\Extensions\\Deferred\\": "src/"
  994. }
  995. },
  996. "notification-url": "https://packagist.org/downloads/",
  997. "license": [
  998. "MIT"
  999. ],
  1000. "authors": [
  1001. {
  1002. "name": "Eugene Leonovich",
  1003. "email": "gen.work@gmail.com"
  1004. }
  1005. ],
  1006. "description": "An extension for Twig that allows to defer block rendering",
  1007. "homepage": "https://github.com/rybakit/twig-extensions-deferred",
  1008. "keywords": [
  1009. "defer",
  1010. "extension",
  1011. "lazy",
  1012. "twig"
  1013. ],
  1014. "time": "2017-03-17T21:39:21+00:00"
  1015. },
  1016. {
  1017. "name": "pimple/pimple",
  1018. "version": "v3.2.3",
  1019. "source": {
  1020. "type": "git",
  1021. "url": "https://github.com/silexphp/Pimple.git",
  1022. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  1023. },
  1024. "dist": {
  1025. "type": "zip",
  1026. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1027. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1028. "shasum": ""
  1029. },
  1030. "require": {
  1031. "php": ">=5.3.0",
  1032. "psr/container": "^1.0"
  1033. },
  1034. "require-dev": {
  1035. "symfony/phpunit-bridge": "^3.2"
  1036. },
  1037. "type": "library",
  1038. "extra": {
  1039. "branch-alias": {
  1040. "dev-master": "3.2.x-dev"
  1041. }
  1042. },
  1043. "autoload": {
  1044. "psr-0": {
  1045. "Pimple": "src/"
  1046. }
  1047. },
  1048. "notification-url": "https://packagist.org/downloads/",
  1049. "license": [
  1050. "MIT"
  1051. ],
  1052. "authors": [
  1053. {
  1054. "name": "Fabien Potencier",
  1055. "email": "fabien@symfony.com"
  1056. }
  1057. ],
  1058. "description": "Pimple, a simple Dependency Injection Container",
  1059. "homepage": "http://pimple.sensiolabs.org",
  1060. "keywords": [
  1061. "container",
  1062. "dependency injection"
  1063. ],
  1064. "time": "2018-01-21T07:42:36+00:00"
  1065. },
  1066. {
  1067. "name": "psr/container",
  1068. "version": "1.0.0",
  1069. "source": {
  1070. "type": "git",
  1071. "url": "https://github.com/php-fig/container.git",
  1072. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1073. },
  1074. "dist": {
  1075. "type": "zip",
  1076. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1077. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1078. "shasum": ""
  1079. },
  1080. "require": {
  1081. "php": ">=5.3.0"
  1082. },
  1083. "type": "library",
  1084. "extra": {
  1085. "branch-alias": {
  1086. "dev-master": "1.0.x-dev"
  1087. }
  1088. },
  1089. "autoload": {
  1090. "psr-4": {
  1091. "Psr\\Container\\": "src/"
  1092. }
  1093. },
  1094. "notification-url": "https://packagist.org/downloads/",
  1095. "license": [
  1096. "MIT"
  1097. ],
  1098. "authors": [
  1099. {
  1100. "name": "PHP-FIG",
  1101. "homepage": "http://www.php-fig.org/"
  1102. }
  1103. ],
  1104. "description": "Common Container Interface (PHP FIG PSR-11)",
  1105. "homepage": "https://github.com/php-fig/container",
  1106. "keywords": [
  1107. "PSR-11",
  1108. "container",
  1109. "container-interface",
  1110. "container-interop",
  1111. "psr"
  1112. ],
  1113. "time": "2017-02-14T16:28:37+00:00"
  1114. },
  1115. {
  1116. "name": "psr/http-message",
  1117. "version": "1.0.1",
  1118. "source": {
  1119. "type": "git",
  1120. "url": "https://github.com/php-fig/http-message.git",
  1121. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1122. },
  1123. "dist": {
  1124. "type": "zip",
  1125. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1126. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1127. "shasum": ""
  1128. },
  1129. "require": {
  1130. "php": ">=5.3.0"
  1131. },
  1132. "type": "library",
  1133. "extra": {
  1134. "branch-alias": {
  1135. "dev-master": "1.0.x-dev"
  1136. }
  1137. },
  1138. "autoload": {
  1139. "psr-4": {
  1140. "Psr\\Http\\Message\\": "src/"
  1141. }
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "MIT"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "PHP-FIG",
  1150. "homepage": "http://www.php-fig.org/"
  1151. }
  1152. ],
  1153. "description": "Common interface for HTTP messages",
  1154. "homepage": "https://github.com/php-fig/http-message",
  1155. "keywords": [
  1156. "http",
  1157. "http-message",
  1158. "psr",
  1159. "psr-7",
  1160. "request",
  1161. "response"
  1162. ],
  1163. "time": "2016-08-06T14:39:51+00:00"
  1164. },
  1165. {
  1166. "name": "psr/log",
  1167. "version": "1.1.0",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/php-fig/log.git",
  1171. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1176. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1177. "shasum": ""
  1178. },
  1179. "require": {
  1180. "php": ">=5.3.0"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.0.x-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "Psr\\Log\\": "Psr/Log/"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "PHP-FIG",
  1200. "homepage": "http://www.php-fig.org/"
  1201. }
  1202. ],
  1203. "description": "Common interface for logging libraries",
  1204. "homepage": "https://github.com/php-fig/log",
  1205. "keywords": [
  1206. "log",
  1207. "psr",
  1208. "psr-3"
  1209. ],
  1210. "time": "2018-11-20T15:27:04+00:00"
  1211. },
  1212. {
  1213. "name": "psr/simple-cache",
  1214. "version": "1.0.1",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/php-fig/simple-cache.git",
  1218. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1223. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": ">=5.3.0"
  1228. },
  1229. "type": "library",
  1230. "extra": {
  1231. "branch-alias": {
  1232. "dev-master": "1.0.x-dev"
  1233. }
  1234. },
  1235. "autoload": {
  1236. "psr-4": {
  1237. "Psr\\SimpleCache\\": "src/"
  1238. }
  1239. },
  1240. "notification-url": "https://packagist.org/downloads/",
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "authors": [
  1245. {
  1246. "name": "PHP-FIG",
  1247. "homepage": "http://www.php-fig.org/"
  1248. }
  1249. ],
  1250. "description": "Common interfaces for simple caching",
  1251. "keywords": [
  1252. "cache",
  1253. "caching",
  1254. "psr",
  1255. "psr-16",
  1256. "simple-cache"
  1257. ],
  1258. "time": "2017-10-23T01:57:42+00:00"
  1259. },
  1260. {
  1261. "name": "ralouphie/getallheaders",
  1262. "version": "2.0.5",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/ralouphie/getallheaders.git",
  1266. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1271. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "php": ">=5.3"
  1276. },
  1277. "require-dev": {
  1278. "phpunit/phpunit": "~3.7.0",
  1279. "satooshi/php-coveralls": ">=1.0"
  1280. },
  1281. "type": "library",
  1282. "autoload": {
  1283. "files": [
  1284. "src/getallheaders.php"
  1285. ]
  1286. },
  1287. "notification-url": "https://packagist.org/downloads/",
  1288. "license": [
  1289. "MIT"
  1290. ],
  1291. "authors": [
  1292. {
  1293. "name": "Ralph Khattar",
  1294. "email": "ralph.khattar@gmail.com"
  1295. }
  1296. ],
  1297. "description": "A polyfill for getallheaders.",
  1298. "time": "2016-02-11T07:05:27+00:00"
  1299. },
  1300. {
  1301. "name": "rockettheme/toolbox",
  1302. "version": "1.4.2",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/rockettheme/toolbox.git",
  1306. "reference": "93f5c3d5e173cee7419df20eed52711471abbc3e"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/rockettheme/toolbox/zipball/93f5c3d5e173cee7419df20eed52711471abbc3e",
  1311. "reference": "93f5c3d5e173cee7419df20eed52711471abbc3e",
  1312. "shasum": ""
  1313. },
  1314. "require": {
  1315. "php": ">=5.4.0",
  1316. "pimple/pimple": "~3.0",
  1317. "symfony/event-dispatcher": ">2.5",
  1318. "symfony/yaml": ">2.5"
  1319. },
  1320. "require-dev": {
  1321. "phpunit/phpunit": "~5.1.5"
  1322. },
  1323. "type": "library",
  1324. "autoload": {
  1325. "psr-4": {
  1326. "RocketTheme\\Toolbox\\ArrayTraits\\": "ArrayTraits/src",
  1327. "RocketTheme\\Toolbox\\Blueprints\\": "Blueprints/src",
  1328. "RocketTheme\\Toolbox\\Compat\\": "Compat/src",
  1329. "RocketTheme\\Toolbox\\DI\\": "DI/src",
  1330. "RocketTheme\\Toolbox\\Event\\": "Event/src",
  1331. "RocketTheme\\Toolbox\\File\\": "File/src",
  1332. "RocketTheme\\Toolbox\\ResourceLocator\\": "ResourceLocator/src",
  1333. "RocketTheme\\Toolbox\\Session\\": "Session/src",
  1334. "RocketTheme\\Toolbox\\StreamWrapper\\": "StreamWrapper/src"
  1335. }
  1336. },
  1337. "notification-url": "https://packagist.org/downloads/",
  1338. "license": [
  1339. "MIT"
  1340. ],
  1341. "description": "RocketTheme Toolbox Library",
  1342. "homepage": "http://www.rockettheme.com",
  1343. "keywords": [
  1344. "php",
  1345. "rockettheme"
  1346. ],
  1347. "time": "2018-08-08T18:03:32+00:00"
  1348. },
  1349. {
  1350. "name": "seld/cli-prompt",
  1351. "version": "1.0.3",
  1352. "source": {
  1353. "type": "git",
  1354. "url": "https://github.com/Seldaek/cli-prompt.git",
  1355. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd"
  1356. },
  1357. "dist": {
  1358. "type": "zip",
  1359. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1360. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1361. "shasum": ""
  1362. },
  1363. "require": {
  1364. "php": ">=5.3"
  1365. },
  1366. "type": "library",
  1367. "extra": {
  1368. "branch-alias": {
  1369. "dev-master": "1.x-dev"
  1370. }
  1371. },
  1372. "autoload": {
  1373. "psr-4": {
  1374. "Seld\\CliPrompt\\": "src/"
  1375. }
  1376. },
  1377. "notification-url": "https://packagist.org/downloads/",
  1378. "license": [
  1379. "MIT"
  1380. ],
  1381. "authors": [
  1382. {
  1383. "name": "Jordi Boggiano",
  1384. "email": "j.boggiano@seld.be"
  1385. }
  1386. ],
  1387. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  1388. "keywords": [
  1389. "cli",
  1390. "console",
  1391. "hidden",
  1392. "input",
  1393. "prompt"
  1394. ],
  1395. "time": "2017-03-18T11:32:45+00:00"
  1396. },
  1397. {
  1398. "name": "symfony/console",
  1399. "version": "v3.4.23",
  1400. "source": {
  1401. "type": "git",
  1402. "url": "https://github.com/symfony/console.git",
  1403. "reference": "71ce77f37af0c5ffb9590e43cc4f70e426945c5e"
  1404. },
  1405. "dist": {
  1406. "type": "zip",
  1407. "url": "https://api.github.com/repos/symfony/console/zipball/71ce77f37af0c5ffb9590e43cc4f70e426945c5e",
  1408. "reference": "71ce77f37af0c5ffb9590e43cc4f70e426945c5e",
  1409. "shasum": ""
  1410. },
  1411. "require": {
  1412. "php": "^5.5.9|>=7.0.8",
  1413. "symfony/debug": "~2.8|~3.0|~4.0",
  1414. "symfony/polyfill-mbstring": "~1.0"
  1415. },
  1416. "conflict": {
  1417. "symfony/dependency-injection": "<3.4",
  1418. "symfony/process": "<3.3"
  1419. },
  1420. "provide": {
  1421. "psr/log-implementation": "1.0"
  1422. },
  1423. "require-dev": {
  1424. "psr/log": "~1.0",
  1425. "symfony/config": "~3.3|~4.0",
  1426. "symfony/dependency-injection": "~3.4|~4.0",
  1427. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  1428. "symfony/lock": "~3.4|~4.0",
  1429. "symfony/process": "~3.3|~4.0"
  1430. },
  1431. "suggest": {
  1432. "psr/log": "For using the console logger",
  1433. "symfony/event-dispatcher": "",
  1434. "symfony/lock": "",
  1435. "symfony/process": ""
  1436. },
  1437. "type": "library",
  1438. "extra": {
  1439. "branch-alias": {
  1440. "dev-master": "3.4-dev"
  1441. }
  1442. },
  1443. "autoload": {
  1444. "psr-4": {
  1445. "Symfony\\Component\\Console\\": ""
  1446. },
  1447. "exclude-from-classmap": [
  1448. "/Tests/"
  1449. ]
  1450. },
  1451. "notification-url": "https://packagist.org/downloads/",
  1452. "license": [
  1453. "MIT"
  1454. ],
  1455. "authors": [
  1456. {
  1457. "name": "Fabien Potencier",
  1458. "email": "fabien@symfony.com"
  1459. },
  1460. {
  1461. "name": "Symfony Community",
  1462. "homepage": "https://symfony.com/contributors"
  1463. }
  1464. ],
  1465. "description": "Symfony Console Component",
  1466. "homepage": "https://symfony.com",
  1467. "time": "2019-02-23T15:06:07+00:00"
  1468. },
  1469. {
  1470. "name": "symfony/debug",
  1471. "version": "v3.4.23",
  1472. "source": {
  1473. "type": "git",
  1474. "url": "https://github.com/symfony/debug.git",
  1475. "reference": "8d8a9e877b3fcdc50ddecf8dcea146059753f782"
  1476. },
  1477. "dist": {
  1478. "type": "zip",
  1479. "url": "https://api.github.com/repos/symfony/debug/zipball/8d8a9e877b3fcdc50ddecf8dcea146059753f782",
  1480. "reference": "8d8a9e877b3fcdc50ddecf8dcea146059753f782",
  1481. "shasum": ""
  1482. },
  1483. "require": {
  1484. "php": "^5.5.9|>=7.0.8",
  1485. "psr/log": "~1.0"
  1486. },
  1487. "conflict": {
  1488. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1489. },
  1490. "require-dev": {
  1491. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  1492. },
  1493. "type": "library",
  1494. "extra": {
  1495. "branch-alias": {
  1496. "dev-master": "3.4-dev"
  1497. }
  1498. },
  1499. "autoload": {
  1500. "psr-4": {
  1501. "Symfony\\Component\\Debug\\": ""
  1502. },
  1503. "exclude-from-classmap": [
  1504. "/Tests/"
  1505. ]
  1506. },
  1507. "notification-url": "https://packagist.org/downloads/",
  1508. "license": [
  1509. "MIT"
  1510. ],
  1511. "authors": [
  1512. {
  1513. "name": "Fabien Potencier",
  1514. "email": "fabien@symfony.com"
  1515. },
  1516. {
  1517. "name": "Symfony Community",
  1518. "homepage": "https://symfony.com/contributors"
  1519. }
  1520. ],
  1521. "description": "Symfony Debug Component",
  1522. "homepage": "https://symfony.com",
  1523. "time": "2019-02-24T15:45:11+00:00"
  1524. },
  1525. {
  1526. "name": "symfony/event-dispatcher",
  1527. "version": "v3.4.23",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/symfony/event-dispatcher.git",
  1531. "reference": "ec625e2fff7f584eeb91754821807317b2e79236"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ec625e2fff7f584eeb91754821807317b2e79236",
  1536. "reference": "ec625e2fff7f584eeb91754821807317b2e79236",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "php": "^5.5.9|>=7.0.8"
  1541. },
  1542. "conflict": {
  1543. "symfony/dependency-injection": "<3.3"
  1544. },
  1545. "require-dev": {
  1546. "psr/log": "~1.0",
  1547. "symfony/config": "~2.8|~3.0|~4.0",
  1548. "symfony/dependency-injection": "~3.3|~4.0",
  1549. "symfony/expression-language": "~2.8|~3.0|~4.0",
  1550. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  1551. },
  1552. "suggest": {
  1553. "symfony/dependency-injection": "",
  1554. "symfony/http-kernel": ""
  1555. },
  1556. "type": "library",
  1557. "extra": {
  1558. "branch-alias": {
  1559. "dev-master": "3.4-dev"
  1560. }
  1561. },
  1562. "autoload": {
  1563. "psr-4": {
  1564. "Symfony\\Component\\EventDispatcher\\": ""
  1565. },
  1566. "exclude-from-classmap": [
  1567. "/Tests/"
  1568. ]
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "Fabien Potencier",
  1577. "email": "fabien@symfony.com"
  1578. },
  1579. {
  1580. "name": "Symfony Community",
  1581. "homepage": "https://symfony.com/contributors"
  1582. }
  1583. ],
  1584. "description": "Symfony EventDispatcher Component",
  1585. "homepage": "https://symfony.com",
  1586. "time": "2019-02-23T15:06:07+00:00"
  1587. },
  1588. {
  1589. "name": "symfony/polyfill-ctype",
  1590. "version": "v1.10.0",
  1591. "source": {
  1592. "type": "git",
  1593. "url": "https://github.com/symfony/polyfill-ctype.git",
  1594. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  1595. },
  1596. "dist": {
  1597. "type": "zip",
  1598. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  1599. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  1600. "shasum": ""
  1601. },
  1602. "require": {
  1603. "php": ">=5.3.3"
  1604. },
  1605. "suggest": {
  1606. "ext-ctype": "For best performance"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "1.9-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "Symfony\\Polyfill\\Ctype\\": ""
  1617. },
  1618. "files": [
  1619. "bootstrap.php"
  1620. ]
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Symfony Community",
  1629. "homepage": "https://symfony.com/contributors"
  1630. },
  1631. {
  1632. "name": "Gert de Pagter",
  1633. "email": "backendtea@gmail.com"
  1634. }
  1635. ],
  1636. "description": "Symfony polyfill for ctype functions",
  1637. "homepage": "https://symfony.com",
  1638. "keywords": [
  1639. "compatibility",
  1640. "ctype",
  1641. "polyfill",
  1642. "portable"
  1643. ],
  1644. "time": "2018-08-06T14:22:27+00:00"
  1645. },
  1646. {
  1647. "name": "symfony/polyfill-iconv",
  1648. "version": "v1.10.0",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/symfony/polyfill-iconv.git",
  1652. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  1657. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "php": ">=5.3.3"
  1662. },
  1663. "suggest": {
  1664. "ext-iconv": "For best performance"
  1665. },
  1666. "type": "library",
  1667. "extra": {
  1668. "branch-alias": {
  1669. "dev-master": "1.9-dev"
  1670. }
  1671. },
  1672. "autoload": {
  1673. "psr-4": {
  1674. "Symfony\\Polyfill\\Iconv\\": ""
  1675. },
  1676. "files": [
  1677. "bootstrap.php"
  1678. ]
  1679. },
  1680. "notification-url": "https://packagist.org/downloads/",
  1681. "license": [
  1682. "MIT"
  1683. ],
  1684. "authors": [
  1685. {
  1686. "name": "Nicolas Grekas",
  1687. "email": "p@tchwork.com"
  1688. },
  1689. {
  1690. "name": "Symfony Community",
  1691. "homepage": "https://symfony.com/contributors"
  1692. }
  1693. ],
  1694. "description": "Symfony polyfill for the Iconv extension",
  1695. "homepage": "https://symfony.com",
  1696. "keywords": [
  1697. "compatibility",
  1698. "iconv",
  1699. "polyfill",
  1700. "portable",
  1701. "shim"
  1702. ],
  1703. "time": "2018-09-21T06:26:08+00:00"
  1704. },
  1705. {
  1706. "name": "symfony/polyfill-mbstring",
  1707. "version": "v1.10.0",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1711. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  1716. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "php": ">=5.3.3"
  1721. },
  1722. "suggest": {
  1723. "ext-mbstring": "For best performance"
  1724. },
  1725. "type": "library",
  1726. "extra": {
  1727. "branch-alias": {
  1728. "dev-master": "1.9-dev"
  1729. }
  1730. },
  1731. "autoload": {
  1732. "psr-4": {
  1733. "Symfony\\Polyfill\\Mbstring\\": ""
  1734. },
  1735. "files": [
  1736. "bootstrap.php"
  1737. ]
  1738. },
  1739. "notification-url": "https://packagist.org/downloads/",
  1740. "license": [
  1741. "MIT"
  1742. ],
  1743. "authors": [
  1744. {
  1745. "name": "Nicolas Grekas",
  1746. "email": "p@tchwork.com"
  1747. },
  1748. {
  1749. "name": "Symfony Community",
  1750. "homepage": "https://symfony.com/contributors"
  1751. }
  1752. ],
  1753. "description": "Symfony polyfill for the Mbstring extension",
  1754. "homepage": "https://symfony.com",
  1755. "keywords": [
  1756. "compatibility",
  1757. "mbstring",
  1758. "polyfill",
  1759. "portable",
  1760. "shim"
  1761. ],
  1762. "time": "2018-09-21T13:07:52+00:00"
  1763. },
  1764. {
  1765. "name": "symfony/var-dumper",
  1766. "version": "v3.4.23",
  1767. "source": {
  1768. "type": "git",
  1769. "url": "https://github.com/symfony/var-dumper.git",
  1770. "reference": "d34d10236300876d14291e9df85c6ef3d3bb9066"
  1771. },
  1772. "dist": {
  1773. "type": "zip",
  1774. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d34d10236300876d14291e9df85c6ef3d3bb9066",
  1775. "reference": "d34d10236300876d14291e9df85c6ef3d3bb9066",
  1776. "shasum": ""
  1777. },
  1778. "require": {
  1779. "php": "^5.5.9|>=7.0.8",
  1780. "symfony/polyfill-mbstring": "~1.0"
  1781. },
  1782. "conflict": {
  1783. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  1784. },
  1785. "require-dev": {
  1786. "ext-iconv": "*",
  1787. "twig/twig": "~1.34|~2.4"
  1788. },
  1789. "suggest": {
  1790. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1791. "ext-intl": "To show region name in time zone dump",
  1792. "ext-symfony_debug": ""
  1793. },
  1794. "type": "library",
  1795. "extra": {
  1796. "branch-alias": {
  1797. "dev-master": "3.4-dev"
  1798. }
  1799. },
  1800. "autoload": {
  1801. "files": [
  1802. "Resources/functions/dump.php"
  1803. ],
  1804. "psr-4": {
  1805. "Symfony\\Component\\VarDumper\\": ""
  1806. },
  1807. "exclude-from-classmap": [
  1808. "/Tests/"
  1809. ]
  1810. },
  1811. "notification-url": "https://packagist.org/downloads/",
  1812. "license": [
  1813. "MIT"
  1814. ],
  1815. "authors": [
  1816. {
  1817. "name": "Nicolas Grekas",
  1818. "email": "p@tchwork.com"
  1819. },
  1820. {
  1821. "name": "Symfony Community",
  1822. "homepage": "https://symfony.com/contributors"
  1823. }
  1824. ],
  1825. "description": "Symfony mechanism for exploring and dumping PHP variables",
  1826. "homepage": "https://symfony.com",
  1827. "keywords": [
  1828. "debug",
  1829. "dump"
  1830. ],
  1831. "time": "2019-02-23T15:06:07+00:00"
  1832. },
  1833. {
  1834. "name": "symfony/yaml",
  1835. "version": "v3.4.23",
  1836. "source": {
  1837. "type": "git",
  1838. "url": "https://github.com/symfony/yaml.git",
  1839. "reference": "57f1ce82c997f5a8701b89ef970e36bb657fd09c"
  1840. },
  1841. "dist": {
  1842. "type": "zip",
  1843. "url": "https://api.github.com/repos/symfony/yaml/zipball/57f1ce82c997f5a8701b89ef970e36bb657fd09c",
  1844. "reference": "57f1ce82c997f5a8701b89ef970e36bb657fd09c",
  1845. "shasum": ""
  1846. },
  1847. "require": {
  1848. "php": "^5.5.9|>=7.0.8",
  1849. "symfony/polyfill-ctype": "~1.8"
  1850. },
  1851. "conflict": {
  1852. "symfony/console": "<3.4"
  1853. },
  1854. "require-dev": {
  1855. "symfony/console": "~3.4|~4.0"
  1856. },
  1857. "suggest": {
  1858. "symfony/console": "For validating YAML files using the lint command"
  1859. },
  1860. "type": "library",
  1861. "extra": {
  1862. "branch-alias": {
  1863. "dev-master": "3.4-dev"
  1864. }
  1865. },
  1866. "autoload": {
  1867. "psr-4": {
  1868. "Symfony\\Component\\Yaml\\": ""
  1869. },
  1870. "exclude-from-classmap": [
  1871. "/Tests/"
  1872. ]
  1873. },
  1874. "notification-url": "https://packagist.org/downloads/",
  1875. "license": [
  1876. "MIT"
  1877. ],
  1878. "authors": [
  1879. {
  1880. "name": "Fabien Potencier",
  1881. "email": "fabien@symfony.com"
  1882. },
  1883. {
  1884. "name": "Symfony Community",
  1885. "homepage": "https://symfony.com/contributors"
  1886. }
  1887. ],
  1888. "description": "Symfony Yaml Component",
  1889. "homepage": "https://symfony.com",
  1890. "time": "2019-02-23T15:06:07+00:00"
  1891. },
  1892. {
  1893. "name": "twig/twig",
  1894. "version": "v1.38.2",
  1895. "source": {
  1896. "type": "git",
  1897. "url": "https://github.com/twigphp/Twig.git",
  1898. "reference": "874adbd9222f928f6998732b25b01b41dff15b0c"
  1899. },
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://api.github.com/repos/twigphp/Twig/zipball/874adbd9222f928f6998732b25b01b41dff15b0c",
  1903. "reference": "874adbd9222f928f6998732b25b01b41dff15b0c",
  1904. "shasum": ""
  1905. },
  1906. "require": {
  1907. "php": ">=5.4.0",
  1908. "symfony/polyfill-ctype": "^1.8"
  1909. },
  1910. "require-dev": {
  1911. "psr/container": "^1.0",
  1912. "symfony/debug": "^2.7",
  1913. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  1914. },
  1915. "type": "library",
  1916. "extra": {
  1917. "branch-alias": {
  1918. "dev-master": "1.38-dev"
  1919. }
  1920. },
  1921. "autoload": {
  1922. "psr-0": {
  1923. "Twig_": "lib/"
  1924. },
  1925. "psr-4": {
  1926. "Twig\\": "src/"
  1927. }
  1928. },
  1929. "notification-url": "https://packagist.org/downloads/",
  1930. "license": [
  1931. "BSD-3-Clause"
  1932. ],
  1933. "authors": [
  1934. {
  1935. "name": "Fabien Potencier",
  1936. "email": "fabien@symfony.com",
  1937. "homepage": "http://fabien.potencier.org",
  1938. "role": "Lead Developer"
  1939. },
  1940. {
  1941. "name": "Armin Ronacher",
  1942. "email": "armin.ronacher@active-4.com",
  1943. "role": "Project Founder"
  1944. },
  1945. {
  1946. "name": "Twig Team",
  1947. "homepage": "https://twig.symfony.com/contributors",
  1948. "role": "Contributors"
  1949. }
  1950. ],
  1951. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1952. "homepage": "https://twig.symfony.com",
  1953. "keywords": [
  1954. "templating"
  1955. ],
  1956. "time": "2019-03-12T18:45:24+00:00"
  1957. }
  1958. ],
  1959. "packages-dev": [
  1960. {
  1961. "name": "behat/gherkin",
  1962. "version": "v4.6.0",
  1963. "source": {
  1964. "type": "git",
  1965. "url": "https://github.com/Behat/Gherkin.git",
  1966. "reference": "ab0a02ea14893860bca00f225f5621d351a3ad07"
  1967. },
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/ab0a02ea14893860bca00f225f5621d351a3ad07",
  1971. "reference": "ab0a02ea14893860bca00f225f5621d351a3ad07",
  1972. "shasum": ""
  1973. },
  1974. "require": {
  1975. "php": ">=5.3.1"
  1976. },
  1977. "require-dev": {
  1978. "phpunit/phpunit": "~4.5|~5",
  1979. "symfony/phpunit-bridge": "~2.7|~3|~4",
  1980. "symfony/yaml": "~2.3|~3|~4"
  1981. },
  1982. "suggest": {
  1983. "symfony/yaml": "If you want to parse features, represented in YAML files"
  1984. },
  1985. "type": "library",
  1986. "extra": {
  1987. "branch-alias": {
  1988. "dev-master": "4.4-dev"
  1989. }
  1990. },
  1991. "autoload": {
  1992. "psr-0": {
  1993. "Behat\\Gherkin": "src/"
  1994. }
  1995. },
  1996. "notification-url": "https://packagist.org/downloads/",
  1997. "license": [
  1998. "MIT"
  1999. ],
  2000. "authors": [
  2001. {
  2002. "name": "Konstantin Kudryashov",
  2003. "email": "ever.zet@gmail.com",
  2004. "homepage": "http://everzet.com"
  2005. }
  2006. ],
  2007. "description": "Gherkin DSL parser for PHP 5.3",
  2008. "homepage": "http://behat.org/",
  2009. "keywords": [
  2010. "BDD",
  2011. "Behat",
  2012. "Cucumber",
  2013. "DSL",
  2014. "gherkin",
  2015. "parser"
  2016. ],
  2017. "time": "2019-01-16T14:22:17+00:00"
  2018. },
  2019. {
  2020. "name": "codeception/codeception",
  2021. "version": "2.5.4",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/Codeception/Codeception.git",
  2025. "reference": "a2ecfe2f3ad36cc29904d2d566b0d7280854e6c9"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/a2ecfe2f3ad36cc29904d2d566b0d7280854e6c9",
  2030. "reference": "a2ecfe2f3ad36cc29904d2d566b0d7280854e6c9",
  2031. "shasum": ""
  2032. },
  2033. "require": {
  2034. "behat/gherkin": "^4.4.0",
  2035. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  2036. "codeception/stub": "^2.0",
  2037. "ext-curl": "*",
  2038. "ext-json": "*",
  2039. "ext-mbstring": "*",
  2040. "facebook/webdriver": ">=1.1.3 <2.0",
  2041. "guzzlehttp/guzzle": ">=4.1.4 <7.0",
  2042. "guzzlehttp/psr7": "~1.0",
  2043. "php": ">=5.6.0 <8.0",
  2044. "symfony/browser-kit": ">=2.7 <5.0",
  2045. "symfony/console": ">=2.7 <5.0",
  2046. "symfony/css-selector": ">=2.7 <5.0",
  2047. "symfony/dom-crawler": ">=2.7 <5.0",
  2048. "symfony/event-dispatcher": ">=2.7 <5.0",
  2049. "symfony/finder": ">=2.7 <5.0",
  2050. "symfony/yaml": ">=2.7 <5.0"
  2051. },
  2052. "require-dev": {
  2053. "codeception/specify": "~0.3",
  2054. "facebook/graph-sdk": "~5.3",
  2055. "flow/jsonpath": "~0.2",
  2056. "monolog/monolog": "~1.8",
  2057. "pda/pheanstalk": "~3.0",
  2058. "php-amqplib/php-amqplib": "~2.4",
  2059. "predis/predis": "^1.0",
  2060. "squizlabs/php_codesniffer": "~2.0",
  2061. "symfony/process": ">=2.7 <5.0",
  2062. "vlucas/phpdotenv": "^3.0"
  2063. },
  2064. "suggest": {
  2065. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  2066. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  2067. "codeception/specify": "BDD-style code blocks",
  2068. "codeception/verify": "BDD-style assertions",
  2069. "flow/jsonpath": "For using JSONPath in REST module",
  2070. "league/factory-muffin": "For DataFactory module",
  2071. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  2072. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  2073. "stecman/symfony-console-completion": "For BASH autocompletion",
  2074. "symfony/phpunit-bridge": "For phpunit-bridge support"
  2075. },
  2076. "bin": [
  2077. "codecept"
  2078. ],
  2079. "type": "library",
  2080. "extra": {
  2081. "branch-alias": []
  2082. },
  2083. "autoload": {
  2084. "psr-4": {
  2085. "Codeception\\": "src/Codeception",
  2086. "Codeception\\Extension\\": "ext"
  2087. }
  2088. },
  2089. "notification-url": "https://packagist.org/downloads/",
  2090. "license": [
  2091. "MIT"
  2092. ],
  2093. "authors": [
  2094. {
  2095. "name": "Michael Bodnarchuk",
  2096. "email": "davert@mail.ua",
  2097. "homepage": "http://codegyre.com"
  2098. }
  2099. ],
  2100. "description": "BDD-style testing framework",
  2101. "homepage": "http://codeception.com/",
  2102. "keywords": [
  2103. "BDD",
  2104. "TDD",
  2105. "acceptance testing",
  2106. "functional testing",
  2107. "unit testing"
  2108. ],
  2109. "time": "2019-02-20T20:45:25+00:00"
  2110. },
  2111. {
  2112. "name": "codeception/phpunit-wrapper",
  2113. "version": "6.0.10",
  2114. "source": {
  2115. "type": "git",
  2116. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  2117. "reference": "7057e599d97b02b4efb009681a43b327dbce138a"
  2118. },
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7057e599d97b02b4efb009681a43b327dbce138a",
  2122. "reference": "7057e599d97b02b4efb009681a43b327dbce138a",
  2123. "shasum": ""
  2124. },
  2125. "require": {
  2126. "phpunit/php-code-coverage": ">=2.2.4 <6.0",
  2127. "phpunit/phpunit": ">=4.8.28 <5.0.0 || >=5.6.3 <7.0",
  2128. "sebastian/comparator": ">1.1 <3.0",
  2129. "sebastian/diff": ">=1.4 <4.0"
  2130. },
  2131. "replace": {
  2132. "codeception/phpunit-wrapper": "*"
  2133. },
  2134. "require-dev": {
  2135. "codeception/specify": "*",
  2136. "vlucas/phpdotenv": "^2.4"
  2137. },
  2138. "type": "library",
  2139. "autoload": {
  2140. "psr-4": {
  2141. "Codeception\\PHPUnit\\": "src\\"
  2142. }
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "MIT"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "Davert",
  2151. "email": "davert.php@resend.cc"
  2152. }
  2153. ],
  2154. "description": "PHPUnit classes used by Codeception",
  2155. "time": "2018-06-20T20:08:14+00:00"
  2156. },
  2157. {
  2158. "name": "codeception/stub",
  2159. "version": "2.0.4",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/Codeception/Stub.git",
  2163. "reference": "f50bc271f392a2836ff80690ce0c058efe1ae03e"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://api.github.com/repos/Codeception/Stub/zipball/f50bc271f392a2836ff80690ce0c058efe1ae03e",
  2168. "reference": "f50bc271f392a2836ff80690ce0c058efe1ae03e",
  2169. "shasum": ""
  2170. },
  2171. "require": {
  2172. "phpunit/phpunit": ">=4.8 <8.0"
  2173. },
  2174. "type": "library",
  2175. "autoload": {
  2176. "psr-4": {
  2177. "Codeception\\": "src/"
  2178. }
  2179. },
  2180. "notification-url": "https://packagist.org/downloads/",
  2181. "license": [
  2182. "MIT"
  2183. ],
  2184. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  2185. "time": "2018-07-26T11:55:37+00:00"
  2186. },
  2187. {
  2188. "name": "doctrine/instantiator",
  2189. "version": "1.0.5",
  2190. "source": {
  2191. "type": "git",
  2192. "url": "https://github.com/doctrine/instantiator.git",
  2193. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2194. },
  2195. "dist": {
  2196. "type": "zip",
  2197. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  2198. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2199. "shasum": ""
  2200. },
  2201. "require": {
  2202. "php": ">=5.3,<8.0-DEV"
  2203. },
  2204. "require-dev": {
  2205. "athletic/athletic": "~0.1.8",
  2206. "ext-pdo": "*",
  2207. "ext-phar": "*",
  2208. "phpunit/phpunit": "~4.0",
  2209. "squizlabs/php_codesniffer": "~2.0"
  2210. },
  2211. "type": "library",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-master": "1.0.x-dev"
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "Marco Pivetta",
  2229. "email": "ocramius@gmail.com",
  2230. "homepage": "http://ocramius.github.com/"
  2231. }
  2232. ],
  2233. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2234. "homepage": "https://github.com/doctrine/instantiator",
  2235. "keywords": [
  2236. "constructor",
  2237. "instantiate"
  2238. ],
  2239. "time": "2015-06-14T21:17:01+00:00"
  2240. },
  2241. {
  2242. "name": "facebook/webdriver",
  2243. "version": "1.6.0",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/facebook/php-webdriver.git",
  2247. "reference": "bd8c740097eb9f2fc3735250fc1912bc811a954e"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/bd8c740097eb9f2fc3735250fc1912bc811a954e",
  2252. "reference": "bd8c740097eb9f2fc3735250fc1912bc811a954e",
  2253. "shasum": ""
  2254. },
  2255. "require": {
  2256. "ext-curl": "*",
  2257. "ext-json": "*",
  2258. "ext-mbstring": "*",
  2259. "ext-zip": "*",
  2260. "php": "^5.6 || ~7.0",
  2261. "symfony/process": "^2.8 || ^3.1 || ^4.0"
  2262. },
  2263. "require-dev": {
  2264. "friendsofphp/php-cs-fixer": "^2.0",
  2265. "jakub-onderka/php-parallel-lint": "^0.9.2",
  2266. "php-coveralls/php-coveralls": "^2.0",
  2267. "php-mock/php-mock-phpunit": "^1.1",
  2268. "phpunit/phpunit": "^5.7",
  2269. "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0",
  2270. "squizlabs/php_codesniffer": "^2.6",
  2271. "symfony/var-dumper": "^3.3 || ^4.0"
  2272. },
  2273. "suggest": {
  2274. "ext-SimpleXML": "For Firefox profile creation"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-community": "1.5-dev"
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Facebook\\WebDriver\\": "lib/"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "Apache-2.0"
  2290. ],
  2291. "description": "A PHP client for Selenium WebDriver",
  2292. "homepage": "https://github.com/facebook/php-webdriver",
  2293. "keywords": [
  2294. "facebook",
  2295. "php",
  2296. "selenium",
  2297. "webdriver"
  2298. ],
  2299. "time": "2018-05-16T17:37:13+00:00"
  2300. },
  2301. {
  2302. "name": "fzaninotto/faker",
  2303. "version": "v1.8.0",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/fzaninotto/Faker.git",
  2307. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  2312. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  2313. "shasum": ""
  2314. },
  2315. "require": {
  2316. "php": "^5.3.3 || ^7.0"
  2317. },
  2318. "require-dev": {
  2319. "ext-intl": "*",
  2320. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2321. "squizlabs/php_codesniffer": "^1.5"
  2322. },
  2323. "type": "library",
  2324. "extra": {
  2325. "branch-alias": {
  2326. "dev-master": "1.8-dev"
  2327. }
  2328. },
  2329. "autoload": {
  2330. "psr-4": {
  2331. "Faker\\": "src/Faker/"
  2332. }
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "François Zaninotto"
  2341. }
  2342. ],
  2343. "description": "Faker is a PHP library that generates fake data for you.",
  2344. "keywords": [
  2345. "data",
  2346. "faker",
  2347. "fixtures"
  2348. ],
  2349. "time": "2018-07-12T10:23:15+00:00"
  2350. },
  2351. {
  2352. "name": "guzzlehttp/guzzle",
  2353. "version": "6.3.3",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/guzzle/guzzle.git",
  2357. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  2362. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  2363. "shasum": ""
  2364. },
  2365. "require": {
  2366. "guzzlehttp/promises": "^1.0",
  2367. "guzzlehttp/psr7": "^1.4",
  2368. "php": ">=5.5"
  2369. },
  2370. "require-dev": {
  2371. "ext-curl": "*",
  2372. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  2373. "psr/log": "^1.0"
  2374. },
  2375. "suggest": {
  2376. "psr/log": "Required for using the Log middleware"
  2377. },
  2378. "type": "library",
  2379. "extra": {
  2380. "branch-alias": {
  2381. "dev-master": "6.3-dev"
  2382. }
  2383. },
  2384. "autoload": {
  2385. "files": [
  2386. "src/functions_include.php"
  2387. ],
  2388. "psr-4": {
  2389. "GuzzleHttp\\": "src/"
  2390. }
  2391. },
  2392. "notification-url": "https://packagist.org/downloads/",
  2393. "license": [
  2394. "MIT"
  2395. ],
  2396. "authors": [
  2397. {
  2398. "name": "Michael Dowling",
  2399. "email": "mtdowling@gmail.com",
  2400. "homepage": "https://github.com/mtdowling"
  2401. }
  2402. ],
  2403. "description": "Guzzle is a PHP HTTP client library",
  2404. "homepage": "http://guzzlephp.org/",
  2405. "keywords": [
  2406. "client",
  2407. "curl",
  2408. "framework",
  2409. "http",
  2410. "http client",
  2411. "rest",
  2412. "web service"
  2413. ],
  2414. "time": "2018-04-22T15:46:56+00:00"
  2415. },
  2416. {
  2417. "name": "guzzlehttp/promises",
  2418. "version": "v1.3.1",
  2419. "source": {
  2420. "type": "git",
  2421. "url": "https://github.com/guzzle/promises.git",
  2422. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  2423. },
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2427. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2428. "shasum": ""
  2429. },
  2430. "require": {
  2431. "php": ">=5.5.0"
  2432. },
  2433. "require-dev": {
  2434. "phpunit/phpunit": "^4.0"
  2435. },
  2436. "type": "library",
  2437. "extra": {
  2438. "branch-alias": {
  2439. "dev-master": "1.4-dev"
  2440. }
  2441. },
  2442. "autoload": {
  2443. "psr-4": {
  2444. "GuzzleHttp\\Promise\\": "src/"
  2445. },
  2446. "files": [
  2447. "src/functions_include.php"
  2448. ]
  2449. },
  2450. "notification-url": "https://packagist.org/downloads/",
  2451. "license": [
  2452. "MIT"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "Michael Dowling",
  2457. "email": "mtdowling@gmail.com",
  2458. "homepage": "https://github.com/mtdowling"
  2459. }
  2460. ],
  2461. "description": "Guzzle promises library",
  2462. "keywords": [
  2463. "promise"
  2464. ],
  2465. "time": "2016-12-20T10:07:11+00:00"
  2466. },
  2467. {
  2468. "name": "phpdocumentor/reflection-common",
  2469. "version": "1.0.1",
  2470. "source": {
  2471. "type": "git",
  2472. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2473. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  2474. },
  2475. "dist": {
  2476. "type": "zip",
  2477. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2478. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2479. "shasum": ""
  2480. },
  2481. "require": {
  2482. "php": ">=5.5"
  2483. },
  2484. "require-dev": {
  2485. "phpunit/phpunit": "^4.6"
  2486. },
  2487. "type": "library",
  2488. "extra": {
  2489. "branch-alias": {
  2490. "dev-master": "1.0.x-dev"
  2491. }
  2492. },
  2493. "autoload": {
  2494. "psr-4": {
  2495. "phpDocumentor\\Reflection\\": [
  2496. "src"
  2497. ]
  2498. }
  2499. },
  2500. "notification-url": "https://packagist.org/downloads/",
  2501. "license": [
  2502. "MIT"
  2503. ],
  2504. "authors": [
  2505. {
  2506. "name": "Jaap van Otterdijk",
  2507. "email": "opensource@ijaap.nl"
  2508. }
  2509. ],
  2510. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2511. "homepage": "http://www.phpdoc.org",
  2512. "keywords": [
  2513. "FQSEN",
  2514. "phpDocumentor",
  2515. "phpdoc",
  2516. "reflection",
  2517. "static analysis"
  2518. ],
  2519. "time": "2017-09-11T18:02:19+00:00"
  2520. },
  2521. {
  2522. "name": "phpdocumentor/reflection-docblock",
  2523. "version": "3.3.2",
  2524. "source": {
  2525. "type": "git",
  2526. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2527. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
  2528. },
  2529. "dist": {
  2530. "type": "zip",
  2531. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
  2532. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
  2533. "shasum": ""
  2534. },
  2535. "require": {
  2536. "php": "^5.6 || ^7.0",
  2537. "phpdocumentor/reflection-common": "^1.0.0",
  2538. "phpdocumentor/type-resolver": "^0.4.0",
  2539. "webmozart/assert": "^1.0"
  2540. },
  2541. "require-dev": {
  2542. "mockery/mockery": "^0.9.4",
  2543. "phpunit/phpunit": "^4.4"
  2544. },
  2545. "type": "library",
  2546. "autoload": {
  2547. "psr-4": {
  2548. "phpDocumentor\\Reflection\\": [
  2549. "src/"
  2550. ]
  2551. }
  2552. },
  2553. "notification-url": "https://packagist.org/downloads/",
  2554. "license": [
  2555. "MIT"
  2556. ],
  2557. "authors": [
  2558. {
  2559. "name": "Mike van Riel",
  2560. "email": "me@mikevanriel.com"
  2561. }
  2562. ],
  2563. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2564. "time": "2017-11-10T14:09:06+00:00"
  2565. },
  2566. {
  2567. "name": "phpdocumentor/type-resolver",
  2568. "version": "0.4.0",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2572. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  2577. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "php": "^5.5 || ^7.0",
  2582. "phpdocumentor/reflection-common": "^1.0"
  2583. },
  2584. "require-dev": {
  2585. "mockery/mockery": "^0.9.4",
  2586. "phpunit/phpunit": "^5.2||^4.8.24"
  2587. },
  2588. "type": "library",
  2589. "extra": {
  2590. "branch-alias": {
  2591. "dev-master": "1.0.x-dev"
  2592. }
  2593. },
  2594. "autoload": {
  2595. "psr-4": {
  2596. "phpDocumentor\\Reflection\\": [
  2597. "src/"
  2598. ]
  2599. }
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "MIT"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "Mike van Riel",
  2608. "email": "me@mikevanriel.com"
  2609. }
  2610. ],
  2611. "time": "2017-07-14T14:27:02+00:00"
  2612. },
  2613. {
  2614. "name": "phpspec/prophecy",
  2615. "version": "1.8.0",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/phpspec/prophecy.git",
  2619. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  2624. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "doctrine/instantiator": "^1.0.2",
  2629. "php": "^5.3|^7.0",
  2630. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  2631. "sebastian/comparator": "^1.1|^2.0|^3.0",
  2632. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  2633. },
  2634. "require-dev": {
  2635. "phpspec/phpspec": "^2.5|^3.2",
  2636. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  2637. },
  2638. "type": "library",
  2639. "extra": {
  2640. "branch-alias": {
  2641. "dev-master": "1.8.x-dev"
  2642. }
  2643. },
  2644. "autoload": {
  2645. "psr-0": {
  2646. "Prophecy\\": "src/"
  2647. }
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Konstantin Kudryashov",
  2656. "email": "ever.zet@gmail.com",
  2657. "homepage": "http://everzet.com"
  2658. },
  2659. {
  2660. "name": "Marcello Duarte",
  2661. "email": "marcello.duarte@gmail.com"
  2662. }
  2663. ],
  2664. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2665. "homepage": "https://github.com/phpspec/prophecy",
  2666. "keywords": [
  2667. "Double",
  2668. "Dummy",
  2669. "fake",
  2670. "mock",
  2671. "spy",
  2672. "stub"
  2673. ],
  2674. "time": "2018-08-05T17:53:17+00:00"
  2675. },
  2676. {
  2677. "name": "phpunit/php-code-coverage",
  2678. "version": "2.2.4",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2682. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2687. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "php": ">=5.3.3",
  2692. "phpunit/php-file-iterator": "~1.3",
  2693. "phpunit/php-text-template": "~1.2",
  2694. "phpunit/php-token-stream": "~1.3",
  2695. "sebastian/environment": "^1.3.2",
  2696. "sebastian/version": "~1.0"
  2697. },
  2698. "require-dev": {
  2699. "ext-xdebug": ">=2.1.4",
  2700. "phpunit/phpunit": "~4"
  2701. },
  2702. "suggest": {
  2703. "ext-dom": "*",
  2704. "ext-xdebug": ">=2.2.1",
  2705. "ext-xmlwriter": "*"
  2706. },
  2707. "type": "library",
  2708. "extra": {
  2709. "branch-alias": {
  2710. "dev-master": "2.2.x-dev"
  2711. }
  2712. },
  2713. "autoload": {
  2714. "classmap": [
  2715. "src/"
  2716. ]
  2717. },
  2718. "notification-url": "https://packagist.org/downloads/",
  2719. "license": [
  2720. "BSD-3-Clause"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "Sebastian Bergmann",
  2725. "email": "sb@sebastian-bergmann.de",
  2726. "role": "lead"
  2727. }
  2728. ],
  2729. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2730. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2731. "keywords": [
  2732. "coverage",
  2733. "testing",
  2734. "xunit"
  2735. ],
  2736. "time": "2015-10-06T15:47:00+00:00"
  2737. },
  2738. {
  2739. "name": "phpunit/php-file-iterator",
  2740. "version": "1.4.5",
  2741. "source": {
  2742. "type": "git",
  2743. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2744. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  2745. },
  2746. "dist": {
  2747. "type": "zip",
  2748. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  2749. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  2750. "shasum": ""
  2751. },
  2752. "require": {
  2753. "php": ">=5.3.3"
  2754. },
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-master": "1.4.x-dev"
  2759. }
  2760. },
  2761. "autoload": {
  2762. "classmap": [
  2763. "src/"
  2764. ]
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "BSD-3-Clause"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Sebastian Bergmann",
  2773. "email": "sb@sebastian-bergmann.de",
  2774. "role": "lead"
  2775. }
  2776. ],
  2777. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2778. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2779. "keywords": [
  2780. "filesystem",
  2781. "iterator"
  2782. ],
  2783. "time": "2017-11-27T13:52:08+00:00"
  2784. },
  2785. {
  2786. "name": "phpunit/php-text-template",
  2787. "version": "1.2.1",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2791. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2796. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2797. "shasum": ""
  2798. },
  2799. "require": {
  2800. "php": ">=5.3.3"
  2801. },
  2802. "type": "library",
  2803. "autoload": {
  2804. "classmap": [
  2805. "src/"
  2806. ]
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "BSD-3-Clause"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "Sebastian Bergmann",
  2815. "email": "sebastian@phpunit.de",
  2816. "role": "lead"
  2817. }
  2818. ],
  2819. "description": "Simple template engine.",
  2820. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2821. "keywords": [
  2822. "template"
  2823. ],
  2824. "time": "2015-06-21T13:50:34+00:00"
  2825. },
  2826. {
  2827. "name": "phpunit/php-timer",
  2828. "version": "1.0.9",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2832. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2837. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "php": "^5.3.3 || ^7.0"
  2842. },
  2843. "require-dev": {
  2844. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2845. },
  2846. "type": "library",
  2847. "extra": {
  2848. "branch-alias": {
  2849. "dev-master": "1.0-dev"
  2850. }
  2851. },
  2852. "autoload": {
  2853. "classmap": [
  2854. "src/"
  2855. ]
  2856. },
  2857. "notification-url": "https://packagist.org/downloads/",
  2858. "license": [
  2859. "BSD-3-Clause"
  2860. ],
  2861. "authors": [
  2862. {
  2863. "name": "Sebastian Bergmann",
  2864. "email": "sb@sebastian-bergmann.de",
  2865. "role": "lead"
  2866. }
  2867. ],
  2868. "description": "Utility class for timing",
  2869. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2870. "keywords": [
  2871. "timer"
  2872. ],
  2873. "time": "2017-02-26T11:10:40+00:00"
  2874. },
  2875. {
  2876. "name": "phpunit/php-token-stream",
  2877. "version": "1.4.12",
  2878. "source": {
  2879. "type": "git",
  2880. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2881. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  2882. },
  2883. "dist": {
  2884. "type": "zip",
  2885. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  2886. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  2887. "shasum": ""
  2888. },
  2889. "require": {
  2890. "ext-tokenizer": "*",
  2891. "php": ">=5.3.3"
  2892. },
  2893. "require-dev": {
  2894. "phpunit/phpunit": "~4.2"
  2895. },
  2896. "type": "library",
  2897. "extra": {
  2898. "branch-alias": {
  2899. "dev-master": "1.4-dev"
  2900. }
  2901. },
  2902. "autoload": {
  2903. "classmap": [
  2904. "src/"
  2905. ]
  2906. },
  2907. "notification-url": "https://packagist.org/downloads/",
  2908. "license": [
  2909. "BSD-3-Clause"
  2910. ],
  2911. "authors": [
  2912. {
  2913. "name": "Sebastian Bergmann",
  2914. "email": "sebastian@phpunit.de"
  2915. }
  2916. ],
  2917. "description": "Wrapper around PHP's tokenizer extension.",
  2918. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2919. "keywords": [
  2920. "tokenizer"
  2921. ],
  2922. "time": "2017-12-04T08:55:13+00:00"
  2923. },
  2924. {
  2925. "name": "phpunit/phpunit",
  2926. "version": "4.8.36",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2930. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  2935. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  2936. "shasum": ""
  2937. },
  2938. "require": {
  2939. "ext-dom": "*",
  2940. "ext-json": "*",
  2941. "ext-pcre": "*",
  2942. "ext-reflection": "*",
  2943. "ext-spl": "*",
  2944. "php": ">=5.3.3",
  2945. "phpspec/prophecy": "^1.3.1",
  2946. "phpunit/php-code-coverage": "~2.1",
  2947. "phpunit/php-file-iterator": "~1.4",
  2948. "phpunit/php-text-template": "~1.2",
  2949. "phpunit/php-timer": "^1.0.6",
  2950. "phpunit/phpunit-mock-objects": "~2.3",
  2951. "sebastian/comparator": "~1.2.2",
  2952. "sebastian/diff": "~1.2",
  2953. "sebastian/environment": "~1.3",
  2954. "sebastian/exporter": "~1.2",
  2955. "sebastian/global-state": "~1.0",
  2956. "sebastian/version": "~1.0",
  2957. "symfony/yaml": "~2.1|~3.0"
  2958. },
  2959. "suggest": {
  2960. "phpunit/php-invoker": "~1.1"
  2961. },
  2962. "bin": [
  2963. "phpunit"
  2964. ],
  2965. "type": "library",
  2966. "extra": {
  2967. "branch-alias": {
  2968. "dev-master": "4.8.x-dev"
  2969. }
  2970. },
  2971. "autoload": {
  2972. "classmap": [
  2973. "src/"
  2974. ]
  2975. },
  2976. "notification-url": "https://packagist.org/downloads/",
  2977. "license": [
  2978. "BSD-3-Clause"
  2979. ],
  2980. "authors": [
  2981. {
  2982. "name": "Sebastian Bergmann",
  2983. "email": "sebastian@phpunit.de",
  2984. "role": "lead"
  2985. }
  2986. ],
  2987. "description": "The PHP Unit Testing framework.",
  2988. "homepage": "https://phpunit.de/",
  2989. "keywords": [
  2990. "phpunit",
  2991. "testing",
  2992. "xunit"
  2993. ],
  2994. "time": "2017-06-21T08:07:12+00:00"
  2995. },
  2996. {
  2997. "name": "phpunit/phpunit-mock-objects",
  2998. "version": "2.3.8",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3002. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  3007. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  3008. "shasum": ""
  3009. },
  3010. "require": {
  3011. "doctrine/instantiator": "^1.0.2",
  3012. "php": ">=5.3.3",
  3013. "phpunit/php-text-template": "~1.2",
  3014. "sebastian/exporter": "~1.2"
  3015. },
  3016. "require-dev": {
  3017. "phpunit/phpunit": "~4.4"
  3018. },
  3019. "suggest": {
  3020. "ext-soap": "*"
  3021. },
  3022. "type": "library",
  3023. "extra": {
  3024. "branch-alias": {
  3025. "dev-master": "2.3.x-dev"
  3026. }
  3027. },
  3028. "autoload": {
  3029. "classmap": [
  3030. "src/"
  3031. ]
  3032. },
  3033. "notification-url": "https://packagist.org/downloads/",
  3034. "license": [
  3035. "BSD-3-Clause"
  3036. ],
  3037. "authors": [
  3038. {
  3039. "name": "Sebastian Bergmann",
  3040. "email": "sb@sebastian-bergmann.de",
  3041. "role": "lead"
  3042. }
  3043. ],
  3044. "description": "Mock Object library for PHPUnit",
  3045. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3046. "keywords": [
  3047. "mock",
  3048. "xunit"
  3049. ],
  3050. "abandoned": true,
  3051. "time": "2015-10-02T06:51:40+00:00"
  3052. },
  3053. {
  3054. "name": "sebastian/comparator",
  3055. "version": "1.2.4",
  3056. "source": {
  3057. "type": "git",
  3058. "url": "https://github.com/sebastianbergmann/comparator.git",
  3059. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  3060. },
  3061. "dist": {
  3062. "type": "zip",
  3063. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  3064. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  3065. "shasum": ""
  3066. },
  3067. "require": {
  3068. "php": ">=5.3.3",
  3069. "sebastian/diff": "~1.2",
  3070. "sebastian/exporter": "~1.2 || ~2.0"
  3071. },
  3072. "require-dev": {
  3073. "phpunit/phpunit": "~4.4"
  3074. },
  3075. "type": "library",
  3076. "extra": {
  3077. "branch-alias": {
  3078. "dev-master": "1.2.x-dev"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "classmap": [
  3083. "src/"
  3084. ]
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "BSD-3-Clause"
  3089. ],
  3090. "authors": [
  3091. {
  3092. "name": "Jeff Welch",
  3093. "email": "whatthejeff@gmail.com"
  3094. },
  3095. {
  3096. "name": "Volker Dusch",
  3097. "email": "github@wallbash.com"
  3098. },
  3099. {
  3100. "name": "Bernhard Schussek",
  3101. "email": "bschussek@2bepublished.at"
  3102. },
  3103. {
  3104. "name": "Sebastian Bergmann",
  3105. "email": "sebastian@phpunit.de"
  3106. }
  3107. ],
  3108. "description": "Provides the functionality to compare PHP values for equality",
  3109. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  3110. "keywords": [
  3111. "comparator",
  3112. "compare",
  3113. "equality"
  3114. ],
  3115. "time": "2017-01-29T09:50:25+00:00"
  3116. },
  3117. {
  3118. "name": "sebastian/diff",
  3119. "version": "1.4.3",
  3120. "source": {
  3121. "type": "git",
  3122. "url": "https://github.com/sebastianbergmann/diff.git",
  3123. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  3124. },
  3125. "dist": {
  3126. "type": "zip",
  3127. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  3128. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  3129. "shasum": ""
  3130. },
  3131. "require": {
  3132. "php": "^5.3.3 || ^7.0"
  3133. },
  3134. "require-dev": {
  3135. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3136. },
  3137. "type": "library",
  3138. "extra": {
  3139. "branch-alias": {
  3140. "dev-master": "1.4-dev"
  3141. }
  3142. },
  3143. "autoload": {
  3144. "classmap": [
  3145. "src/"
  3146. ]
  3147. },
  3148. "notification-url": "https://packagist.org/downloads/",
  3149. "license": [
  3150. "BSD-3-Clause"
  3151. ],
  3152. "authors": [
  3153. {
  3154. "name": "Kore Nordmann",
  3155. "email": "mail@kore-nordmann.de"
  3156. },
  3157. {
  3158. "name": "Sebastian Bergmann",
  3159. "email": "sebastian@phpunit.de"
  3160. }
  3161. ],
  3162. "description": "Diff implementation",
  3163. "homepage": "https://github.com/sebastianbergmann/diff",
  3164. "keywords": [
  3165. "diff"
  3166. ],
  3167. "time": "2017-05-22T07:24:03+00:00"
  3168. },
  3169. {
  3170. "name": "sebastian/environment",
  3171. "version": "1.3.8",
  3172. "source": {
  3173. "type": "git",
  3174. "url": "https://github.com/sebastianbergmann/environment.git",
  3175. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  3176. },
  3177. "dist": {
  3178. "type": "zip",
  3179. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  3180. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  3181. "shasum": ""
  3182. },
  3183. "require": {
  3184. "php": "^5.3.3 || ^7.0"
  3185. },
  3186. "require-dev": {
  3187. "phpunit/phpunit": "^4.8 || ^5.0"
  3188. },
  3189. "type": "library",
  3190. "extra": {
  3191. "branch-alias": {
  3192. "dev-master": "1.3.x-dev"
  3193. }
  3194. },
  3195. "autoload": {
  3196. "classmap": [
  3197. "src/"
  3198. ]
  3199. },
  3200. "notification-url": "https://packagist.org/downloads/",
  3201. "license": [
  3202. "BSD-3-Clause"
  3203. ],
  3204. "authors": [
  3205. {
  3206. "name": "Sebastian Bergmann",
  3207. "email": "sebastian@phpunit.de"
  3208. }
  3209. ],
  3210. "description": "Provides functionality to handle HHVM/PHP environments",
  3211. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3212. "keywords": [
  3213. "Xdebug",
  3214. "environment",
  3215. "hhvm"
  3216. ],
  3217. "time": "2016-08-18T05:49:44+00:00"
  3218. },
  3219. {
  3220. "name": "sebastian/exporter",
  3221. "version": "1.2.2",
  3222. "source": {
  3223. "type": "git",
  3224. "url": "https://github.com/sebastianbergmann/exporter.git",
  3225. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  3226. },
  3227. "dist": {
  3228. "type": "zip",
  3229. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  3230. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  3231. "shasum": ""
  3232. },
  3233. "require": {
  3234. "php": ">=5.3.3",
  3235. "sebastian/recursion-context": "~1.0"
  3236. },
  3237. "require-dev": {
  3238. "ext-mbstring": "*",
  3239. "phpunit/phpunit": "~4.4"
  3240. },
  3241. "type": "library",
  3242. "extra": {
  3243. "branch-alias": {
  3244. "dev-master": "1.3.x-dev"
  3245. }
  3246. },
  3247. "autoload": {
  3248. "classmap": [
  3249. "src/"
  3250. ]
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "BSD-3-Clause"
  3255. ],
  3256. "authors": [
  3257. {
  3258. "name": "Jeff Welch",
  3259. "email": "whatthejeff@gmail.com"
  3260. },
  3261. {
  3262. "name": "Volker Dusch",
  3263. "email": "github@wallbash.com"
  3264. },
  3265. {
  3266. "name": "Bernhard Schussek",
  3267. "email": "bschussek@2bepublished.at"
  3268. },
  3269. {
  3270. "name": "Sebastian Bergmann",
  3271. "email": "sebastian@phpunit.de"
  3272. },
  3273. {
  3274. "name": "Adam Harvey",
  3275. "email": "aharvey@php.net"
  3276. }
  3277. ],
  3278. "description": "Provides the functionality to export PHP variables for visualization",
  3279. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3280. "keywords": [
  3281. "export",
  3282. "exporter"
  3283. ],
  3284. "time": "2016-06-17T09:04:28+00:00"
  3285. },
  3286. {
  3287. "name": "sebastian/global-state",
  3288. "version": "1.1.1",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/sebastianbergmann/global-state.git",
  3292. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3297. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "php": ">=5.3.3"
  3302. },
  3303. "require-dev": {
  3304. "phpunit/phpunit": "~4.2"
  3305. },
  3306. "suggest": {
  3307. "ext-uopz": "*"
  3308. },
  3309. "type": "library",
  3310. "extra": {
  3311. "branch-alias": {
  3312. "dev-master": "1.0-dev"
  3313. }
  3314. },
  3315. "autoload": {
  3316. "classmap": [
  3317. "src/"
  3318. ]
  3319. },
  3320. "notification-url": "https://packagist.org/downloads/",
  3321. "license": [
  3322. "BSD-3-Clause"
  3323. ],
  3324. "authors": [
  3325. {
  3326. "name": "Sebastian Bergmann",
  3327. "email": "sebastian@phpunit.de"
  3328. }
  3329. ],
  3330. "description": "Snapshotting of global state",
  3331. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3332. "keywords": [
  3333. "global state"
  3334. ],
  3335. "time": "2015-10-12T03:26:01+00:00"
  3336. },
  3337. {
  3338. "name": "sebastian/recursion-context",
  3339. "version": "1.0.5",
  3340. "source": {
  3341. "type": "git",
  3342. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3343. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  3344. },
  3345. "dist": {
  3346. "type": "zip",
  3347. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  3348. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  3349. "shasum": ""
  3350. },
  3351. "require": {
  3352. "php": ">=5.3.3"
  3353. },
  3354. "require-dev": {
  3355. "phpunit/phpunit": "~4.4"
  3356. },
  3357. "type": "library",
  3358. "extra": {
  3359. "branch-alias": {
  3360. "dev-master": "1.0.x-dev"
  3361. }
  3362. },
  3363. "autoload": {
  3364. "classmap": [
  3365. "src/"
  3366. ]
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "BSD-3-Clause"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Jeff Welch",
  3375. "email": "whatthejeff@gmail.com"
  3376. },
  3377. {
  3378. "name": "Sebastian Bergmann",
  3379. "email": "sebastian@phpunit.de"
  3380. },
  3381. {
  3382. "name": "Adam Harvey",
  3383. "email": "aharvey@php.net"
  3384. }
  3385. ],
  3386. "description": "Provides functionality to recursively process PHP variables",
  3387. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3388. "time": "2016-10-03T07:41:43+00:00"
  3389. },
  3390. {
  3391. "name": "sebastian/version",
  3392. "version": "1.0.6",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/sebastianbergmann/version.git",
  3396. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3401. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3402. "shasum": ""
  3403. },
  3404. "type": "library",
  3405. "autoload": {
  3406. "classmap": [
  3407. "src/"
  3408. ]
  3409. },
  3410. "notification-url": "https://packagist.org/downloads/",
  3411. "license": [
  3412. "BSD-3-Clause"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "Sebastian Bergmann",
  3417. "email": "sebastian@phpunit.de",
  3418. "role": "lead"
  3419. }
  3420. ],
  3421. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3422. "homepage": "https://github.com/sebastianbergmann/version",
  3423. "time": "2015-06-21T13:59:46+00:00"
  3424. },
  3425. {
  3426. "name": "symfony/browser-kit",
  3427. "version": "v3.4.23",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/symfony/browser-kit.git",
  3431. "reference": "c0fadd368c1031109e996316e53ffeb886d37ea1"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c0fadd368c1031109e996316e53ffeb886d37ea1",
  3436. "reference": "c0fadd368c1031109e996316e53ffeb886d37ea1",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "php": "^5.5.9|>=7.0.8",
  3441. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  3442. },
  3443. "require-dev": {
  3444. "symfony/css-selector": "~2.8|~3.0|~4.0",
  3445. "symfony/process": "~2.8|~3.0|~4.0"
  3446. },
  3447. "suggest": {
  3448. "symfony/process": ""
  3449. },
  3450. "type": "library",
  3451. "extra": {
  3452. "branch-alias": {
  3453. "dev-master": "3.4-dev"
  3454. }
  3455. },
  3456. "autoload": {
  3457. "psr-4": {
  3458. "Symfony\\Component\\BrowserKit\\": ""
  3459. },
  3460. "exclude-from-classmap": [
  3461. "/Tests/"
  3462. ]
  3463. },
  3464. "notification-url": "https://packagist.org/downloads/",
  3465. "license": [
  3466. "MIT"
  3467. ],
  3468. "authors": [
  3469. {
  3470. "name": "Fabien Potencier",
  3471. "email": "fabien@symfony.com"
  3472. },
  3473. {
  3474. "name": "Symfony Community",
  3475. "homepage": "https://symfony.com/contributors"
  3476. }
  3477. ],
  3478. "description": "Symfony BrowserKit Component",
  3479. "homepage": "https://symfony.com",
  3480. "time": "2019-02-23T15:06:07+00:00"
  3481. },
  3482. {
  3483. "name": "symfony/css-selector",
  3484. "version": "v3.4.23",
  3485. "source": {
  3486. "type": "git",
  3487. "url": "https://github.com/symfony/css-selector.git",
  3488. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  3489. },
  3490. "dist": {
  3491. "type": "zip",
  3492. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  3493. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  3494. "shasum": ""
  3495. },
  3496. "require": {
  3497. "php": "^5.5.9|>=7.0.8"
  3498. },
  3499. "type": "library",
  3500. "extra": {
  3501. "branch-alias": {
  3502. "dev-master": "3.4-dev"
  3503. }
  3504. },
  3505. "autoload": {
  3506. "psr-4": {
  3507. "Symfony\\Component\\CssSelector\\": ""
  3508. },
  3509. "exclude-from-classmap": [
  3510. "/Tests/"
  3511. ]
  3512. },
  3513. "notification-url": "https://packagist.org/downloads/",
  3514. "license": [
  3515. "MIT"
  3516. ],
  3517. "authors": [
  3518. {
  3519. "name": "Jean-François Simon",
  3520. "email": "jeanfrancois.simon@sensiolabs.com"
  3521. },
  3522. {
  3523. "name": "Fabien Potencier",
  3524. "email": "fabien@symfony.com"
  3525. },
  3526. {
  3527. "name": "Symfony Community",
  3528. "homepage": "https://symfony.com/contributors"
  3529. }
  3530. ],
  3531. "description": "Symfony CssSelector Component",
  3532. "homepage": "https://symfony.com",
  3533. "time": "2019-01-16T09:39:14+00:00"
  3534. },
  3535. {
  3536. "name": "symfony/dom-crawler",
  3537. "version": "v3.4.23",
  3538. "source": {
  3539. "type": "git",
  3540. "url": "https://github.com/symfony/dom-crawler.git",
  3541. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09"
  3542. },
  3543. "dist": {
  3544. "type": "zip",
  3545. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d40023c057393fb25f7ca80af2a56ed948c45a09",
  3546. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09",
  3547. "shasum": ""
  3548. },
  3549. "require": {
  3550. "php": "^5.5.9|>=7.0.8",
  3551. "symfony/polyfill-ctype": "~1.8",
  3552. "symfony/polyfill-mbstring": "~1.0"
  3553. },
  3554. "require-dev": {
  3555. "symfony/css-selector": "~2.8|~3.0|~4.0"
  3556. },
  3557. "suggest": {
  3558. "symfony/css-selector": ""
  3559. },
  3560. "type": "library",
  3561. "extra": {
  3562. "branch-alias": {
  3563. "dev-master": "3.4-dev"
  3564. }
  3565. },
  3566. "autoload": {
  3567. "psr-4": {
  3568. "Symfony\\Component\\DomCrawler\\": ""
  3569. },
  3570. "exclude-from-classmap": [
  3571. "/Tests/"
  3572. ]
  3573. },
  3574. "notification-url": "https://packagist.org/downloads/",
  3575. "license": [
  3576. "MIT"
  3577. ],
  3578. "authors": [
  3579. {
  3580. "name": "Fabien Potencier",
  3581. "email": "fabien@symfony.com"
  3582. },
  3583. {
  3584. "name": "Symfony Community",
  3585. "homepage": "https://symfony.com/contributors"
  3586. }
  3587. ],
  3588. "description": "Symfony DomCrawler Component",
  3589. "homepage": "https://symfony.com",
  3590. "time": "2019-02-23T15:06:07+00:00"
  3591. },
  3592. {
  3593. "name": "symfony/finder",
  3594. "version": "v3.4.23",
  3595. "source": {
  3596. "type": "git",
  3597. "url": "https://github.com/symfony/finder.git",
  3598. "reference": "fcdde4aa38f48190ce70d782c166f23930084f9b"
  3599. },
  3600. "dist": {
  3601. "type": "zip",
  3602. "url": "https://api.github.com/repos/symfony/finder/zipball/fcdde4aa38f48190ce70d782c166f23930084f9b",
  3603. "reference": "fcdde4aa38f48190ce70d782c166f23930084f9b",
  3604. "shasum": ""
  3605. },
  3606. "require": {
  3607. "php": "^5.5.9|>=7.0.8"
  3608. },
  3609. "type": "library",
  3610. "extra": {
  3611. "branch-alias": {
  3612. "dev-master": "3.4-dev"
  3613. }
  3614. },
  3615. "autoload": {
  3616. "psr-4": {
  3617. "Symfony\\Component\\Finder\\": ""
  3618. },
  3619. "exclude-from-classmap": [
  3620. "/Tests/"
  3621. ]
  3622. },
  3623. "notification-url": "https://packagist.org/downloads/",
  3624. "license": [
  3625. "MIT"
  3626. ],
  3627. "authors": [
  3628. {
  3629. "name": "Fabien Potencier",
  3630. "email": "fabien@symfony.com"
  3631. },
  3632. {
  3633. "name": "Symfony Community",
  3634. "homepage": "https://symfony.com/contributors"
  3635. }
  3636. ],
  3637. "description": "Symfony Finder Component",
  3638. "homepage": "https://symfony.com",
  3639. "time": "2019-02-22T14:44:53+00:00"
  3640. },
  3641. {
  3642. "name": "symfony/process",
  3643. "version": "v3.4.23",
  3644. "source": {
  3645. "type": "git",
  3646. "url": "https://github.com/symfony/process.git",
  3647. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e"
  3648. },
  3649. "dist": {
  3650. "type": "zip",
  3651. "url": "https://api.github.com/repos/symfony/process/zipball/009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  3652. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  3653. "shasum": ""
  3654. },
  3655. "require": {
  3656. "php": "^5.5.9|>=7.0.8"
  3657. },
  3658. "type": "library",
  3659. "extra": {
  3660. "branch-alias": {
  3661. "dev-master": "3.4-dev"
  3662. }
  3663. },
  3664. "autoload": {
  3665. "psr-4": {
  3666. "Symfony\\Component\\Process\\": ""
  3667. },
  3668. "exclude-from-classmap": [
  3669. "/Tests/"
  3670. ]
  3671. },
  3672. "notification-url": "https://packagist.org/downloads/",
  3673. "license": [
  3674. "MIT"
  3675. ],
  3676. "authors": [
  3677. {
  3678. "name": "Fabien Potencier",
  3679. "email": "fabien@symfony.com"
  3680. },
  3681. {
  3682. "name": "Symfony Community",
  3683. "homepage": "https://symfony.com/contributors"
  3684. }
  3685. ],
  3686. "description": "Symfony Process Component",
  3687. "homepage": "https://symfony.com",
  3688. "time": "2019-01-16T13:27:11+00:00"
  3689. },
  3690. {
  3691. "name": "victorjonsson/markdowndocs",
  3692. "version": "dev-master",
  3693. "source": {
  3694. "type": "git",
  3695. "url": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator.git",
  3696. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed"
  3697. },
  3698. "dist": {
  3699. "type": "zip",
  3700. "url": "https://api.github.com/repos/trilbymedia/PHP-Markdown-Documentation-Generator/zipball/c9fa153b28a79f5da89ec32aa501be92db212aed",
  3701. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed",
  3702. "shasum": ""
  3703. },
  3704. "require": {
  3705. "php": ">=5.5.0",
  3706. "symfony/console": ">=2.6"
  3707. },
  3708. "require-dev": {
  3709. "phpunit/phpunit": "3.7.23"
  3710. },
  3711. "bin": [
  3712. "bin/phpdoc-md"
  3713. ],
  3714. "type": "library",
  3715. "autoload": {
  3716. "psr-0": {
  3717. "PHPDocsMD": "src/"
  3718. }
  3719. },
  3720. "license": [
  3721. "MIT"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "Victor Jonsson",
  3726. "email": "kontakt@victorjonsson.se"
  3727. }
  3728. ],
  3729. "description": "Command line tool for generating markdown-formatted class documentation",
  3730. "homepage": "https://github.com/victorjonsson/PHP-Markdown-Documentation-Generator",
  3731. "support": {
  3732. "source": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator/tree/master"
  3733. },
  3734. "time": "2017-09-20T13:29:22+00:00"
  3735. },
  3736. {
  3737. "name": "webmozart/assert",
  3738. "version": "1.4.0",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/webmozart/assert.git",
  3742. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  3747. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  3748. "shasum": ""
  3749. },
  3750. "require": {
  3751. "php": "^5.3.3 || ^7.0",
  3752. "symfony/polyfill-ctype": "^1.8"
  3753. },
  3754. "require-dev": {
  3755. "phpunit/phpunit": "^4.6",
  3756. "sebastian/version": "^1.0.1"
  3757. },
  3758. "type": "library",
  3759. "extra": {
  3760. "branch-alias": {
  3761. "dev-master": "1.3-dev"
  3762. }
  3763. },
  3764. "autoload": {
  3765. "psr-4": {
  3766. "Webmozart\\Assert\\": "src/"
  3767. }
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "MIT"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "Bernhard Schussek",
  3776. "email": "bschussek@gmail.com"
  3777. }
  3778. ],
  3779. "description": "Assertions to validate method input/output with nice error messages.",
  3780. "keywords": [
  3781. "assert",
  3782. "check",
  3783. "validate"
  3784. ],
  3785. "time": "2018-12-25T11:19:39+00:00"
  3786. }
  3787. ],
  3788. "aliases": [],
  3789. "minimum-stability": "stable",
  3790. "stability-flags": {
  3791. "victorjonsson/markdowndocs": 20
  3792. },
  3793. "prefer-stable": false,
  3794. "prefer-lowest": false,
  3795. "platform": {
  3796. "php": ">=5.6.4",
  3797. "ext-mbstring": "*",
  3798. "ext-openssl": "*",
  3799. "ext-curl": "*",
  3800. "ext-zip": "*",
  3801. "ext-json": "*"
  3802. },
  3803. "platform-dev": [],
  3804. "platform-overrides": {
  3805. "php": "5.6.4"
  3806. }
  3807. }