企微短剧业务系统

composer.lock 199KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499
  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": "e8b53de34324b0724a4883715ea53483",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  15. "reference": "f0413667d765855eb0aaa728b596801464ffdb06"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/f0413667d765855eb0aaa728b596801464ffdb06",
  20. "reference": "f0413667d765855eb0aaa728b596801464ffdb06",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "*",
  28. "satooshi/php-coveralls": "*"
  29. },
  30. "type": "library",
  31. "autoload": {
  32. "psr-4": {
  33. "OSS\\": "src/OSS"
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Aliyuncs",
  43. "homepage": "http://www.aliyun.com"
  44. }
  45. ],
  46. "description": "Aliyun OSS SDK for PHP",
  47. "homepage": "http://www.aliyun.com/product/oss/",
  48. "support": {
  49. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  50. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.5.0"
  51. },
  52. "time": "2022-05-13T07:41:28+00:00"
  53. },
  54. {
  55. "name": "dnoegel/php-xdg-base-dir",
  56. "version": "v0.1.1",
  57. "source": {
  58. "type": "git",
  59. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  60. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  61. },
  62. "dist": {
  63. "type": "zip",
  64. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  65. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  66. "shasum": ""
  67. },
  68. "require": {
  69. "php": ">=5.3.2"
  70. },
  71. "require-dev": {
  72. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  73. },
  74. "type": "library",
  75. "autoload": {
  76. "psr-4": {
  77. "XdgBaseDir\\": "src/"
  78. }
  79. },
  80. "notification-url": "https://packagist.org/downloads/",
  81. "license": [
  82. "MIT"
  83. ],
  84. "description": "implementation of xdg base directory specification for php",
  85. "support": {
  86. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  87. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  88. },
  89. "time": "2019-12-04T15:06:13+00:00"
  90. },
  91. {
  92. "name": "doctrine/inflector",
  93. "version": "1.4.4",
  94. "source": {
  95. "type": "git",
  96. "url": "https://github.com/doctrine/inflector.git",
  97. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  98. },
  99. "dist": {
  100. "type": "zip",
  101. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  102. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  103. "shasum": ""
  104. },
  105. "require": {
  106. "php": "^7.1 || ^8.0"
  107. },
  108. "require-dev": {
  109. "doctrine/coding-standard": "^8.0",
  110. "phpstan/phpstan": "^0.12",
  111. "phpstan/phpstan-phpunit": "^0.12",
  112. "phpstan/phpstan-strict-rules": "^0.12",
  113. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  114. },
  115. "type": "library",
  116. "extra": {
  117. "branch-alias": {
  118. "dev-master": "2.0.x-dev"
  119. }
  120. },
  121. "autoload": {
  122. "psr-4": {
  123. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector",
  124. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  125. }
  126. },
  127. "notification-url": "https://packagist.org/downloads/",
  128. "license": [
  129. "MIT"
  130. ],
  131. "authors": [
  132. {
  133. "name": "Guilherme Blanco",
  134. "email": "guilhermeblanco@gmail.com"
  135. },
  136. {
  137. "name": "Roman Borschel",
  138. "email": "roman@code-factory.org"
  139. },
  140. {
  141. "name": "Benjamin Eberlei",
  142. "email": "kontakt@beberlei.de"
  143. },
  144. {
  145. "name": "Jonathan Wage",
  146. "email": "jonwage@gmail.com"
  147. },
  148. {
  149. "name": "Johannes Schmitt",
  150. "email": "schmittjoh@gmail.com"
  151. }
  152. ],
  153. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  154. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  155. "keywords": [
  156. "inflection",
  157. "inflector",
  158. "lowercase",
  159. "manipulation",
  160. "php",
  161. "plural",
  162. "singular",
  163. "strings",
  164. "uppercase",
  165. "words"
  166. ],
  167. "support": {
  168. "issues": "https://github.com/doctrine/inflector/issues",
  169. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  170. },
  171. "funding": [
  172. {
  173. "url": "https://www.doctrine-project.org/sponsorship.html",
  174. "type": "custom"
  175. },
  176. {
  177. "url": "https://www.patreon.com/phpdoctrine",
  178. "type": "patreon"
  179. },
  180. {
  181. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  182. "type": "tidelift"
  183. }
  184. ],
  185. "time": "2021-04-16T17:34:40+00:00"
  186. },
  187. {
  188. "name": "elasticsearch/elasticsearch",
  189. "version": "v7.17.0",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/elastic/elasticsearch-php.git",
  193. "reference": "1890f9d7fde076b5a3ddcf579a802af05b2e781b"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/1890f9d7fde076b5a3ddcf579a802af05b2e781b",
  198. "reference": "1890f9d7fde076b5a3ddcf579a802af05b2e781b",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "ext-json": ">=1.3.7",
  203. "ezimuel/ringphp": "^1.1.2",
  204. "php": "^7.3 || ^8.0",
  205. "psr/log": "^1|^2|^3"
  206. },
  207. "require-dev": {
  208. "ext-yaml": "*",
  209. "ext-zip": "*",
  210. "mockery/mockery": "^1.2",
  211. "phpstan/phpstan": "^0.12",
  212. "phpunit/phpunit": "^9.3",
  213. "squizlabs/php_codesniffer": "^3.4",
  214. "symfony/finder": "~4.0"
  215. },
  216. "suggest": {
  217. "ext-curl": "*",
  218. "monolog/monolog": "Allows for client-level logging and tracing"
  219. },
  220. "type": "library",
  221. "autoload": {
  222. "files": [
  223. "src/autoload.php"
  224. ],
  225. "psr-4": {
  226. "Elasticsearch\\": "src/Elasticsearch/"
  227. }
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "Apache-2.0",
  232. "LGPL-2.1-only"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Zachary Tong"
  237. },
  238. {
  239. "name": "Enrico Zimuel"
  240. }
  241. ],
  242. "description": "PHP Client for Elasticsearch",
  243. "keywords": [
  244. "client",
  245. "elasticsearch",
  246. "search"
  247. ],
  248. "support": {
  249. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  250. "source": "https://github.com/elastic/elasticsearch-php/tree/v7.17.0"
  251. },
  252. "time": "2022-02-03T13:40:04+00:00"
  253. },
  254. {
  255. "name": "erusev/parsedown",
  256. "version": "1.7.4",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/erusev/parsedown.git",
  260. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  265. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  266. "shasum": ""
  267. },
  268. "require": {
  269. "ext-mbstring": "*",
  270. "php": ">=5.3.0"
  271. },
  272. "require-dev": {
  273. "phpunit/phpunit": "^4.8.35"
  274. },
  275. "type": "library",
  276. "autoload": {
  277. "psr-0": {
  278. "Parsedown": ""
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Emanuil Rusev",
  288. "email": "hello@erusev.com",
  289. "homepage": "http://erusev.com"
  290. }
  291. ],
  292. "description": "Parser for Markdown.",
  293. "homepage": "http://parsedown.org",
  294. "keywords": [
  295. "markdown",
  296. "parser"
  297. ],
  298. "support": {
  299. "issues": "https://github.com/erusev/parsedown/issues",
  300. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  301. },
  302. "time": "2019-12-30T22:54:17+00:00"
  303. },
  304. {
  305. "name": "ezimuel/guzzlestreams",
  306. "version": "3.0.1",
  307. "source": {
  308. "type": "git",
  309. "url": "https://github.com/ezimuel/guzzlestreams.git",
  310. "reference": "abe3791d231167f14eb80d413420d1eab91163a8"
  311. },
  312. "dist": {
  313. "type": "zip",
  314. "url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/abe3791d231167f14eb80d413420d1eab91163a8",
  315. "reference": "abe3791d231167f14eb80d413420d1eab91163a8",
  316. "shasum": ""
  317. },
  318. "require": {
  319. "php": ">=5.4.0"
  320. },
  321. "require-dev": {
  322. "phpunit/phpunit": "~4.0"
  323. },
  324. "type": "library",
  325. "extra": {
  326. "branch-alias": {
  327. "dev-master": "3.0-dev"
  328. }
  329. },
  330. "autoload": {
  331. "psr-4": {
  332. "GuzzleHttp\\Stream\\": "src/"
  333. }
  334. },
  335. "notification-url": "https://packagist.org/downloads/",
  336. "license": [
  337. "MIT"
  338. ],
  339. "authors": [
  340. {
  341. "name": "Michael Dowling",
  342. "email": "mtdowling@gmail.com",
  343. "homepage": "https://github.com/mtdowling"
  344. }
  345. ],
  346. "description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
  347. "homepage": "http://guzzlephp.org/",
  348. "keywords": [
  349. "Guzzle",
  350. "stream"
  351. ],
  352. "support": {
  353. "source": "https://github.com/ezimuel/guzzlestreams/tree/3.0.1"
  354. },
  355. "time": "2020-02-14T23:11:50+00:00"
  356. },
  357. {
  358. "name": "ezimuel/ringphp",
  359. "version": "1.2.0",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/ezimuel/ringphp.git",
  363. "reference": "92b8161404ab1ad84059ebed41d9f757e897ce74"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/ezimuel/ringphp/zipball/92b8161404ab1ad84059ebed41d9f757e897ce74",
  368. "reference": "92b8161404ab1ad84059ebed41d9f757e897ce74",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "ezimuel/guzzlestreams": "^3.0.1",
  373. "php": ">=5.4.0",
  374. "react/promise": "~2.0"
  375. },
  376. "replace": {
  377. "guzzlehttp/ringphp": "self.version"
  378. },
  379. "require-dev": {
  380. "ext-curl": "*",
  381. "phpunit/phpunit": "~9.0"
  382. },
  383. "suggest": {
  384. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  385. },
  386. "type": "library",
  387. "extra": {
  388. "branch-alias": {
  389. "dev-master": "1.1-dev"
  390. }
  391. },
  392. "autoload": {
  393. "psr-4": {
  394. "GuzzleHttp\\Ring\\": "src/"
  395. }
  396. },
  397. "notification-url": "https://packagist.org/downloads/",
  398. "license": [
  399. "MIT"
  400. ],
  401. "authors": [
  402. {
  403. "name": "Michael Dowling",
  404. "email": "mtdowling@gmail.com",
  405. "homepage": "https://github.com/mtdowling"
  406. }
  407. ],
  408. "description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
  409. "support": {
  410. "source": "https://github.com/ezimuel/ringphp/tree/1.2.0"
  411. },
  412. "time": "2021-11-16T11:51:30+00:00"
  413. },
  414. {
  415. "name": "ezyang/htmlpurifier",
  416. "version": "v4.14.0",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/ezyang/htmlpurifier.git",
  420. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  425. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  426. "shasum": "",
  427. "mirrors": [
  428. {
  429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  430. "preferred": true
  431. }
  432. ]
  433. },
  434. "require": {
  435. "php": ">=5.2"
  436. },
  437. "type": "library",
  438. "autoload": {
  439. "files": [
  440. "library/HTMLPurifier.composer.php"
  441. ],
  442. "psr-0": {
  443. "HTMLPurifier": "library/"
  444. },
  445. "exclude-from-classmap": [
  446. "/library/HTMLPurifier/Language/"
  447. ]
  448. },
  449. "notification-url": "https://packagist.org/downloads/",
  450. "license": [
  451. "LGPL-2.1-or-later"
  452. ],
  453. "authors": [
  454. {
  455. "name": "Edward Z. Yang",
  456. "email": "admin@htmlpurifier.org",
  457. "homepage": "http://ezyang.com"
  458. }
  459. ],
  460. "description": "Standards compliant HTML filter written in PHP",
  461. "homepage": "http://htmlpurifier.org/",
  462. "keywords": [
  463. "html"
  464. ],
  465. "support": {
  466. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  467. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  468. },
  469. "time": "2021-12-25T01:21:49+00:00"
  470. },
  471. {
  472. "name": "jakub-onderka/php-console-color",
  473. "version": "v0.2",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  477. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  482. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  483. "shasum": ""
  484. },
  485. "require": {
  486. "php": ">=5.4.0"
  487. },
  488. "require-dev": {
  489. "jakub-onderka/php-code-style": "1.0",
  490. "jakub-onderka/php-parallel-lint": "1.0",
  491. "jakub-onderka/php-var-dump-check": "0.*",
  492. "phpunit/phpunit": "~4.3",
  493. "squizlabs/php_codesniffer": "1.*"
  494. },
  495. "type": "library",
  496. "autoload": {
  497. "psr-4": {
  498. "JakubOnderka\\PhpConsoleColor\\": "src/"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "BSD-2-Clause"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Jakub Onderka",
  508. "email": "jakub.onderka@gmail.com"
  509. }
  510. ],
  511. "support": {
  512. "issues": "https://github.com/JakubOnderka/PHP-Console-Color/issues",
  513. "source": "https://github.com/JakubOnderka/PHP-Console-Color/tree/master"
  514. },
  515. "abandoned": "php-parallel-lint/php-console-color",
  516. "time": "2018-09-29T17:23:10+00:00"
  517. },
  518. {
  519. "name": "jakub-onderka/php-console-highlighter",
  520. "version": "v0.4",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  524. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  529. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "ext-tokenizer": "*",
  534. "jakub-onderka/php-console-color": "~0.2",
  535. "php": ">=5.4.0"
  536. },
  537. "require-dev": {
  538. "jakub-onderka/php-code-style": "~1.0",
  539. "jakub-onderka/php-parallel-lint": "~1.0",
  540. "jakub-onderka/php-var-dump-check": "~0.1",
  541. "phpunit/phpunit": "~4.0",
  542. "squizlabs/php_codesniffer": "~1.5"
  543. },
  544. "type": "library",
  545. "autoload": {
  546. "psr-4": {
  547. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  548. }
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Jakub Onderka",
  557. "email": "acci@acci.cz",
  558. "homepage": "http://www.acci.cz/"
  559. }
  560. ],
  561. "description": "Highlight PHP code in terminal",
  562. "support": {
  563. "issues": "https://github.com/JakubOnderka/PHP-Console-Highlighter/issues",
  564. "source": "https://github.com/JakubOnderka/PHP-Console-Highlighter/tree/master"
  565. },
  566. "abandoned": "php-parallel-lint/php-console-highlighter",
  567. "time": "2018-09-29T18:48:56+00:00"
  568. },
  569. {
  570. "name": "kylekatarnls/update-helper",
  571. "version": "1.2.1",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/kylekatarnls/update-helper.git",
  575. "reference": "429be50660ed8a196e0798e5939760f168ec8ce9"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9",
  580. "reference": "429be50660ed8a196e0798e5939760f168ec8ce9",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "composer-plugin-api": "^1.1.0 || ^2.0.0",
  585. "php": ">=5.3.0"
  586. },
  587. "require-dev": {
  588. "codeclimate/php-test-reporter": "dev-master",
  589. "composer/composer": "2.0.x-dev || ^2.0.0-dev",
  590. "phpunit/phpunit": ">=4.8.35 <6.0"
  591. },
  592. "type": "composer-plugin",
  593. "extra": {
  594. "class": "UpdateHelper\\ComposerPlugin"
  595. },
  596. "autoload": {
  597. "psr-0": {
  598. "UpdateHelper\\": "src/"
  599. }
  600. },
  601. "notification-url": "https://packagist.org/downloads/",
  602. "license": [
  603. "MIT"
  604. ],
  605. "authors": [
  606. {
  607. "name": "Kyle",
  608. "email": "kylekatarnls@gmail.com"
  609. }
  610. ],
  611. "description": "Update helper",
  612. "support": {
  613. "issues": "https://github.com/kylekatarnls/update-helper/issues",
  614. "source": "https://github.com/kylekatarnls/update-helper/tree/1.2.1"
  615. },
  616. "funding": [
  617. {
  618. "url": "https://github.com/kylekatarnls",
  619. "type": "github"
  620. },
  621. {
  622. "url": "https://opencollective.com/Carbon",
  623. "type": "open_collective"
  624. },
  625. {
  626. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  627. "type": "tidelift"
  628. }
  629. ],
  630. "time": "2020-04-07T20:44:10+00:00"
  631. },
  632. {
  633. "name": "laravel/framework",
  634. "version": "v5.4.36",
  635. "source": {
  636. "type": "git",
  637. "url": "https://github.com/laravel/framework.git",
  638. "reference": "1062a22232071c3e8636487c86ec1ae75681bbf9"
  639. },
  640. "dist": {
  641. "type": "zip",
  642. "url": "https://api.github.com/repos/laravel/framework/zipball/1062a22232071c3e8636487c86ec1ae75681bbf9",
  643. "reference": "1062a22232071c3e8636487c86ec1ae75681bbf9",
  644. "shasum": ""
  645. },
  646. "require": {
  647. "doctrine/inflector": "~1.1",
  648. "erusev/parsedown": "~1.6",
  649. "ext-mbstring": "*",
  650. "ext-openssl": "*",
  651. "league/flysystem": "~1.0",
  652. "monolog/monolog": "~1.11",
  653. "mtdowling/cron-expression": "~1.0",
  654. "nesbot/carbon": "~1.20",
  655. "paragonie/random_compat": "~1.4|~2.0",
  656. "php": ">=5.6.4",
  657. "ramsey/uuid": "~3.0",
  658. "swiftmailer/swiftmailer": "~5.4",
  659. "symfony/console": "~3.2",
  660. "symfony/debug": "~3.2",
  661. "symfony/finder": "~3.2",
  662. "symfony/http-foundation": "~3.2",
  663. "symfony/http-kernel": "~3.2",
  664. "symfony/process": "~3.2",
  665. "symfony/routing": "~3.2",
  666. "symfony/var-dumper": "~3.2",
  667. "tijsverkoyen/css-to-inline-styles": "~2.2",
  668. "vlucas/phpdotenv": "~2.2"
  669. },
  670. "replace": {
  671. "illuminate/auth": "self.version",
  672. "illuminate/broadcasting": "self.version",
  673. "illuminate/bus": "self.version",
  674. "illuminate/cache": "self.version",
  675. "illuminate/config": "self.version",
  676. "illuminate/console": "self.version",
  677. "illuminate/container": "self.version",
  678. "illuminate/contracts": "self.version",
  679. "illuminate/cookie": "self.version",
  680. "illuminate/database": "self.version",
  681. "illuminate/encryption": "self.version",
  682. "illuminate/events": "self.version",
  683. "illuminate/exception": "self.version",
  684. "illuminate/filesystem": "self.version",
  685. "illuminate/hashing": "self.version",
  686. "illuminate/http": "self.version",
  687. "illuminate/log": "self.version",
  688. "illuminate/mail": "self.version",
  689. "illuminate/notifications": "self.version",
  690. "illuminate/pagination": "self.version",
  691. "illuminate/pipeline": "self.version",
  692. "illuminate/queue": "self.version",
  693. "illuminate/redis": "self.version",
  694. "illuminate/routing": "self.version",
  695. "illuminate/session": "self.version",
  696. "illuminate/support": "self.version",
  697. "illuminate/translation": "self.version",
  698. "illuminate/validation": "self.version",
  699. "illuminate/view": "self.version",
  700. "tightenco/collect": "self.version"
  701. },
  702. "require-dev": {
  703. "aws/aws-sdk-php": "~3.0",
  704. "doctrine/dbal": "~2.5",
  705. "mockery/mockery": "~0.9.4",
  706. "pda/pheanstalk": "~3.0",
  707. "phpunit/phpunit": "~5.7",
  708. "predis/predis": "~1.0",
  709. "symfony/css-selector": "~3.2",
  710. "symfony/dom-crawler": "~3.2"
  711. },
  712. "suggest": {
  713. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  714. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  715. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  716. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  717. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  718. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  719. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  720. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  721. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  722. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  723. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).",
  724. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.2).",
  725. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.2).",
  726. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (0.2.*)."
  727. },
  728. "type": "library",
  729. "extra": {
  730. "branch-alias": {
  731. "dev-master": "5.4-dev"
  732. }
  733. },
  734. "autoload": {
  735. "files": [
  736. "src/Illuminate/Foundation/helpers.php",
  737. "src/Illuminate/Support/helpers.php"
  738. ],
  739. "psr-4": {
  740. "Illuminate\\": "src/Illuminate/"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Taylor Otwell",
  750. "email": "taylor@laravel.com"
  751. }
  752. ],
  753. "description": "The Laravel Framework.",
  754. "homepage": "https://laravel.com",
  755. "keywords": [
  756. "framework",
  757. "laravel"
  758. ],
  759. "support": {
  760. "issues": "https://github.com/laravel/framework/issues",
  761. "source": "https://github.com/laravel/framework"
  762. },
  763. "time": "2017-08-30T09:26:16+00:00"
  764. },
  765. {
  766. "name": "laravel/tinker",
  767. "version": "v1.0.10",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/laravel/tinker.git",
  771. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  776. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  777. "shasum": ""
  778. },
  779. "require": {
  780. "illuminate/console": "~5.1|^6.0",
  781. "illuminate/contracts": "~5.1|^6.0",
  782. "illuminate/support": "~5.1|^6.0",
  783. "php": ">=5.5.9",
  784. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  785. "symfony/var-dumper": "~3.0|~4.0"
  786. },
  787. "require-dev": {
  788. "phpunit/phpunit": "~4.0|~5.0"
  789. },
  790. "suggest": {
  791. "illuminate/database": "The Illuminate Database package (~5.1)."
  792. },
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-master": "1.0-dev"
  797. },
  798. "laravel": {
  799. "providers": [
  800. "Laravel\\Tinker\\TinkerServiceProvider"
  801. ]
  802. }
  803. },
  804. "autoload": {
  805. "psr-4": {
  806. "Laravel\\Tinker\\": "src/"
  807. }
  808. },
  809. "notification-url": "https://packagist.org/downloads/",
  810. "license": [
  811. "MIT"
  812. ],
  813. "authors": [
  814. {
  815. "name": "Taylor Otwell",
  816. "email": "taylor@laravel.com"
  817. }
  818. ],
  819. "description": "Powerful REPL for the Laravel framework.",
  820. "keywords": [
  821. "REPL",
  822. "Tinker",
  823. "laravel",
  824. "psysh"
  825. ],
  826. "support": {
  827. "issues": "https://github.com/laravel/tinker/issues",
  828. "source": "https://github.com/laravel/tinker/tree/v1.0.10"
  829. },
  830. "time": "2019-08-07T15:10:45+00:00"
  831. },
  832. {
  833. "name": "league/flysystem",
  834. "version": "1.1.9",
  835. "source": {
  836. "type": "git",
  837. "url": "https://github.com/thephpleague/flysystem.git",
  838. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  839. },
  840. "dist": {
  841. "type": "zip",
  842. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  843. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  844. "shasum": ""
  845. },
  846. "require": {
  847. "ext-fileinfo": "*",
  848. "league/mime-type-detection": "^1.3",
  849. "php": "^7.2.5 || ^8.0"
  850. },
  851. "conflict": {
  852. "league/flysystem-sftp": "<1.0.6"
  853. },
  854. "require-dev": {
  855. "phpspec/prophecy": "^1.11.1",
  856. "phpunit/phpunit": "^8.5.8"
  857. },
  858. "suggest": {
  859. "ext-ftp": "Allows you to use FTP server storage",
  860. "ext-openssl": "Allows you to use FTPS server storage",
  861. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  862. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  863. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  864. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  865. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  866. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  867. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  868. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  869. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  870. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  871. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  872. },
  873. "type": "library",
  874. "extra": {
  875. "branch-alias": {
  876. "dev-master": "1.1-dev"
  877. }
  878. },
  879. "autoload": {
  880. "psr-4": {
  881. "League\\Flysystem\\": "src/"
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "MIT"
  887. ],
  888. "authors": [
  889. {
  890. "name": "Frank de Jonge",
  891. "email": "info@frenky.net"
  892. }
  893. ],
  894. "description": "Filesystem abstraction: Many filesystems, one API.",
  895. "keywords": [
  896. "Cloud Files",
  897. "WebDAV",
  898. "abstraction",
  899. "aws",
  900. "cloud",
  901. "copy.com",
  902. "dropbox",
  903. "file systems",
  904. "files",
  905. "filesystem",
  906. "filesystems",
  907. "ftp",
  908. "rackspace",
  909. "remote",
  910. "s3",
  911. "sftp",
  912. "storage"
  913. ],
  914. "support": {
  915. "issues": "https://github.com/thephpleague/flysystem/issues",
  916. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  917. },
  918. "funding": [
  919. {
  920. "url": "https://offset.earth/frankdejonge",
  921. "type": "other"
  922. }
  923. ],
  924. "time": "2021-12-09T09:40:50+00:00"
  925. },
  926. {
  927. "name": "league/mime-type-detection",
  928. "version": "1.11.0",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/thephpleague/mime-type-detection.git",
  932. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  937. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  938. "shasum": ""
  939. },
  940. "require": {
  941. "ext-fileinfo": "*",
  942. "php": "^7.2 || ^8.0"
  943. },
  944. "require-dev": {
  945. "friendsofphp/php-cs-fixer": "^3.2",
  946. "phpstan/phpstan": "^0.12.68",
  947. "phpunit/phpunit": "^8.5.8 || ^9.3"
  948. },
  949. "type": "library",
  950. "autoload": {
  951. "psr-4": {
  952. "League\\MimeTypeDetection\\": "src"
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "authors": [
  960. {
  961. "name": "Frank de Jonge",
  962. "email": "info@frankdejonge.nl"
  963. }
  964. ],
  965. "description": "Mime-type detection for Flysystem",
  966. "support": {
  967. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  968. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  969. },
  970. "funding": [
  971. {
  972. "url": "https://github.com/frankdejonge",
  973. "type": "github"
  974. },
  975. {
  976. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  977. "type": "tidelift"
  978. }
  979. ],
  980. "time": "2022-04-17T13:12:02+00:00"
  981. },
  982. {
  983. "name": "maennchen/zipstream-php",
  984. "version": "2.2.1",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  988. "reference": "211e9ba1530ea5260b45d90c9ea252f56ec52729"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/211e9ba1530ea5260b45d90c9ea252f56ec52729",
  993. "reference": "211e9ba1530ea5260b45d90c9ea252f56ec52729",
  994. "shasum": "",
  995. "mirrors": [
  996. {
  997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  998. "preferred": true
  999. }
  1000. ]
  1001. },
  1002. "require": {
  1003. "myclabs/php-enum": "^1.5",
  1004. "php": "^7.4 || ^8.0",
  1005. "psr/http-message": "^1.0",
  1006. "symfony/polyfill-mbstring": "^1.0"
  1007. },
  1008. "require-dev": {
  1009. "ext-zip": "*",
  1010. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  1011. "mikey179/vfsstream": "^1.6",
  1012. "php-coveralls/php-coveralls": "^2.4",
  1013. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  1014. "vimeo/psalm": "^4.1"
  1015. },
  1016. "type": "library",
  1017. "autoload": {
  1018. "psr-4": {
  1019. "ZipStream\\": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Paul Duncan",
  1029. "email": "pabs@pablotron.org"
  1030. },
  1031. {
  1032. "name": "Jonatan Männchen",
  1033. "email": "jonatan@maennchen.ch"
  1034. },
  1035. {
  1036. "name": "Jesse Donat",
  1037. "email": "donatj@gmail.com"
  1038. },
  1039. {
  1040. "name": "András Kolesár",
  1041. "email": "kolesar@kolesar.hu"
  1042. }
  1043. ],
  1044. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1045. "keywords": [
  1046. "stream",
  1047. "zip"
  1048. ],
  1049. "support": {
  1050. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1051. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.1"
  1052. },
  1053. "funding": [
  1054. {
  1055. "url": "https://opencollective.com/zipstream",
  1056. "type": "open_collective"
  1057. }
  1058. ],
  1059. "time": "2022-05-18T15:52:06+00:00"
  1060. },
  1061. {
  1062. "name": "markbaker/complex",
  1063. "version": "3.0.1",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1067. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  1072. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  1073. "shasum": "",
  1074. "mirrors": [
  1075. {
  1076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1077. "preferred": true
  1078. }
  1079. ]
  1080. },
  1081. "require": {
  1082. "php": "^7.2 || ^8.0"
  1083. },
  1084. "require-dev": {
  1085. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1086. "phpcompatibility/php-compatibility": "^9.0",
  1087. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1088. "squizlabs/php_codesniffer": "^3.4"
  1089. },
  1090. "type": "library",
  1091. "autoload": {
  1092. "psr-4": {
  1093. "Complex\\": "classes/src/"
  1094. }
  1095. },
  1096. "notification-url": "https://packagist.org/downloads/",
  1097. "license": [
  1098. "MIT"
  1099. ],
  1100. "authors": [
  1101. {
  1102. "name": "Mark Baker",
  1103. "email": "mark@lange.demon.co.uk"
  1104. }
  1105. ],
  1106. "description": "PHP Class for working with complex numbers",
  1107. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1108. "keywords": [
  1109. "complex",
  1110. "mathematics"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1114. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  1115. },
  1116. "time": "2021-06-29T15:32:53+00:00"
  1117. },
  1118. {
  1119. "name": "markbaker/matrix",
  1120. "version": "3.0.0",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1124. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  1129. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  1130. "shasum": "",
  1131. "mirrors": [
  1132. {
  1133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1134. "preferred": true
  1135. }
  1136. ]
  1137. },
  1138. "require": {
  1139. "php": "^7.1 || ^8.0"
  1140. },
  1141. "require-dev": {
  1142. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1143. "phpcompatibility/php-compatibility": "^9.0",
  1144. "phpdocumentor/phpdocumentor": "2.*",
  1145. "phploc/phploc": "^4.0",
  1146. "phpmd/phpmd": "2.*",
  1147. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1148. "sebastian/phpcpd": "^4.0",
  1149. "squizlabs/php_codesniffer": "^3.4"
  1150. },
  1151. "type": "library",
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Matrix\\": "classes/src/"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Mark Baker",
  1164. "email": "mark@demon-angel.eu"
  1165. }
  1166. ],
  1167. "description": "PHP Class for working with matrices",
  1168. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1169. "keywords": [
  1170. "mathematics",
  1171. "matrix",
  1172. "vector"
  1173. ],
  1174. "support": {
  1175. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1176. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  1177. },
  1178. "time": "2021-07-01T19:01:15+00:00"
  1179. },
  1180. {
  1181. "name": "monolog/monolog",
  1182. "version": "1.27.0",
  1183. "source": {
  1184. "type": "git",
  1185. "url": "https://github.com/Seldaek/monolog.git",
  1186. "reference": "52ebd235c1f7e0d5e1b16464b695a28335f8e44a"
  1187. },
  1188. "dist": {
  1189. "type": "zip",
  1190. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/52ebd235c1f7e0d5e1b16464b695a28335f8e44a",
  1191. "reference": "52ebd235c1f7e0d5e1b16464b695a28335f8e44a",
  1192. "shasum": ""
  1193. },
  1194. "require": {
  1195. "php": ">=5.3.0",
  1196. "psr/log": "~1.0"
  1197. },
  1198. "provide": {
  1199. "psr/log-implementation": "1.0.0"
  1200. },
  1201. "require-dev": {
  1202. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1203. "doctrine/couchdb": "~1.0@dev",
  1204. "graylog2/gelf-php": "~1.0",
  1205. "php-amqplib/php-amqplib": "~2.4",
  1206. "php-console/php-console": "^3.1.3",
  1207. "phpstan/phpstan": "^0.12.59",
  1208. "phpunit/phpunit": "~4.5",
  1209. "ruflin/elastica": ">=0.90 <3.0",
  1210. "sentry/sentry": "^0.13",
  1211. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1212. },
  1213. "suggest": {
  1214. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1215. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1216. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1217. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1218. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1219. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1220. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1221. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1222. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1223. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1224. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1225. },
  1226. "type": "library",
  1227. "autoload": {
  1228. "psr-4": {
  1229. "Monolog\\": "src/Monolog"
  1230. }
  1231. },
  1232. "notification-url": "https://packagist.org/downloads/",
  1233. "license": [
  1234. "MIT"
  1235. ],
  1236. "authors": [
  1237. {
  1238. "name": "Jordi Boggiano",
  1239. "email": "j.boggiano@seld.be",
  1240. "homepage": "http://seld.be"
  1241. }
  1242. ],
  1243. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1244. "homepage": "http://github.com/Seldaek/monolog",
  1245. "keywords": [
  1246. "log",
  1247. "logging",
  1248. "psr-3"
  1249. ],
  1250. "support": {
  1251. "issues": "https://github.com/Seldaek/monolog/issues",
  1252. "source": "https://github.com/Seldaek/monolog/tree/1.27.0"
  1253. },
  1254. "funding": [
  1255. {
  1256. "url": "https://github.com/Seldaek",
  1257. "type": "github"
  1258. },
  1259. {
  1260. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1261. "type": "tidelift"
  1262. }
  1263. ],
  1264. "time": "2022-03-13T20:29:46+00:00"
  1265. },
  1266. {
  1267. "name": "mtdowling/cron-expression",
  1268. "version": "v1.2.3",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/mtdowling/cron-expression.git",
  1272. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9be552eebcc1ceec9776378f7dcc085246cacca6",
  1277. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6",
  1278. "shasum": ""
  1279. },
  1280. "require": {
  1281. "php": ">=5.3.2"
  1282. },
  1283. "require-dev": {
  1284. "phpunit/phpunit": "~4.0|~5.0"
  1285. },
  1286. "type": "library",
  1287. "autoload": {
  1288. "psr-4": {
  1289. "Cron\\": "src/Cron/"
  1290. }
  1291. },
  1292. "notification-url": "https://packagist.org/downloads/",
  1293. "license": [
  1294. "MIT"
  1295. ],
  1296. "authors": [
  1297. {
  1298. "name": "Michael Dowling",
  1299. "email": "mtdowling@gmail.com",
  1300. "homepage": "https://github.com/mtdowling"
  1301. }
  1302. ],
  1303. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1304. "keywords": [
  1305. "cron",
  1306. "schedule"
  1307. ],
  1308. "support": {
  1309. "issues": "https://github.com/mtdowling/cron-expression/issues",
  1310. "source": "https://github.com/mtdowling/cron-expression/tree/v1.2.3"
  1311. },
  1312. "abandoned": "dragonmantank/cron-expression",
  1313. "time": "2019-12-28T04:23:06+00:00"
  1314. },
  1315. {
  1316. "name": "myclabs/php-enum",
  1317. "version": "1.8.3",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/myclabs/php-enum.git",
  1321. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  1326. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  1327. "shasum": "",
  1328. "mirrors": [
  1329. {
  1330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1331. "preferred": true
  1332. }
  1333. ]
  1334. },
  1335. "require": {
  1336. "ext-json": "*",
  1337. "php": "^7.3 || ^8.0"
  1338. },
  1339. "require-dev": {
  1340. "phpunit/phpunit": "^9.5",
  1341. "squizlabs/php_codesniffer": "1.*",
  1342. "vimeo/psalm": "^4.6.2"
  1343. },
  1344. "type": "library",
  1345. "autoload": {
  1346. "psr-4": {
  1347. "MyCLabs\\Enum\\": "src/"
  1348. }
  1349. },
  1350. "notification-url": "https://packagist.org/downloads/",
  1351. "license": [
  1352. "MIT"
  1353. ],
  1354. "authors": [
  1355. {
  1356. "name": "PHP Enum contributors",
  1357. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1358. }
  1359. ],
  1360. "description": "PHP Enum implementation",
  1361. "homepage": "http://github.com/myclabs/php-enum",
  1362. "keywords": [
  1363. "enum"
  1364. ],
  1365. "support": {
  1366. "issues": "https://github.com/myclabs/php-enum/issues",
  1367. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  1368. },
  1369. "funding": [
  1370. {
  1371. "url": "https://github.com/mnapoli",
  1372. "type": "github"
  1373. },
  1374. {
  1375. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1376. "type": "tidelift"
  1377. }
  1378. ],
  1379. "time": "2021-07-05T08:18:36+00:00"
  1380. },
  1381. {
  1382. "name": "nesbot/carbon",
  1383. "version": "1.39.1",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/briannesbitt/Carbon.git",
  1387. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33",
  1392. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33",
  1393. "shasum": ""
  1394. },
  1395. "require": {
  1396. "kylekatarnls/update-helper": "^1.1",
  1397. "php": ">=5.3.9",
  1398. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  1399. },
  1400. "require-dev": {
  1401. "composer/composer": "^1.2",
  1402. "friendsofphp/php-cs-fixer": "~2",
  1403. "phpunit/phpunit": "^4.8.35 || ^5.7"
  1404. },
  1405. "bin": [
  1406. "bin/upgrade-carbon"
  1407. ],
  1408. "type": "library",
  1409. "extra": {
  1410. "update-helper": "Carbon\\Upgrade",
  1411. "laravel": {
  1412. "providers": [
  1413. "Carbon\\Laravel\\ServiceProvider"
  1414. ]
  1415. }
  1416. },
  1417. "autoload": {
  1418. "psr-4": {
  1419. "": "src/"
  1420. }
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "MIT"
  1425. ],
  1426. "authors": [
  1427. {
  1428. "name": "Brian Nesbitt",
  1429. "email": "brian@nesbot.com",
  1430. "homepage": "http://nesbot.com"
  1431. }
  1432. ],
  1433. "description": "A simple API extension for DateTime.",
  1434. "homepage": "http://carbon.nesbot.com",
  1435. "keywords": [
  1436. "date",
  1437. "datetime",
  1438. "time"
  1439. ],
  1440. "support": {
  1441. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1442. "source": "https://github.com/briannesbitt/Carbon"
  1443. },
  1444. "time": "2019-10-14T05:51:36+00:00"
  1445. },
  1446. {
  1447. "name": "nikic/php-parser",
  1448. "version": "v4.14.0",
  1449. "source": {
  1450. "type": "git",
  1451. "url": "https://github.com/nikic/PHP-Parser.git",
  1452. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  1453. },
  1454. "dist": {
  1455. "type": "zip",
  1456. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  1457. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  1458. "shasum": ""
  1459. },
  1460. "require": {
  1461. "ext-tokenizer": "*",
  1462. "php": ">=7.0"
  1463. },
  1464. "require-dev": {
  1465. "ircmaxell/php-yacc": "^0.0.7",
  1466. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1467. },
  1468. "bin": [
  1469. "bin/php-parse"
  1470. ],
  1471. "type": "library",
  1472. "extra": {
  1473. "branch-alias": {
  1474. "dev-master": "4.9-dev"
  1475. }
  1476. },
  1477. "autoload": {
  1478. "psr-4": {
  1479. "PhpParser\\": "lib/PhpParser"
  1480. }
  1481. },
  1482. "notification-url": "https://packagist.org/downloads/",
  1483. "license": [
  1484. "BSD-3-Clause"
  1485. ],
  1486. "authors": [
  1487. {
  1488. "name": "Nikita Popov"
  1489. }
  1490. ],
  1491. "description": "A PHP parser written in PHP",
  1492. "keywords": [
  1493. "parser",
  1494. "php"
  1495. ],
  1496. "support": {
  1497. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1498. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  1499. },
  1500. "time": "2022-05-31T20:59:12+00:00"
  1501. },
  1502. {
  1503. "name": "paragonie/random_compat",
  1504. "version": "v2.0.21",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/paragonie/random_compat.git",
  1508. "reference": "96c132c7f2f7bc3230723b66e89f8f150b29d5ae"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/96c132c7f2f7bc3230723b66e89f8f150b29d5ae",
  1513. "reference": "96c132c7f2f7bc3230723b66e89f8f150b29d5ae",
  1514. "shasum": ""
  1515. },
  1516. "require": {
  1517. "php": ">=5.2.0"
  1518. },
  1519. "require-dev": {
  1520. "phpunit/phpunit": "*"
  1521. },
  1522. "suggest": {
  1523. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1524. },
  1525. "type": "library",
  1526. "autoload": {
  1527. "files": [
  1528. "lib/random.php"
  1529. ]
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "license": [
  1533. "MIT"
  1534. ],
  1535. "authors": [
  1536. {
  1537. "name": "Paragon Initiative Enterprises",
  1538. "email": "security@paragonie.com",
  1539. "homepage": "https://paragonie.com"
  1540. }
  1541. ],
  1542. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1543. "keywords": [
  1544. "csprng",
  1545. "polyfill",
  1546. "pseudorandom",
  1547. "random"
  1548. ],
  1549. "support": {
  1550. "email": "info@paragonie.com",
  1551. "issues": "https://github.com/paragonie/random_compat/issues",
  1552. "source": "https://github.com/paragonie/random_compat"
  1553. },
  1554. "time": "2022-02-16T17:07:03+00:00"
  1555. },
  1556. {
  1557. "name": "phpoffice/phpspreadsheet",
  1558. "version": "1.23.0",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1562. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/21e4cf62699eebf007db28775f7d1554e612ed9e",
  1567. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e",
  1568. "shasum": "",
  1569. "mirrors": [
  1570. {
  1571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1572. "preferred": true
  1573. }
  1574. ]
  1575. },
  1576. "require": {
  1577. "ext-ctype": "*",
  1578. "ext-dom": "*",
  1579. "ext-fileinfo": "*",
  1580. "ext-gd": "*",
  1581. "ext-iconv": "*",
  1582. "ext-libxml": "*",
  1583. "ext-mbstring": "*",
  1584. "ext-simplexml": "*",
  1585. "ext-xml": "*",
  1586. "ext-xmlreader": "*",
  1587. "ext-xmlwriter": "*",
  1588. "ext-zip": "*",
  1589. "ext-zlib": "*",
  1590. "ezyang/htmlpurifier": "^4.13",
  1591. "maennchen/zipstream-php": "^2.1",
  1592. "markbaker/complex": "^3.0",
  1593. "markbaker/matrix": "^3.0",
  1594. "php": "^7.3 || ^8.0",
  1595. "psr/http-client": "^1.0",
  1596. "psr/http-factory": "^1.0",
  1597. "psr/simple-cache": "^1.0 || ^2.0"
  1598. },
  1599. "require-dev": {
  1600. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1601. "dompdf/dompdf": "^1.0",
  1602. "friendsofphp/php-cs-fixer": "^3.2",
  1603. "jpgraph/jpgraph": "^4.0",
  1604. "mpdf/mpdf": "8.0.17",
  1605. "phpcompatibility/php-compatibility": "^9.3",
  1606. "phpstan/phpstan": "^1.1",
  1607. "phpstan/phpstan-phpunit": "^1.0",
  1608. "phpunit/phpunit": "^8.5 || ^9.0",
  1609. "squizlabs/php_codesniffer": "^3.6",
  1610. "tecnickcom/tcpdf": "^6.4"
  1611. },
  1612. "suggest": {
  1613. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  1614. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1615. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1616. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  1617. },
  1618. "type": "library",
  1619. "autoload": {
  1620. "psr-4": {
  1621. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1622. }
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "authors": [
  1629. {
  1630. "name": "Maarten Balliauw",
  1631. "homepage": "https://blog.maartenballiauw.be"
  1632. },
  1633. {
  1634. "name": "Mark Baker",
  1635. "homepage": "https://markbakeruk.net"
  1636. },
  1637. {
  1638. "name": "Franck Lefevre",
  1639. "homepage": "https://rootslabs.net"
  1640. },
  1641. {
  1642. "name": "Erik Tilt"
  1643. },
  1644. {
  1645. "name": "Adrien Crivelli"
  1646. }
  1647. ],
  1648. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1649. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1650. "keywords": [
  1651. "OpenXML",
  1652. "excel",
  1653. "gnumeric",
  1654. "ods",
  1655. "php",
  1656. "spreadsheet",
  1657. "xls",
  1658. "xlsx"
  1659. ],
  1660. "support": {
  1661. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  1662. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.23.0"
  1663. },
  1664. "time": "2022-04-24T13:53:10+00:00"
  1665. },
  1666. {
  1667. "name": "predis/predis",
  1668. "version": "v1.1.10",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/predis/predis.git",
  1672. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  1677. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "php": ">=5.3.9"
  1682. },
  1683. "require-dev": {
  1684. "phpunit/phpunit": "~4.8"
  1685. },
  1686. "suggest": {
  1687. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  1688. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  1689. },
  1690. "type": "library",
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Predis\\": "src/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Daniele Alessandri",
  1703. "email": "suppakilla@gmail.com",
  1704. "homepage": "http://clorophilla.net",
  1705. "role": "Creator & Maintainer"
  1706. },
  1707. {
  1708. "name": "Till Krüss",
  1709. "homepage": "https://till.im",
  1710. "role": "Maintainer"
  1711. }
  1712. ],
  1713. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  1714. "homepage": "http://github.com/predis/predis",
  1715. "keywords": [
  1716. "nosql",
  1717. "predis",
  1718. "redis"
  1719. ],
  1720. "support": {
  1721. "issues": "https://github.com/predis/predis/issues",
  1722. "source": "https://github.com/predis/predis/tree/v1.1.10"
  1723. },
  1724. "funding": [
  1725. {
  1726. "url": "https://github.com/sponsors/tillkruss",
  1727. "type": "github"
  1728. }
  1729. ],
  1730. "time": "2022-01-05T17:46:08+00:00"
  1731. },
  1732. {
  1733. "name": "psr/http-client",
  1734. "version": "1.0.1",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/php-fig/http-client.git",
  1738. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1743. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1744. "shasum": "",
  1745. "mirrors": [
  1746. {
  1747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1748. "preferred": true
  1749. }
  1750. ]
  1751. },
  1752. "require": {
  1753. "php": "^7.0 || ^8.0",
  1754. "psr/http-message": "^1.0"
  1755. },
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-master": "1.0.x-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "Psr\\Http\\Client\\": "src/"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "PHP-FIG",
  1774. "homepage": "http://www.php-fig.org/"
  1775. }
  1776. ],
  1777. "description": "Common interface for HTTP clients",
  1778. "homepage": "https://github.com/php-fig/http-client",
  1779. "keywords": [
  1780. "http",
  1781. "http-client",
  1782. "psr",
  1783. "psr-18"
  1784. ],
  1785. "support": {
  1786. "source": "https://github.com/php-fig/http-client/tree/master"
  1787. },
  1788. "time": "2020-06-29T06:28:15+00:00"
  1789. },
  1790. {
  1791. "name": "psr/http-factory",
  1792. "version": "1.0.1",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/php-fig/http-factory.git",
  1796. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1801. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1802. "shasum": "",
  1803. "mirrors": [
  1804. {
  1805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1806. "preferred": true
  1807. }
  1808. ]
  1809. },
  1810. "require": {
  1811. "php": ">=7.0.0",
  1812. "psr/http-message": "^1.0"
  1813. },
  1814. "type": "library",
  1815. "extra": {
  1816. "branch-alias": {
  1817. "dev-master": "1.0.x-dev"
  1818. }
  1819. },
  1820. "autoload": {
  1821. "psr-4": {
  1822. "Psr\\Http\\Message\\": "src/"
  1823. }
  1824. },
  1825. "notification-url": "https://packagist.org/downloads/",
  1826. "license": [
  1827. "MIT"
  1828. ],
  1829. "authors": [
  1830. {
  1831. "name": "PHP-FIG",
  1832. "homepage": "http://www.php-fig.org/"
  1833. }
  1834. ],
  1835. "description": "Common interfaces for PSR-7 HTTP message factories",
  1836. "keywords": [
  1837. "factory",
  1838. "http",
  1839. "message",
  1840. "psr",
  1841. "psr-17",
  1842. "psr-7",
  1843. "request",
  1844. "response"
  1845. ],
  1846. "support": {
  1847. "source": "https://github.com/php-fig/http-factory/tree/master"
  1848. },
  1849. "time": "2019-04-30T12:38:16+00:00"
  1850. },
  1851. {
  1852. "name": "psr/http-message",
  1853. "version": "1.0.1",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/php-fig/http-message.git",
  1857. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1862. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1863. "shasum": "",
  1864. "mirrors": [
  1865. {
  1866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1867. "preferred": true
  1868. }
  1869. ]
  1870. },
  1871. "require": {
  1872. "php": ">=5.3.0"
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "1.0.x-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "psr-4": {
  1882. "Psr\\Http\\Message\\": "src/"
  1883. }
  1884. },
  1885. "notification-url": "https://packagist.org/downloads/",
  1886. "license": [
  1887. "MIT"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "PHP-FIG",
  1892. "homepage": "http://www.php-fig.org/"
  1893. }
  1894. ],
  1895. "description": "Common interface for HTTP messages",
  1896. "homepage": "https://github.com/php-fig/http-message",
  1897. "keywords": [
  1898. "http",
  1899. "http-message",
  1900. "psr",
  1901. "psr-7",
  1902. "request",
  1903. "response"
  1904. ],
  1905. "support": {
  1906. "source": "https://github.com/php-fig/http-message/tree/master"
  1907. },
  1908. "time": "2016-08-06T14:39:51+00:00"
  1909. },
  1910. {
  1911. "name": "psr/log",
  1912. "version": "1.1.4",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/php-fig/log.git",
  1916. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1921. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1922. "shasum": ""
  1923. },
  1924. "require": {
  1925. "php": ">=5.3.0"
  1926. },
  1927. "type": "library",
  1928. "extra": {
  1929. "branch-alias": {
  1930. "dev-master": "1.1.x-dev"
  1931. }
  1932. },
  1933. "autoload": {
  1934. "psr-4": {
  1935. "Psr\\Log\\": "Psr/Log/"
  1936. }
  1937. },
  1938. "notification-url": "https://packagist.org/downloads/",
  1939. "license": [
  1940. "MIT"
  1941. ],
  1942. "authors": [
  1943. {
  1944. "name": "PHP-FIG",
  1945. "homepage": "https://www.php-fig.org/"
  1946. }
  1947. ],
  1948. "description": "Common interface for logging libraries",
  1949. "homepage": "https://github.com/php-fig/log",
  1950. "keywords": [
  1951. "log",
  1952. "psr",
  1953. "psr-3"
  1954. ],
  1955. "support": {
  1956. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1957. },
  1958. "time": "2021-05-03T11:20:27+00:00"
  1959. },
  1960. {
  1961. "name": "psr/simple-cache",
  1962. "version": "1.0.1",
  1963. "source": {
  1964. "type": "git",
  1965. "url": "https://github.com/php-fig/simple-cache.git",
  1966. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1967. },
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1971. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1972. "shasum": "",
  1973. "mirrors": [
  1974. {
  1975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1976. "preferred": true
  1977. }
  1978. ]
  1979. },
  1980. "require": {
  1981. "php": ">=5.3.0"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-master": "1.0.x-dev"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "psr-4": {
  1991. "Psr\\SimpleCache\\": "src/"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "PHP-FIG",
  2001. "homepage": "http://www.php-fig.org/"
  2002. }
  2003. ],
  2004. "description": "Common interfaces for simple caching",
  2005. "keywords": [
  2006. "cache",
  2007. "caching",
  2008. "psr",
  2009. "psr-16",
  2010. "simple-cache"
  2011. ],
  2012. "support": {
  2013. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2014. },
  2015. "time": "2017-10-23T01:57:42+00:00"
  2016. },
  2017. {
  2018. "name": "psy/psysh",
  2019. "version": "v0.9.12",
  2020. "source": {
  2021. "type": "git",
  2022. "url": "https://github.com/bobthecow/psysh.git",
  2023. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  2024. },
  2025. "dist": {
  2026. "type": "zip",
  2027. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  2028. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  2029. "shasum": ""
  2030. },
  2031. "require": {
  2032. "dnoegel/php-xdg-base-dir": "0.1.*",
  2033. "ext-json": "*",
  2034. "ext-tokenizer": "*",
  2035. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  2036. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  2037. "php": ">=5.4.0",
  2038. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  2039. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  2040. },
  2041. "require-dev": {
  2042. "bamarni/composer-bin-plugin": "^1.2",
  2043. "hoa/console": "~2.15|~3.16",
  2044. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  2045. },
  2046. "suggest": {
  2047. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2048. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2049. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2050. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2051. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2052. },
  2053. "bin": [
  2054. "bin/psysh"
  2055. ],
  2056. "type": "library",
  2057. "extra": {
  2058. "branch-alias": {
  2059. "dev-develop": "0.9.x-dev"
  2060. }
  2061. },
  2062. "autoload": {
  2063. "files": [
  2064. "src/functions.php"
  2065. ],
  2066. "psr-4": {
  2067. "Psy\\": "src/"
  2068. }
  2069. },
  2070. "notification-url": "https://packagist.org/downloads/",
  2071. "license": [
  2072. "MIT"
  2073. ],
  2074. "authors": [
  2075. {
  2076. "name": "Justin Hileman",
  2077. "email": "justin@justinhileman.info",
  2078. "homepage": "http://justinhileman.com"
  2079. }
  2080. ],
  2081. "description": "An interactive shell for modern PHP.",
  2082. "homepage": "http://psysh.org",
  2083. "keywords": [
  2084. "REPL",
  2085. "console",
  2086. "interactive",
  2087. "shell"
  2088. ],
  2089. "support": {
  2090. "issues": "https://github.com/bobthecow/psysh/issues",
  2091. "source": "https://github.com/bobthecow/psysh/tree/v0.9.12"
  2092. },
  2093. "time": "2019-12-06T14:19:43+00:00"
  2094. },
  2095. {
  2096. "name": "ramsey/uuid",
  2097. "version": "3.9.6",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/ramsey/uuid.git",
  2101. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ffa80ab953edd85d5b6c004f96181a538aad35a3",
  2106. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "ext-json": "*",
  2111. "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
  2112. "php": "^5.4 | ^7.0 | ^8.0",
  2113. "symfony/polyfill-ctype": "^1.8"
  2114. },
  2115. "replace": {
  2116. "rhumsaa/uuid": "self.version"
  2117. },
  2118. "require-dev": {
  2119. "codeception/aspect-mock": "^1 | ^2",
  2120. "doctrine/annotations": "^1.2",
  2121. "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
  2122. "mockery/mockery": "^0.9.11 | ^1",
  2123. "moontoast/math": "^1.1",
  2124. "nikic/php-parser": "<=4.5.0",
  2125. "paragonie/random-lib": "^2",
  2126. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  2127. "php-parallel-lint/php-parallel-lint": "^1.3",
  2128. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  2129. "squizlabs/php_codesniffer": "^3.5",
  2130. "yoast/phpunit-polyfills": "^1.0"
  2131. },
  2132. "suggest": {
  2133. "ext-ctype": "Provides support for PHP Ctype functions",
  2134. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2135. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  2136. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2137. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2138. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2139. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2140. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2141. },
  2142. "type": "library",
  2143. "extra": {
  2144. "branch-alias": {
  2145. "dev-master": "3.x-dev"
  2146. }
  2147. },
  2148. "autoload": {
  2149. "files": [
  2150. "src/functions.php"
  2151. ],
  2152. "psr-4": {
  2153. "Ramsey\\Uuid\\": "src/"
  2154. }
  2155. },
  2156. "notification-url": "https://packagist.org/downloads/",
  2157. "license": [
  2158. "MIT"
  2159. ],
  2160. "authors": [
  2161. {
  2162. "name": "Ben Ramsey",
  2163. "email": "ben@benramsey.com",
  2164. "homepage": "https://benramsey.com"
  2165. },
  2166. {
  2167. "name": "Marijn Huizendveld",
  2168. "email": "marijn.huizendveld@gmail.com"
  2169. },
  2170. {
  2171. "name": "Thibaud Fabre",
  2172. "email": "thibaud@aztech.io"
  2173. }
  2174. ],
  2175. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2176. "homepage": "https://github.com/ramsey/uuid",
  2177. "keywords": [
  2178. "guid",
  2179. "identifier",
  2180. "uuid"
  2181. ],
  2182. "support": {
  2183. "issues": "https://github.com/ramsey/uuid/issues",
  2184. "rss": "https://github.com/ramsey/uuid/releases.atom",
  2185. "source": "https://github.com/ramsey/uuid",
  2186. "wiki": "https://github.com/ramsey/uuid/wiki"
  2187. },
  2188. "funding": [
  2189. {
  2190. "url": "https://github.com/ramsey",
  2191. "type": "github"
  2192. },
  2193. {
  2194. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2195. "type": "tidelift"
  2196. }
  2197. ],
  2198. "time": "2021-09-25T23:07:42+00:00"
  2199. },
  2200. {
  2201. "name": "react/promise",
  2202. "version": "v2.9.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://github.com/reactphp/promise.git",
  2206. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  2211. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  2212. "shasum": ""
  2213. },
  2214. "require": {
  2215. "php": ">=5.4.0"
  2216. },
  2217. "require-dev": {
  2218. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  2219. },
  2220. "type": "library",
  2221. "autoload": {
  2222. "files": [
  2223. "src/functions_include.php"
  2224. ],
  2225. "psr-4": {
  2226. "React\\Promise\\": "src/"
  2227. }
  2228. },
  2229. "notification-url": "https://packagist.org/downloads/",
  2230. "license": [
  2231. "MIT"
  2232. ],
  2233. "authors": [
  2234. {
  2235. "name": "Jan Sorgalla",
  2236. "email": "jsorgalla@gmail.com",
  2237. "homepage": "https://sorgalla.com/"
  2238. },
  2239. {
  2240. "name": "Christian Lück",
  2241. "email": "christian@clue.engineering",
  2242. "homepage": "https://clue.engineering/"
  2243. },
  2244. {
  2245. "name": "Cees-Jan Kiewiet",
  2246. "email": "reactphp@ceesjankiewiet.nl",
  2247. "homepage": "https://wyrihaximus.net/"
  2248. },
  2249. {
  2250. "name": "Chris Boden",
  2251. "email": "cboden@gmail.com",
  2252. "homepage": "https://cboden.dev/"
  2253. }
  2254. ],
  2255. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  2256. "keywords": [
  2257. "promise",
  2258. "promises"
  2259. ],
  2260. "support": {
  2261. "issues": "https://github.com/reactphp/promise/issues",
  2262. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  2263. },
  2264. "funding": [
  2265. {
  2266. "url": "https://github.com/WyriHaximus",
  2267. "type": "github"
  2268. },
  2269. {
  2270. "url": "https://github.com/clue",
  2271. "type": "github"
  2272. }
  2273. ],
  2274. "time": "2022-02-11T10:27:51+00:00"
  2275. },
  2276. {
  2277. "name": "swiftmailer/swiftmailer",
  2278. "version": "v5.4.12",
  2279. "source": {
  2280. "type": "git",
  2281. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2282. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  2283. },
  2284. "dist": {
  2285. "type": "zip",
  2286. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  2287. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  2288. "shasum": ""
  2289. },
  2290. "require": {
  2291. "php": ">=5.3.3"
  2292. },
  2293. "require-dev": {
  2294. "mockery/mockery": "~0.9.1",
  2295. "symfony/phpunit-bridge": "~3.2"
  2296. },
  2297. "type": "library",
  2298. "extra": {
  2299. "branch-alias": {
  2300. "dev-master": "5.4-dev"
  2301. }
  2302. },
  2303. "autoload": {
  2304. "files": [
  2305. "lib/swift_required.php"
  2306. ]
  2307. },
  2308. "notification-url": "https://packagist.org/downloads/",
  2309. "license": [
  2310. "MIT"
  2311. ],
  2312. "authors": [
  2313. {
  2314. "name": "Chris Corbyn"
  2315. },
  2316. {
  2317. "name": "Fabien Potencier",
  2318. "email": "fabien@symfony.com"
  2319. }
  2320. ],
  2321. "description": "Swiftmailer, free feature-rich PHP mailer",
  2322. "homepage": "https://swiftmailer.symfony.com",
  2323. "keywords": [
  2324. "email",
  2325. "mail",
  2326. "mailer"
  2327. ],
  2328. "support": {
  2329. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2330. "source": "https://github.com/swiftmailer/swiftmailer/tree/v5.4.12"
  2331. },
  2332. "abandoned": "symfony/mailer",
  2333. "time": "2018-07-31T09:26:32+00:00"
  2334. },
  2335. {
  2336. "name": "symfony/console",
  2337. "version": "v3.4.47",
  2338. "source": {
  2339. "type": "git",
  2340. "url": "https://github.com/symfony/console.git",
  2341. "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81"
  2342. },
  2343. "dist": {
  2344. "type": "zip",
  2345. "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81",
  2346. "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81",
  2347. "shasum": ""
  2348. },
  2349. "require": {
  2350. "php": "^5.5.9|>=7.0.8",
  2351. "symfony/debug": "~2.8|~3.0|~4.0",
  2352. "symfony/polyfill-mbstring": "~1.0"
  2353. },
  2354. "conflict": {
  2355. "symfony/dependency-injection": "<3.4",
  2356. "symfony/process": "<3.3"
  2357. },
  2358. "provide": {
  2359. "psr/log-implementation": "1.0"
  2360. },
  2361. "require-dev": {
  2362. "psr/log": "~1.0",
  2363. "symfony/config": "~3.3|~4.0",
  2364. "symfony/dependency-injection": "~3.4|~4.0",
  2365. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2366. "symfony/lock": "~3.4|~4.0",
  2367. "symfony/process": "~3.3|~4.0"
  2368. },
  2369. "suggest": {
  2370. "psr/log": "For using the console logger",
  2371. "symfony/event-dispatcher": "",
  2372. "symfony/lock": "",
  2373. "symfony/process": ""
  2374. },
  2375. "type": "library",
  2376. "autoload": {
  2377. "psr-4": {
  2378. "Symfony\\Component\\Console\\": ""
  2379. },
  2380. "exclude-from-classmap": [
  2381. "/Tests/"
  2382. ]
  2383. },
  2384. "notification-url": "https://packagist.org/downloads/",
  2385. "license": [
  2386. "MIT"
  2387. ],
  2388. "authors": [
  2389. {
  2390. "name": "Fabien Potencier",
  2391. "email": "fabien@symfony.com"
  2392. },
  2393. {
  2394. "name": "Symfony Community",
  2395. "homepage": "https://symfony.com/contributors"
  2396. }
  2397. ],
  2398. "description": "Symfony Console Component",
  2399. "homepage": "https://symfony.com",
  2400. "support": {
  2401. "source": "https://github.com/symfony/console/tree/v3.4.47"
  2402. },
  2403. "funding": [
  2404. {
  2405. "url": "https://symfony.com/sponsor",
  2406. "type": "custom"
  2407. },
  2408. {
  2409. "url": "https://github.com/fabpot",
  2410. "type": "github"
  2411. },
  2412. {
  2413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2414. "type": "tidelift"
  2415. }
  2416. ],
  2417. "time": "2020-10-24T10:57:07+00:00"
  2418. },
  2419. {
  2420. "name": "symfony/css-selector",
  2421. "version": "v5.4.3",
  2422. "source": {
  2423. "type": "git",
  2424. "url": "https://github.com/symfony/css-selector.git",
  2425. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  2426. },
  2427. "dist": {
  2428. "type": "zip",
  2429. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  2430. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  2431. "shasum": ""
  2432. },
  2433. "require": {
  2434. "php": ">=7.2.5",
  2435. "symfony/polyfill-php80": "^1.16"
  2436. },
  2437. "type": "library",
  2438. "autoload": {
  2439. "psr-4": {
  2440. "Symfony\\Component\\CssSelector\\": ""
  2441. },
  2442. "exclude-from-classmap": [
  2443. "/Tests/"
  2444. ]
  2445. },
  2446. "notification-url": "https://packagist.org/downloads/",
  2447. "license": [
  2448. "MIT"
  2449. ],
  2450. "authors": [
  2451. {
  2452. "name": "Fabien Potencier",
  2453. "email": "fabien@symfony.com"
  2454. },
  2455. {
  2456. "name": "Jean-François Simon",
  2457. "email": "jeanfrancois.simon@sensiolabs.com"
  2458. },
  2459. {
  2460. "name": "Symfony Community",
  2461. "homepage": "https://symfony.com/contributors"
  2462. }
  2463. ],
  2464. "description": "Converts CSS selectors to XPath expressions",
  2465. "homepage": "https://symfony.com",
  2466. "support": {
  2467. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  2468. },
  2469. "funding": [
  2470. {
  2471. "url": "https://symfony.com/sponsor",
  2472. "type": "custom"
  2473. },
  2474. {
  2475. "url": "https://github.com/fabpot",
  2476. "type": "github"
  2477. },
  2478. {
  2479. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2480. "type": "tidelift"
  2481. }
  2482. ],
  2483. "time": "2022-01-02T09:53:40+00:00"
  2484. },
  2485. {
  2486. "name": "symfony/debug",
  2487. "version": "v3.4.47",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/symfony/debug.git",
  2491. "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae",
  2496. "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "php": "^5.5.9|>=7.0.8",
  2501. "psr/log": "~1.0"
  2502. },
  2503. "conflict": {
  2504. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2505. },
  2506. "require-dev": {
  2507. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2508. },
  2509. "type": "library",
  2510. "autoload": {
  2511. "psr-4": {
  2512. "Symfony\\Component\\Debug\\": ""
  2513. },
  2514. "exclude-from-classmap": [
  2515. "/Tests/"
  2516. ]
  2517. },
  2518. "notification-url": "https://packagist.org/downloads/",
  2519. "license": [
  2520. "MIT"
  2521. ],
  2522. "authors": [
  2523. {
  2524. "name": "Fabien Potencier",
  2525. "email": "fabien@symfony.com"
  2526. },
  2527. {
  2528. "name": "Symfony Community",
  2529. "homepage": "https://symfony.com/contributors"
  2530. }
  2531. ],
  2532. "description": "Symfony Debug Component",
  2533. "homepage": "https://symfony.com",
  2534. "support": {
  2535. "source": "https://github.com/symfony/debug/tree/v3.4.47"
  2536. },
  2537. "funding": [
  2538. {
  2539. "url": "https://symfony.com/sponsor",
  2540. "type": "custom"
  2541. },
  2542. {
  2543. "url": "https://github.com/fabpot",
  2544. "type": "github"
  2545. },
  2546. {
  2547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2548. "type": "tidelift"
  2549. }
  2550. ],
  2551. "time": "2020-10-24T10:57:07+00:00"
  2552. },
  2553. {
  2554. "name": "symfony/event-dispatcher",
  2555. "version": "v4.4.42",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/symfony/event-dispatcher.git",
  2559. "reference": "708e761740c16b02c86e3f0c932018a06b895d40"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/708e761740c16b02c86e3f0c932018a06b895d40",
  2564. "reference": "708e761740c16b02c86e3f0c932018a06b895d40",
  2565. "shasum": ""
  2566. },
  2567. "require": {
  2568. "php": ">=7.1.3",
  2569. "symfony/event-dispatcher-contracts": "^1.1",
  2570. "symfony/polyfill-php80": "^1.16"
  2571. },
  2572. "conflict": {
  2573. "symfony/dependency-injection": "<3.4"
  2574. },
  2575. "provide": {
  2576. "psr/event-dispatcher-implementation": "1.0",
  2577. "symfony/event-dispatcher-implementation": "1.1"
  2578. },
  2579. "require-dev": {
  2580. "psr/log": "^1|^2|^3",
  2581. "symfony/config": "^3.4|^4.0|^5.0",
  2582. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2583. "symfony/error-handler": "~3.4|~4.4",
  2584. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2585. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2586. "symfony/service-contracts": "^1.1|^2",
  2587. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2588. },
  2589. "suggest": {
  2590. "symfony/dependency-injection": "",
  2591. "symfony/http-kernel": ""
  2592. },
  2593. "type": "library",
  2594. "autoload": {
  2595. "psr-4": {
  2596. "Symfony\\Component\\EventDispatcher\\": ""
  2597. },
  2598. "exclude-from-classmap": [
  2599. "/Tests/"
  2600. ]
  2601. },
  2602. "notification-url": "https://packagist.org/downloads/",
  2603. "license": [
  2604. "MIT"
  2605. ],
  2606. "authors": [
  2607. {
  2608. "name": "Fabien Potencier",
  2609. "email": "fabien@symfony.com"
  2610. },
  2611. {
  2612. "name": "Symfony Community",
  2613. "homepage": "https://symfony.com/contributors"
  2614. }
  2615. ],
  2616. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2617. "homepage": "https://symfony.com",
  2618. "support": {
  2619. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.42"
  2620. },
  2621. "funding": [
  2622. {
  2623. "url": "https://symfony.com/sponsor",
  2624. "type": "custom"
  2625. },
  2626. {
  2627. "url": "https://github.com/fabpot",
  2628. "type": "github"
  2629. },
  2630. {
  2631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2632. "type": "tidelift"
  2633. }
  2634. ],
  2635. "time": "2022-05-05T15:33:49+00:00"
  2636. },
  2637. {
  2638. "name": "symfony/event-dispatcher-contracts",
  2639. "version": "v1.1.12",
  2640. "source": {
  2641. "type": "git",
  2642. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2643. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  2644. },
  2645. "dist": {
  2646. "type": "zip",
  2647. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  2648. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  2649. "shasum": ""
  2650. },
  2651. "require": {
  2652. "php": ">=7.1.3"
  2653. },
  2654. "suggest": {
  2655. "psr/event-dispatcher": "",
  2656. "symfony/event-dispatcher-implementation": ""
  2657. },
  2658. "type": "library",
  2659. "extra": {
  2660. "branch-alias": {
  2661. "dev-main": "1.1-dev"
  2662. },
  2663. "thanks": {
  2664. "name": "symfony/contracts",
  2665. "url": "https://github.com/symfony/contracts"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "Symfony\\Contracts\\EventDispatcher\\": ""
  2671. }
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "MIT"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "Nicolas Grekas",
  2680. "email": "p@tchwork.com"
  2681. },
  2682. {
  2683. "name": "Symfony Community",
  2684. "homepage": "https://symfony.com/contributors"
  2685. }
  2686. ],
  2687. "description": "Generic abstractions related to dispatching event",
  2688. "homepage": "https://symfony.com",
  2689. "keywords": [
  2690. "abstractions",
  2691. "contracts",
  2692. "decoupling",
  2693. "interfaces",
  2694. "interoperability",
  2695. "standards"
  2696. ],
  2697. "support": {
  2698. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.12"
  2699. },
  2700. "funding": [
  2701. {
  2702. "url": "https://symfony.com/sponsor",
  2703. "type": "custom"
  2704. },
  2705. {
  2706. "url": "https://github.com/fabpot",
  2707. "type": "github"
  2708. },
  2709. {
  2710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2711. "type": "tidelift"
  2712. }
  2713. ],
  2714. "time": "2022-01-02T09:41:36+00:00"
  2715. },
  2716. {
  2717. "name": "symfony/finder",
  2718. "version": "v3.4.47",
  2719. "source": {
  2720. "type": "git",
  2721. "url": "https://github.com/symfony/finder.git",
  2722. "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e"
  2723. },
  2724. "dist": {
  2725. "type": "zip",
  2726. "url": "https://api.github.com/repos/symfony/finder/zipball/b6b6ad3db3edb1b4b1c1896b1975fb684994de6e",
  2727. "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e",
  2728. "shasum": ""
  2729. },
  2730. "require": {
  2731. "php": "^5.5.9|>=7.0.8"
  2732. },
  2733. "type": "library",
  2734. "autoload": {
  2735. "psr-4": {
  2736. "Symfony\\Component\\Finder\\": ""
  2737. },
  2738. "exclude-from-classmap": [
  2739. "/Tests/"
  2740. ]
  2741. },
  2742. "notification-url": "https://packagist.org/downloads/",
  2743. "license": [
  2744. "MIT"
  2745. ],
  2746. "authors": [
  2747. {
  2748. "name": "Fabien Potencier",
  2749. "email": "fabien@symfony.com"
  2750. },
  2751. {
  2752. "name": "Symfony Community",
  2753. "homepage": "https://symfony.com/contributors"
  2754. }
  2755. ],
  2756. "description": "Symfony Finder Component",
  2757. "homepage": "https://symfony.com",
  2758. "support": {
  2759. "source": "https://github.com/symfony/finder/tree/v3.4.47"
  2760. },
  2761. "funding": [
  2762. {
  2763. "url": "https://symfony.com/sponsor",
  2764. "type": "custom"
  2765. },
  2766. {
  2767. "url": "https://github.com/fabpot",
  2768. "type": "github"
  2769. },
  2770. {
  2771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2772. "type": "tidelift"
  2773. }
  2774. ],
  2775. "time": "2020-11-16T17:02:08+00:00"
  2776. },
  2777. {
  2778. "name": "symfony/http-foundation",
  2779. "version": "v3.4.47",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://github.com/symfony/http-foundation.git",
  2783. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b9885fcce6fe494201da4f70a9309770e9d13dc8",
  2788. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8",
  2789. "shasum": ""
  2790. },
  2791. "require": {
  2792. "php": "^5.5.9|>=7.0.8",
  2793. "symfony/polyfill-mbstring": "~1.1",
  2794. "symfony/polyfill-php70": "~1.6"
  2795. },
  2796. "require-dev": {
  2797. "symfony/expression-language": "~2.8|~3.0|~4.0"
  2798. },
  2799. "type": "library",
  2800. "autoload": {
  2801. "psr-4": {
  2802. "Symfony\\Component\\HttpFoundation\\": ""
  2803. },
  2804. "exclude-from-classmap": [
  2805. "/Tests/"
  2806. ]
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "Fabien Potencier",
  2815. "email": "fabien@symfony.com"
  2816. },
  2817. {
  2818. "name": "Symfony Community",
  2819. "homepage": "https://symfony.com/contributors"
  2820. }
  2821. ],
  2822. "description": "Symfony HttpFoundation Component",
  2823. "homepage": "https://symfony.com",
  2824. "support": {
  2825. "source": "https://github.com/symfony/http-foundation/tree/v3.4.47"
  2826. },
  2827. "funding": [
  2828. {
  2829. "url": "https://symfony.com/sponsor",
  2830. "type": "custom"
  2831. },
  2832. {
  2833. "url": "https://github.com/fabpot",
  2834. "type": "github"
  2835. },
  2836. {
  2837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2838. "type": "tidelift"
  2839. }
  2840. ],
  2841. "time": "2020-10-24T10:57:07+00:00"
  2842. },
  2843. {
  2844. "name": "symfony/http-kernel",
  2845. "version": "v3.4.49",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/symfony/http-kernel.git",
  2849. "reference": "5aa72405f5bd5583c36ed6e756acb17d3f98ac40"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5aa72405f5bd5583c36ed6e756acb17d3f98ac40",
  2854. "reference": "5aa72405f5bd5583c36ed6e756acb17d3f98ac40",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "php": "^5.5.9|>=7.0.8",
  2859. "psr/log": "~1.0",
  2860. "symfony/debug": "^3.3.3|~4.0",
  2861. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2862. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  2863. "symfony/polyfill-ctype": "~1.8",
  2864. "symfony/polyfill-php56": "~1.8"
  2865. },
  2866. "conflict": {
  2867. "symfony/config": "<2.8",
  2868. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  2869. "symfony/var-dumper": "<3.3",
  2870. "twig/twig": "<1.34|<2.4,>=2"
  2871. },
  2872. "provide": {
  2873. "psr/log-implementation": "1.0"
  2874. },
  2875. "require-dev": {
  2876. "psr/cache": "~1.0",
  2877. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  2878. "symfony/class-loader": "~2.8|~3.0",
  2879. "symfony/config": "~2.8|~3.0|~4.0",
  2880. "symfony/console": "~2.8|~3.0|~4.0",
  2881. "symfony/css-selector": "~2.8|~3.0|~4.0",
  2882. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  2883. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  2884. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2885. "symfony/finder": "~2.8|~3.0|~4.0",
  2886. "symfony/process": "~2.8|~3.0|~4.0",
  2887. "symfony/routing": "~3.4|~4.0",
  2888. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  2889. "symfony/templating": "~2.8|~3.0|~4.0",
  2890. "symfony/translation": "~2.8|~3.0|~4.0",
  2891. "symfony/var-dumper": "~3.3|~4.0"
  2892. },
  2893. "suggest": {
  2894. "symfony/browser-kit": "",
  2895. "symfony/config": "",
  2896. "symfony/console": "",
  2897. "symfony/dependency-injection": "",
  2898. "symfony/finder": "",
  2899. "symfony/var-dumper": ""
  2900. },
  2901. "type": "library",
  2902. "autoload": {
  2903. "psr-4": {
  2904. "Symfony\\Component\\HttpKernel\\": ""
  2905. },
  2906. "exclude-from-classmap": [
  2907. "/Tests/"
  2908. ]
  2909. },
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "MIT"
  2913. ],
  2914. "authors": [
  2915. {
  2916. "name": "Fabien Potencier",
  2917. "email": "fabien@symfony.com"
  2918. },
  2919. {
  2920. "name": "Symfony Community",
  2921. "homepage": "https://symfony.com/contributors"
  2922. }
  2923. ],
  2924. "description": "Symfony HttpKernel Component",
  2925. "homepage": "https://symfony.com",
  2926. "support": {
  2927. "source": "https://github.com/symfony/http-kernel/tree/v3.4.49"
  2928. },
  2929. "funding": [
  2930. {
  2931. "url": "https://symfony.com/sponsor",
  2932. "type": "custom"
  2933. },
  2934. {
  2935. "url": "https://github.com/fabpot",
  2936. "type": "github"
  2937. },
  2938. {
  2939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2940. "type": "tidelift"
  2941. }
  2942. ],
  2943. "time": "2021-05-19T12:06:59+00:00"
  2944. },
  2945. {
  2946. "name": "symfony/polyfill-ctype",
  2947. "version": "v1.25.0",
  2948. "source": {
  2949. "type": "git",
  2950. "url": "https://github.com/symfony/polyfill-ctype.git",
  2951. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  2952. },
  2953. "dist": {
  2954. "type": "zip",
  2955. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  2956. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  2957. "shasum": ""
  2958. },
  2959. "require": {
  2960. "php": ">=7.1"
  2961. },
  2962. "provide": {
  2963. "ext-ctype": "*"
  2964. },
  2965. "suggest": {
  2966. "ext-ctype": "For best performance"
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-main": "1.23-dev"
  2972. },
  2973. "thanks": {
  2974. "name": "symfony/polyfill",
  2975. "url": "https://github.com/symfony/polyfill"
  2976. }
  2977. },
  2978. "autoload": {
  2979. "files": [
  2980. "bootstrap.php"
  2981. ],
  2982. "psr-4": {
  2983. "Symfony\\Polyfill\\Ctype\\": ""
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Gert de Pagter",
  2993. "email": "BackEndTea@gmail.com"
  2994. },
  2995. {
  2996. "name": "Symfony Community",
  2997. "homepage": "https://symfony.com/contributors"
  2998. }
  2999. ],
  3000. "description": "Symfony polyfill for ctype functions",
  3001. "homepage": "https://symfony.com",
  3002. "keywords": [
  3003. "compatibility",
  3004. "ctype",
  3005. "polyfill",
  3006. "portable"
  3007. ],
  3008. "support": {
  3009. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
  3010. },
  3011. "funding": [
  3012. {
  3013. "url": "https://symfony.com/sponsor",
  3014. "type": "custom"
  3015. },
  3016. {
  3017. "url": "https://github.com/fabpot",
  3018. "type": "github"
  3019. },
  3020. {
  3021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3022. "type": "tidelift"
  3023. }
  3024. ],
  3025. "time": "2021-10-20T20:35:02+00:00"
  3026. },
  3027. {
  3028. "name": "symfony/polyfill-mbstring",
  3029. "version": "v1.25.0",
  3030. "source": {
  3031. "type": "git",
  3032. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3033. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  3034. },
  3035. "dist": {
  3036. "type": "zip",
  3037. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  3038. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  3039. "shasum": ""
  3040. },
  3041. "require": {
  3042. "php": ">=7.1"
  3043. },
  3044. "provide": {
  3045. "ext-mbstring": "*"
  3046. },
  3047. "suggest": {
  3048. "ext-mbstring": "For best performance"
  3049. },
  3050. "type": "library",
  3051. "extra": {
  3052. "branch-alias": {
  3053. "dev-main": "1.23-dev"
  3054. },
  3055. "thanks": {
  3056. "name": "symfony/polyfill",
  3057. "url": "https://github.com/symfony/polyfill"
  3058. }
  3059. },
  3060. "autoload": {
  3061. "files": [
  3062. "bootstrap.php"
  3063. ],
  3064. "psr-4": {
  3065. "Symfony\\Polyfill\\Mbstring\\": ""
  3066. }
  3067. },
  3068. "notification-url": "https://packagist.org/downloads/",
  3069. "license": [
  3070. "MIT"
  3071. ],
  3072. "authors": [
  3073. {
  3074. "name": "Nicolas Grekas",
  3075. "email": "p@tchwork.com"
  3076. },
  3077. {
  3078. "name": "Symfony Community",
  3079. "homepage": "https://symfony.com/contributors"
  3080. }
  3081. ],
  3082. "description": "Symfony polyfill for the Mbstring extension",
  3083. "homepage": "https://symfony.com",
  3084. "keywords": [
  3085. "compatibility",
  3086. "mbstring",
  3087. "polyfill",
  3088. "portable",
  3089. "shim"
  3090. ],
  3091. "support": {
  3092. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  3093. },
  3094. "funding": [
  3095. {
  3096. "url": "https://symfony.com/sponsor",
  3097. "type": "custom"
  3098. },
  3099. {
  3100. "url": "https://github.com/fabpot",
  3101. "type": "github"
  3102. },
  3103. {
  3104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3105. "type": "tidelift"
  3106. }
  3107. ],
  3108. "time": "2021-11-30T18:21:41+00:00"
  3109. },
  3110. {
  3111. "name": "symfony/polyfill-php56",
  3112. "version": "v1.20.0",
  3113. "source": {
  3114. "type": "git",
  3115. "url": "https://github.com/symfony/polyfill-php56.git",
  3116. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  3117. },
  3118. "dist": {
  3119. "type": "zip",
  3120. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  3121. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  3122. "shasum": ""
  3123. },
  3124. "require": {
  3125. "php": ">=7.1"
  3126. },
  3127. "type": "metapackage",
  3128. "extra": {
  3129. "branch-alias": {
  3130. "dev-main": "1.20-dev"
  3131. },
  3132. "thanks": {
  3133. "name": "symfony/polyfill",
  3134. "url": "https://github.com/symfony/polyfill"
  3135. }
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Nicolas Grekas",
  3144. "email": "p@tchwork.com"
  3145. },
  3146. {
  3147. "name": "Symfony Community",
  3148. "homepage": "https://symfony.com/contributors"
  3149. }
  3150. ],
  3151. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3152. "homepage": "https://symfony.com",
  3153. "keywords": [
  3154. "compatibility",
  3155. "polyfill",
  3156. "portable",
  3157. "shim"
  3158. ],
  3159. "support": {
  3160. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  3161. },
  3162. "funding": [
  3163. {
  3164. "url": "https://symfony.com/sponsor",
  3165. "type": "custom"
  3166. },
  3167. {
  3168. "url": "https://github.com/fabpot",
  3169. "type": "github"
  3170. },
  3171. {
  3172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3173. "type": "tidelift"
  3174. }
  3175. ],
  3176. "time": "2020-10-23T14:02:19+00:00"
  3177. },
  3178. {
  3179. "name": "symfony/polyfill-php70",
  3180. "version": "v1.20.0",
  3181. "source": {
  3182. "type": "git",
  3183. "url": "https://github.com/symfony/polyfill-php70.git",
  3184. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
  3185. },
  3186. "dist": {
  3187. "type": "zip",
  3188. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
  3189. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
  3190. "shasum": ""
  3191. },
  3192. "require": {
  3193. "php": ">=7.1"
  3194. },
  3195. "type": "metapackage",
  3196. "extra": {
  3197. "branch-alias": {
  3198. "dev-main": "1.20-dev"
  3199. },
  3200. "thanks": {
  3201. "name": "symfony/polyfill",
  3202. "url": "https://github.com/symfony/polyfill"
  3203. }
  3204. },
  3205. "notification-url": "https://packagist.org/downloads/",
  3206. "license": [
  3207. "MIT"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "Nicolas Grekas",
  3212. "email": "p@tchwork.com"
  3213. },
  3214. {
  3215. "name": "Symfony Community",
  3216. "homepage": "https://symfony.com/contributors"
  3217. }
  3218. ],
  3219. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3220. "homepage": "https://symfony.com",
  3221. "keywords": [
  3222. "compatibility",
  3223. "polyfill",
  3224. "portable",
  3225. "shim"
  3226. ],
  3227. "support": {
  3228. "source": "https://github.com/symfony/polyfill-php70/tree/v1.20.0"
  3229. },
  3230. "funding": [
  3231. {
  3232. "url": "https://symfony.com/sponsor",
  3233. "type": "custom"
  3234. },
  3235. {
  3236. "url": "https://github.com/fabpot",
  3237. "type": "github"
  3238. },
  3239. {
  3240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3241. "type": "tidelift"
  3242. }
  3243. ],
  3244. "time": "2020-10-23T14:02:19+00:00"
  3245. },
  3246. {
  3247. "name": "symfony/polyfill-php80",
  3248. "version": "v1.25.0",
  3249. "source": {
  3250. "type": "git",
  3251. "url": "https://github.com/symfony/polyfill-php80.git",
  3252. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  3253. },
  3254. "dist": {
  3255. "type": "zip",
  3256. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  3257. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  3258. "shasum": ""
  3259. },
  3260. "require": {
  3261. "php": ">=7.1"
  3262. },
  3263. "type": "library",
  3264. "extra": {
  3265. "branch-alias": {
  3266. "dev-main": "1.23-dev"
  3267. },
  3268. "thanks": {
  3269. "name": "symfony/polyfill",
  3270. "url": "https://github.com/symfony/polyfill"
  3271. }
  3272. },
  3273. "autoload": {
  3274. "files": [
  3275. "bootstrap.php"
  3276. ],
  3277. "psr-4": {
  3278. "Symfony\\Polyfill\\Php80\\": ""
  3279. },
  3280. "classmap": [
  3281. "Resources/stubs"
  3282. ]
  3283. },
  3284. "notification-url": "https://packagist.org/downloads/",
  3285. "license": [
  3286. "MIT"
  3287. ],
  3288. "authors": [
  3289. {
  3290. "name": "Ion Bazan",
  3291. "email": "ion.bazan@gmail.com"
  3292. },
  3293. {
  3294. "name": "Nicolas Grekas",
  3295. "email": "p@tchwork.com"
  3296. },
  3297. {
  3298. "name": "Symfony Community",
  3299. "homepage": "https://symfony.com/contributors"
  3300. }
  3301. ],
  3302. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3303. "homepage": "https://symfony.com",
  3304. "keywords": [
  3305. "compatibility",
  3306. "polyfill",
  3307. "portable",
  3308. "shim"
  3309. ],
  3310. "support": {
  3311. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  3312. },
  3313. "funding": [
  3314. {
  3315. "url": "https://symfony.com/sponsor",
  3316. "type": "custom"
  3317. },
  3318. {
  3319. "url": "https://github.com/fabpot",
  3320. "type": "github"
  3321. },
  3322. {
  3323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3324. "type": "tidelift"
  3325. }
  3326. ],
  3327. "time": "2022-03-04T08:16:47+00:00"
  3328. },
  3329. {
  3330. "name": "symfony/process",
  3331. "version": "v3.4.47",
  3332. "source": {
  3333. "type": "git",
  3334. "url": "https://github.com/symfony/process.git",
  3335. "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca"
  3336. },
  3337. "dist": {
  3338. "type": "zip",
  3339. "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca",
  3340. "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca",
  3341. "shasum": ""
  3342. },
  3343. "require": {
  3344. "php": "^5.5.9|>=7.0.8"
  3345. },
  3346. "type": "library",
  3347. "autoload": {
  3348. "psr-4": {
  3349. "Symfony\\Component\\Process\\": ""
  3350. },
  3351. "exclude-from-classmap": [
  3352. "/Tests/"
  3353. ]
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "Fabien Potencier",
  3362. "email": "fabien@symfony.com"
  3363. },
  3364. {
  3365. "name": "Symfony Community",
  3366. "homepage": "https://symfony.com/contributors"
  3367. }
  3368. ],
  3369. "description": "Symfony Process Component",
  3370. "homepage": "https://symfony.com",
  3371. "support": {
  3372. "source": "https://github.com/symfony/process/tree/v3.4.47"
  3373. },
  3374. "funding": [
  3375. {
  3376. "url": "https://symfony.com/sponsor",
  3377. "type": "custom"
  3378. },
  3379. {
  3380. "url": "https://github.com/fabpot",
  3381. "type": "github"
  3382. },
  3383. {
  3384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3385. "type": "tidelift"
  3386. }
  3387. ],
  3388. "time": "2020-10-24T10:57:07+00:00"
  3389. },
  3390. {
  3391. "name": "symfony/routing",
  3392. "version": "v3.4.47",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/symfony/routing.git",
  3396. "reference": "3e522ac69cadffd8131cc2b22157fa7662331a6c"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/symfony/routing/zipball/3e522ac69cadffd8131cc2b22157fa7662331a6c",
  3401. "reference": "3e522ac69cadffd8131cc2b22157fa7662331a6c",
  3402. "shasum": ""
  3403. },
  3404. "require": {
  3405. "php": "^5.5.9|>=7.0.8"
  3406. },
  3407. "conflict": {
  3408. "symfony/config": "<3.3.1",
  3409. "symfony/dependency-injection": "<3.3",
  3410. "symfony/yaml": "<3.4"
  3411. },
  3412. "require-dev": {
  3413. "doctrine/annotations": "~1.0",
  3414. "psr/log": "~1.0",
  3415. "symfony/config": "^3.3.1|~4.0",
  3416. "symfony/dependency-injection": "~3.3|~4.0",
  3417. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3418. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  3419. "symfony/yaml": "~3.4|~4.0"
  3420. },
  3421. "suggest": {
  3422. "doctrine/annotations": "For using the annotation loader",
  3423. "symfony/config": "For using the all-in-one router or any loader",
  3424. "symfony/expression-language": "For using expression matching",
  3425. "symfony/http-foundation": "For using a Symfony Request object",
  3426. "symfony/yaml": "For using the YAML loader"
  3427. },
  3428. "type": "library",
  3429. "autoload": {
  3430. "psr-4": {
  3431. "Symfony\\Component\\Routing\\": ""
  3432. },
  3433. "exclude-from-classmap": [
  3434. "/Tests/"
  3435. ]
  3436. },
  3437. "notification-url": "https://packagist.org/downloads/",
  3438. "license": [
  3439. "MIT"
  3440. ],
  3441. "authors": [
  3442. {
  3443. "name": "Fabien Potencier",
  3444. "email": "fabien@symfony.com"
  3445. },
  3446. {
  3447. "name": "Symfony Community",
  3448. "homepage": "https://symfony.com/contributors"
  3449. }
  3450. ],
  3451. "description": "Symfony Routing Component",
  3452. "homepage": "https://symfony.com",
  3453. "keywords": [
  3454. "router",
  3455. "routing",
  3456. "uri",
  3457. "url"
  3458. ],
  3459. "support": {
  3460. "source": "https://github.com/symfony/routing/tree/v3.4.47"
  3461. },
  3462. "funding": [
  3463. {
  3464. "url": "https://symfony.com/sponsor",
  3465. "type": "custom"
  3466. },
  3467. {
  3468. "url": "https://github.com/fabpot",
  3469. "type": "github"
  3470. },
  3471. {
  3472. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3473. "type": "tidelift"
  3474. }
  3475. ],
  3476. "time": "2020-10-24T10:57:07+00:00"
  3477. },
  3478. {
  3479. "name": "symfony/translation",
  3480. "version": "v4.3.11",
  3481. "source": {
  3482. "type": "git",
  3483. "url": "https://github.com/symfony/translation.git",
  3484. "reference": "46e462be71935ae15eab531e4d491d801857f24c"
  3485. },
  3486. "dist": {
  3487. "type": "zip",
  3488. "url": "https://api.github.com/repos/symfony/translation/zipball/46e462be71935ae15eab531e4d491d801857f24c",
  3489. "reference": "46e462be71935ae15eab531e4d491d801857f24c",
  3490. "shasum": ""
  3491. },
  3492. "require": {
  3493. "php": "^7.1.3",
  3494. "symfony/polyfill-mbstring": "~1.0",
  3495. "symfony/translation-contracts": "^1.1.6"
  3496. },
  3497. "conflict": {
  3498. "symfony/config": "<3.4",
  3499. "symfony/dependency-injection": "<3.4",
  3500. "symfony/yaml": "<3.4"
  3501. },
  3502. "provide": {
  3503. "symfony/translation-implementation": "1.0"
  3504. },
  3505. "require-dev": {
  3506. "psr/log": "~1.0",
  3507. "symfony/config": "~3.4|~4.0",
  3508. "symfony/console": "~3.4|~4.0",
  3509. "symfony/dependency-injection": "~3.4|~4.0",
  3510. "symfony/finder": "~2.8|~3.0|~4.0",
  3511. "symfony/http-kernel": "~3.4|~4.0",
  3512. "symfony/intl": "~3.4|~4.0",
  3513. "symfony/service-contracts": "^1.1.2",
  3514. "symfony/var-dumper": "~3.4|~4.0",
  3515. "symfony/yaml": "~3.4|~4.0"
  3516. },
  3517. "suggest": {
  3518. "psr/log-implementation": "To use logging capability in translator",
  3519. "symfony/config": "",
  3520. "symfony/yaml": ""
  3521. },
  3522. "type": "library",
  3523. "extra": {
  3524. "branch-alias": {
  3525. "dev-master": "4.3-dev"
  3526. }
  3527. },
  3528. "autoload": {
  3529. "psr-4": {
  3530. "Symfony\\Component\\Translation\\": ""
  3531. },
  3532. "exclude-from-classmap": [
  3533. "/Tests/"
  3534. ]
  3535. },
  3536. "notification-url": "https://packagist.org/downloads/",
  3537. "license": [
  3538. "MIT"
  3539. ],
  3540. "authors": [
  3541. {
  3542. "name": "Fabien Potencier",
  3543. "email": "fabien@symfony.com"
  3544. },
  3545. {
  3546. "name": "Symfony Community",
  3547. "homepage": "https://symfony.com/contributors"
  3548. }
  3549. ],
  3550. "description": "Symfony Translation Component",
  3551. "homepage": "https://symfony.com",
  3552. "support": {
  3553. "source": "https://github.com/symfony/translation/tree/4.3"
  3554. },
  3555. "time": "2020-01-04T12:24:57+00:00"
  3556. },
  3557. {
  3558. "name": "symfony/translation-contracts",
  3559. "version": "v1.1.12",
  3560. "source": {
  3561. "type": "git",
  3562. "url": "https://github.com/symfony/translation-contracts.git",
  3563. "reference": "c04dc8a7873a2a9196f038e99342df46b6661a29"
  3564. },
  3565. "dist": {
  3566. "type": "zip",
  3567. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/c04dc8a7873a2a9196f038e99342df46b6661a29",
  3568. "reference": "c04dc8a7873a2a9196f038e99342df46b6661a29",
  3569. "shasum": ""
  3570. },
  3571. "require": {
  3572. "php": ">=7.1.3"
  3573. },
  3574. "suggest": {
  3575. "symfony/translation-implementation": ""
  3576. },
  3577. "type": "library",
  3578. "extra": {
  3579. "branch-alias": {
  3580. "dev-main": "1.1-dev"
  3581. },
  3582. "thanks": {
  3583. "name": "symfony/contracts",
  3584. "url": "https://github.com/symfony/contracts"
  3585. }
  3586. },
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Symfony\\Contracts\\Translation\\": ""
  3590. }
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Nicolas Grekas",
  3599. "email": "p@tchwork.com"
  3600. },
  3601. {
  3602. "name": "Symfony Community",
  3603. "homepage": "https://symfony.com/contributors"
  3604. }
  3605. ],
  3606. "description": "Generic abstractions related to translation",
  3607. "homepage": "https://symfony.com",
  3608. "keywords": [
  3609. "abstractions",
  3610. "contracts",
  3611. "decoupling",
  3612. "interfaces",
  3613. "interoperability",
  3614. "standards"
  3615. ],
  3616. "support": {
  3617. "source": "https://github.com/symfony/translation-contracts/tree/v1.1.12"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://symfony.com/sponsor",
  3622. "type": "custom"
  3623. },
  3624. {
  3625. "url": "https://github.com/fabpot",
  3626. "type": "github"
  3627. },
  3628. {
  3629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3630. "type": "tidelift"
  3631. }
  3632. ],
  3633. "time": "2022-01-02T09:41:36+00:00"
  3634. },
  3635. {
  3636. "name": "symfony/var-dumper",
  3637. "version": "v3.4.47",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://github.com/symfony/var-dumper.git",
  3641. "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0719f6cf4633a38b2c1585140998579ce23b4b7d",
  3646. "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d",
  3647. "shasum": ""
  3648. },
  3649. "require": {
  3650. "php": "^5.5.9|>=7.0.8",
  3651. "symfony/polyfill-mbstring": "~1.0"
  3652. },
  3653. "conflict": {
  3654. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  3655. },
  3656. "require-dev": {
  3657. "ext-iconv": "*",
  3658. "twig/twig": "~1.34|~2.4"
  3659. },
  3660. "suggest": {
  3661. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3662. "ext-intl": "To show region name in time zone dump",
  3663. "ext-symfony_debug": ""
  3664. },
  3665. "type": "library",
  3666. "autoload": {
  3667. "files": [
  3668. "Resources/functions/dump.php"
  3669. ],
  3670. "psr-4": {
  3671. "Symfony\\Component\\VarDumper\\": ""
  3672. },
  3673. "exclude-from-classmap": [
  3674. "/Tests/"
  3675. ]
  3676. },
  3677. "notification-url": "https://packagist.org/downloads/",
  3678. "license": [
  3679. "MIT"
  3680. ],
  3681. "authors": [
  3682. {
  3683. "name": "Nicolas Grekas",
  3684. "email": "p@tchwork.com"
  3685. },
  3686. {
  3687. "name": "Symfony Community",
  3688. "homepage": "https://symfony.com/contributors"
  3689. }
  3690. ],
  3691. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3692. "homepage": "https://symfony.com",
  3693. "keywords": [
  3694. "debug",
  3695. "dump"
  3696. ],
  3697. "support": {
  3698. "source": "https://github.com/symfony/var-dumper/tree/v3.4.47"
  3699. },
  3700. "funding": [
  3701. {
  3702. "url": "https://symfony.com/sponsor",
  3703. "type": "custom"
  3704. },
  3705. {
  3706. "url": "https://github.com/fabpot",
  3707. "type": "github"
  3708. },
  3709. {
  3710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3711. "type": "tidelift"
  3712. }
  3713. ],
  3714. "time": "2020-10-24T10:57:07+00:00"
  3715. },
  3716. {
  3717. "name": "tijsverkoyen/css-to-inline-styles",
  3718. "version": "2.2.4",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  3722. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  3727. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  3728. "shasum": ""
  3729. },
  3730. "require": {
  3731. "ext-dom": "*",
  3732. "ext-libxml": "*",
  3733. "php": "^5.5 || ^7.0 || ^8.0",
  3734. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  3735. },
  3736. "require-dev": {
  3737. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  3738. },
  3739. "type": "library",
  3740. "extra": {
  3741. "branch-alias": {
  3742. "dev-master": "2.2.x-dev"
  3743. }
  3744. },
  3745. "autoload": {
  3746. "psr-4": {
  3747. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  3748. }
  3749. },
  3750. "notification-url": "https://packagist.org/downloads/",
  3751. "license": [
  3752. "BSD-3-Clause"
  3753. ],
  3754. "authors": [
  3755. {
  3756. "name": "Tijs Verkoyen",
  3757. "email": "css_to_inline_styles@verkoyen.eu",
  3758. "role": "Developer"
  3759. }
  3760. ],
  3761. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  3762. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  3763. "support": {
  3764. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  3765. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  3766. },
  3767. "time": "2021-12-08T09:12:39+00:00"
  3768. },
  3769. {
  3770. "name": "vlucas/phpdotenv",
  3771. "version": "v2.6.9",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/vlucas/phpdotenv.git",
  3775. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  3780. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "php": "^5.3.9 || ^7.0 || ^8.0",
  3785. "symfony/polyfill-ctype": "^1.17"
  3786. },
  3787. "require-dev": {
  3788. "ext-filter": "*",
  3789. "ext-pcre": "*",
  3790. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  3791. },
  3792. "suggest": {
  3793. "ext-filter": "Required to use the boolean validator.",
  3794. "ext-pcre": "Required to use most of the library."
  3795. },
  3796. "type": "library",
  3797. "extra": {
  3798. "branch-alias": {
  3799. "dev-master": "2.6-dev"
  3800. }
  3801. },
  3802. "autoload": {
  3803. "psr-4": {
  3804. "Dotenv\\": "src/"
  3805. }
  3806. },
  3807. "notification-url": "https://packagist.org/downloads/",
  3808. "license": [
  3809. "BSD-3-Clause"
  3810. ],
  3811. "authors": [
  3812. {
  3813. "name": "Graham Campbell",
  3814. "email": "hello@gjcampbell.co.uk",
  3815. "homepage": "https://github.com/GrahamCampbell"
  3816. },
  3817. {
  3818. "name": "Vance Lucas",
  3819. "email": "vance@vancelucas.com",
  3820. "homepage": "https://github.com/vlucas"
  3821. }
  3822. ],
  3823. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  3824. "keywords": [
  3825. "dotenv",
  3826. "env",
  3827. "environment"
  3828. ],
  3829. "support": {
  3830. "issues": "https://github.com/vlucas/phpdotenv/issues",
  3831. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  3832. },
  3833. "funding": [
  3834. {
  3835. "url": "https://github.com/GrahamCampbell",
  3836. "type": "github"
  3837. },
  3838. {
  3839. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  3840. "type": "tidelift"
  3841. }
  3842. ],
  3843. "time": "2021-12-12T22:59:22+00:00"
  3844. }
  3845. ],
  3846. "packages-dev": [
  3847. {
  3848. "name": "doctrine/instantiator",
  3849. "version": "1.4.1",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://github.com/doctrine/instantiator.git",
  3853. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  3858. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  3859. "shasum": ""
  3860. },
  3861. "require": {
  3862. "php": "^7.1 || ^8.0"
  3863. },
  3864. "require-dev": {
  3865. "doctrine/coding-standard": "^9",
  3866. "ext-pdo": "*",
  3867. "ext-phar": "*",
  3868. "phpbench/phpbench": "^0.16 || ^1",
  3869. "phpstan/phpstan": "^1.4",
  3870. "phpstan/phpstan-phpunit": "^1",
  3871. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  3872. "vimeo/psalm": "^4.22"
  3873. },
  3874. "type": "library",
  3875. "autoload": {
  3876. "psr-4": {
  3877. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3878. }
  3879. },
  3880. "notification-url": "https://packagist.org/downloads/",
  3881. "license": [
  3882. "MIT"
  3883. ],
  3884. "authors": [
  3885. {
  3886. "name": "Marco Pivetta",
  3887. "email": "ocramius@gmail.com",
  3888. "homepage": "https://ocramius.github.io/"
  3889. }
  3890. ],
  3891. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3892. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3893. "keywords": [
  3894. "constructor",
  3895. "instantiate"
  3896. ],
  3897. "support": {
  3898. "issues": "https://github.com/doctrine/instantiator/issues",
  3899. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  3900. },
  3901. "funding": [
  3902. {
  3903. "url": "https://www.doctrine-project.org/sponsorship.html",
  3904. "type": "custom"
  3905. },
  3906. {
  3907. "url": "https://www.patreon.com/phpdoctrine",
  3908. "type": "patreon"
  3909. },
  3910. {
  3911. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  3912. "type": "tidelift"
  3913. }
  3914. ],
  3915. "time": "2022-03-03T08:28:38+00:00"
  3916. },
  3917. {
  3918. "name": "fzaninotto/faker",
  3919. "version": "v1.9.2",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/fzaninotto/Faker.git",
  3923. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  3928. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  3929. "shasum": ""
  3930. },
  3931. "require": {
  3932. "php": "^5.3.3 || ^7.0"
  3933. },
  3934. "require-dev": {
  3935. "ext-intl": "*",
  3936. "phpunit/phpunit": "^4.8.35 || ^5.7",
  3937. "squizlabs/php_codesniffer": "^2.9.2"
  3938. },
  3939. "type": "library",
  3940. "extra": {
  3941. "branch-alias": {
  3942. "dev-master": "1.9-dev"
  3943. }
  3944. },
  3945. "autoload": {
  3946. "psr-4": {
  3947. "Faker\\": "src/Faker/"
  3948. }
  3949. },
  3950. "notification-url": "https://packagist.org/downloads/",
  3951. "license": [
  3952. "MIT"
  3953. ],
  3954. "authors": [
  3955. {
  3956. "name": "François Zaninotto"
  3957. }
  3958. ],
  3959. "description": "Faker is a PHP library that generates fake data for you.",
  3960. "keywords": [
  3961. "data",
  3962. "faker",
  3963. "fixtures"
  3964. ],
  3965. "support": {
  3966. "issues": "https://github.com/fzaninotto/Faker/issues",
  3967. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  3968. },
  3969. "abandoned": true,
  3970. "time": "2020-12-11T09:56:16+00:00"
  3971. },
  3972. {
  3973. "name": "hamcrest/hamcrest-php",
  3974. "version": "v1.2.2",
  3975. "source": {
  3976. "type": "git",
  3977. "url": "https://github.com/hamcrest/hamcrest-php.git",
  3978. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
  3979. },
  3980. "dist": {
  3981. "type": "zip",
  3982. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c",
  3983. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
  3984. "shasum": ""
  3985. },
  3986. "require": {
  3987. "php": ">=5.3.2"
  3988. },
  3989. "replace": {
  3990. "cordoval/hamcrest-php": "*",
  3991. "davedevelopment/hamcrest-php": "*",
  3992. "kodova/hamcrest-php": "*"
  3993. },
  3994. "require-dev": {
  3995. "phpunit/php-file-iterator": "1.3.3",
  3996. "satooshi/php-coveralls": "dev-master"
  3997. },
  3998. "type": "library",
  3999. "autoload": {
  4000. "files": [
  4001. "hamcrest/Hamcrest.php"
  4002. ],
  4003. "classmap": [
  4004. "hamcrest"
  4005. ]
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "BSD"
  4010. ],
  4011. "description": "This is the PHP port of Hamcrest Matchers",
  4012. "keywords": [
  4013. "test"
  4014. ],
  4015. "support": {
  4016. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  4017. "source": "https://github.com/hamcrest/hamcrest-php/tree/master"
  4018. },
  4019. "time": "2015-05-11T14:41:42+00:00"
  4020. },
  4021. {
  4022. "name": "mockery/mockery",
  4023. "version": "0.9.11",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/mockery/mockery.git",
  4027. "reference": "be9bf28d8e57d67883cba9fcadfcff8caab667f8"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/mockery/mockery/zipball/be9bf28d8e57d67883cba9fcadfcff8caab667f8",
  4032. "reference": "be9bf28d8e57d67883cba9fcadfcff8caab667f8",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "hamcrest/hamcrest-php": "~1.1",
  4037. "lib-pcre": ">=7.0",
  4038. "php": ">=5.3.2"
  4039. },
  4040. "require-dev": {
  4041. "phpunit/phpunit": "~4.0"
  4042. },
  4043. "type": "library",
  4044. "extra": {
  4045. "branch-alias": {
  4046. "dev-master": "0.9.x-dev"
  4047. }
  4048. },
  4049. "autoload": {
  4050. "psr-0": {
  4051. "Mockery": "library/"
  4052. }
  4053. },
  4054. "notification-url": "https://packagist.org/downloads/",
  4055. "license": [
  4056. "BSD-3-Clause"
  4057. ],
  4058. "authors": [
  4059. {
  4060. "name": "Pádraic Brady",
  4061. "email": "padraic.brady@gmail.com",
  4062. "homepage": "http://blog.astrumfutura.com"
  4063. },
  4064. {
  4065. "name": "Dave Marshall",
  4066. "email": "dave.marshall@atstsolutions.co.uk",
  4067. "homepage": "http://davedevelopment.co.uk"
  4068. }
  4069. ],
  4070. "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
  4071. "homepage": "http://github.com/padraic/mockery",
  4072. "keywords": [
  4073. "BDD",
  4074. "TDD",
  4075. "library",
  4076. "mock",
  4077. "mock objects",
  4078. "mockery",
  4079. "stub",
  4080. "test",
  4081. "test double",
  4082. "testing"
  4083. ],
  4084. "support": {
  4085. "issues": "https://github.com/mockery/mockery/issues",
  4086. "source": "https://github.com/mockery/mockery/tree/0.9"
  4087. },
  4088. "time": "2019-02-12T16:07:13+00:00"
  4089. },
  4090. {
  4091. "name": "myclabs/deep-copy",
  4092. "version": "1.11.0",
  4093. "source": {
  4094. "type": "git",
  4095. "url": "https://github.com/myclabs/DeepCopy.git",
  4096. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  4097. },
  4098. "dist": {
  4099. "type": "zip",
  4100. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  4101. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  4102. "shasum": ""
  4103. },
  4104. "require": {
  4105. "php": "^7.1 || ^8.0"
  4106. },
  4107. "conflict": {
  4108. "doctrine/collections": "<1.6.8",
  4109. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  4110. },
  4111. "require-dev": {
  4112. "doctrine/collections": "^1.6.8",
  4113. "doctrine/common": "^2.13.3 || ^3.2.2",
  4114. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  4115. },
  4116. "type": "library",
  4117. "autoload": {
  4118. "files": [
  4119. "src/DeepCopy/deep_copy.php"
  4120. ],
  4121. "psr-4": {
  4122. "DeepCopy\\": "src/DeepCopy/"
  4123. }
  4124. },
  4125. "notification-url": "https://packagist.org/downloads/",
  4126. "license": [
  4127. "MIT"
  4128. ],
  4129. "description": "Create deep copies (clones) of your objects",
  4130. "keywords": [
  4131. "clone",
  4132. "copy",
  4133. "duplicate",
  4134. "object",
  4135. "object graph"
  4136. ],
  4137. "support": {
  4138. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4139. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  4140. },
  4141. "funding": [
  4142. {
  4143. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4144. "type": "tidelift"
  4145. }
  4146. ],
  4147. "time": "2022-03-03T13:19:32+00:00"
  4148. },
  4149. {
  4150. "name": "phpdocumentor/reflection-common",
  4151. "version": "2.2.0",
  4152. "source": {
  4153. "type": "git",
  4154. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4155. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  4156. },
  4157. "dist": {
  4158. "type": "zip",
  4159. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4160. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4161. "shasum": ""
  4162. },
  4163. "require": {
  4164. "php": "^7.2 || ^8.0"
  4165. },
  4166. "type": "library",
  4167. "extra": {
  4168. "branch-alias": {
  4169. "dev-2.x": "2.x-dev"
  4170. }
  4171. },
  4172. "autoload": {
  4173. "psr-4": {
  4174. "phpDocumentor\\Reflection\\": "src/"
  4175. }
  4176. },
  4177. "notification-url": "https://packagist.org/downloads/",
  4178. "license": [
  4179. "MIT"
  4180. ],
  4181. "authors": [
  4182. {
  4183. "name": "Jaap van Otterdijk",
  4184. "email": "opensource@ijaap.nl"
  4185. }
  4186. ],
  4187. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4188. "homepage": "http://www.phpdoc.org",
  4189. "keywords": [
  4190. "FQSEN",
  4191. "phpDocumentor",
  4192. "phpdoc",
  4193. "reflection",
  4194. "static analysis"
  4195. ],
  4196. "support": {
  4197. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  4198. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  4199. },
  4200. "time": "2020-06-27T09:03:43+00:00"
  4201. },
  4202. {
  4203. "name": "phpdocumentor/reflection-docblock",
  4204. "version": "5.3.0",
  4205. "source": {
  4206. "type": "git",
  4207. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4208. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  4209. },
  4210. "dist": {
  4211. "type": "zip",
  4212. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  4213. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  4214. "shasum": ""
  4215. },
  4216. "require": {
  4217. "ext-filter": "*",
  4218. "php": "^7.2 || ^8.0",
  4219. "phpdocumentor/reflection-common": "^2.2",
  4220. "phpdocumentor/type-resolver": "^1.3",
  4221. "webmozart/assert": "^1.9.1"
  4222. },
  4223. "require-dev": {
  4224. "mockery/mockery": "~1.3.2",
  4225. "psalm/phar": "^4.8"
  4226. },
  4227. "type": "library",
  4228. "extra": {
  4229. "branch-alias": {
  4230. "dev-master": "5.x-dev"
  4231. }
  4232. },
  4233. "autoload": {
  4234. "psr-4": {
  4235. "phpDocumentor\\Reflection\\": "src"
  4236. }
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "MIT"
  4241. ],
  4242. "authors": [
  4243. {
  4244. "name": "Mike van Riel",
  4245. "email": "me@mikevanriel.com"
  4246. },
  4247. {
  4248. "name": "Jaap van Otterdijk",
  4249. "email": "account@ijaap.nl"
  4250. }
  4251. ],
  4252. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4253. "support": {
  4254. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  4255. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  4256. },
  4257. "time": "2021-10-19T17:43:47+00:00"
  4258. },
  4259. {
  4260. "name": "phpdocumentor/type-resolver",
  4261. "version": "1.6.1",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4265. "reference": "77a32518733312af16a44300404e945338981de3"
  4266. },
  4267. "dist": {
  4268. "type": "zip",
  4269. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  4270. "reference": "77a32518733312af16a44300404e945338981de3",
  4271. "shasum": ""
  4272. },
  4273. "require": {
  4274. "php": "^7.2 || ^8.0",
  4275. "phpdocumentor/reflection-common": "^2.0"
  4276. },
  4277. "require-dev": {
  4278. "ext-tokenizer": "*",
  4279. "psalm/phar": "^4.8"
  4280. },
  4281. "type": "library",
  4282. "extra": {
  4283. "branch-alias": {
  4284. "dev-1.x": "1.x-dev"
  4285. }
  4286. },
  4287. "autoload": {
  4288. "psr-4": {
  4289. "phpDocumentor\\Reflection\\": "src"
  4290. }
  4291. },
  4292. "notification-url": "https://packagist.org/downloads/",
  4293. "license": [
  4294. "MIT"
  4295. ],
  4296. "authors": [
  4297. {
  4298. "name": "Mike van Riel",
  4299. "email": "me@mikevanriel.com"
  4300. }
  4301. ],
  4302. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4303. "support": {
  4304. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4305. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  4306. },
  4307. "time": "2022-03-15T21:29:03+00:00"
  4308. },
  4309. {
  4310. "name": "phpspec/prophecy",
  4311. "version": "v1.10.3",
  4312. "source": {
  4313. "type": "git",
  4314. "url": "https://github.com/phpspec/prophecy.git",
  4315. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  4316. },
  4317. "dist": {
  4318. "type": "zip",
  4319. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  4320. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  4321. "shasum": ""
  4322. },
  4323. "require": {
  4324. "doctrine/instantiator": "^1.0.2",
  4325. "php": "^5.3|^7.0",
  4326. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  4327. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  4328. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  4329. },
  4330. "require-dev": {
  4331. "phpspec/phpspec": "^2.5 || ^3.2",
  4332. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  4333. },
  4334. "type": "library",
  4335. "extra": {
  4336. "branch-alias": {
  4337. "dev-master": "1.10.x-dev"
  4338. }
  4339. },
  4340. "autoload": {
  4341. "psr-4": {
  4342. "Prophecy\\": "src/Prophecy"
  4343. }
  4344. },
  4345. "notification-url": "https://packagist.org/downloads/",
  4346. "license": [
  4347. "MIT"
  4348. ],
  4349. "authors": [
  4350. {
  4351. "name": "Konstantin Kudryashov",
  4352. "email": "ever.zet@gmail.com",
  4353. "homepage": "http://everzet.com"
  4354. },
  4355. {
  4356. "name": "Marcello Duarte",
  4357. "email": "marcello.duarte@gmail.com"
  4358. }
  4359. ],
  4360. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4361. "homepage": "https://github.com/phpspec/prophecy",
  4362. "keywords": [
  4363. "Double",
  4364. "Dummy",
  4365. "fake",
  4366. "mock",
  4367. "spy",
  4368. "stub"
  4369. ],
  4370. "support": {
  4371. "issues": "https://github.com/phpspec/prophecy/issues",
  4372. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  4373. },
  4374. "time": "2020-03-05T15:02:03+00:00"
  4375. },
  4376. {
  4377. "name": "phpunit/php-code-coverage",
  4378. "version": "4.0.8",
  4379. "source": {
  4380. "type": "git",
  4381. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4382. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
  4383. },
  4384. "dist": {
  4385. "type": "zip",
  4386. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  4387. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  4388. "shasum": ""
  4389. },
  4390. "require": {
  4391. "ext-dom": "*",
  4392. "ext-xmlwriter": "*",
  4393. "php": "^5.6 || ^7.0",
  4394. "phpunit/php-file-iterator": "^1.3",
  4395. "phpunit/php-text-template": "^1.2",
  4396. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  4397. "sebastian/code-unit-reverse-lookup": "^1.0",
  4398. "sebastian/environment": "^1.3.2 || ^2.0",
  4399. "sebastian/version": "^1.0 || ^2.0"
  4400. },
  4401. "require-dev": {
  4402. "ext-xdebug": "^2.1.4",
  4403. "phpunit/phpunit": "^5.7"
  4404. },
  4405. "suggest": {
  4406. "ext-xdebug": "^2.5.1"
  4407. },
  4408. "type": "library",
  4409. "extra": {
  4410. "branch-alias": {
  4411. "dev-master": "4.0.x-dev"
  4412. }
  4413. },
  4414. "autoload": {
  4415. "classmap": [
  4416. "src/"
  4417. ]
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "BSD-3-Clause"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "Sebastian Bergmann",
  4426. "email": "sb@sebastian-bergmann.de",
  4427. "role": "lead"
  4428. }
  4429. ],
  4430. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4431. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4432. "keywords": [
  4433. "coverage",
  4434. "testing",
  4435. "xunit"
  4436. ],
  4437. "support": {
  4438. "irc": "irc://irc.freenode.net/phpunit",
  4439. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  4440. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/4.0"
  4441. },
  4442. "time": "2017-04-02T07:44:40+00:00"
  4443. },
  4444. {
  4445. "name": "phpunit/php-file-iterator",
  4446. "version": "1.4.5",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4450. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  4455. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  4456. "shasum": ""
  4457. },
  4458. "require": {
  4459. "php": ">=5.3.3"
  4460. },
  4461. "type": "library",
  4462. "extra": {
  4463. "branch-alias": {
  4464. "dev-master": "1.4.x-dev"
  4465. }
  4466. },
  4467. "autoload": {
  4468. "classmap": [
  4469. "src/"
  4470. ]
  4471. },
  4472. "notification-url": "https://packagist.org/downloads/",
  4473. "license": [
  4474. "BSD-3-Clause"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "Sebastian Bergmann",
  4479. "email": "sb@sebastian-bergmann.de",
  4480. "role": "lead"
  4481. }
  4482. ],
  4483. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4484. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4485. "keywords": [
  4486. "filesystem",
  4487. "iterator"
  4488. ],
  4489. "support": {
  4490. "irc": "irc://irc.freenode.net/phpunit",
  4491. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  4492. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5"
  4493. },
  4494. "time": "2017-11-27T13:52:08+00:00"
  4495. },
  4496. {
  4497. "name": "phpunit/php-text-template",
  4498. "version": "1.2.1",
  4499. "source": {
  4500. "type": "git",
  4501. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4502. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4503. },
  4504. "dist": {
  4505. "type": "zip",
  4506. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4507. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4508. "shasum": ""
  4509. },
  4510. "require": {
  4511. "php": ">=5.3.3"
  4512. },
  4513. "type": "library",
  4514. "autoload": {
  4515. "classmap": [
  4516. "src/"
  4517. ]
  4518. },
  4519. "notification-url": "https://packagist.org/downloads/",
  4520. "license": [
  4521. "BSD-3-Clause"
  4522. ],
  4523. "authors": [
  4524. {
  4525. "name": "Sebastian Bergmann",
  4526. "email": "sebastian@phpunit.de",
  4527. "role": "lead"
  4528. }
  4529. ],
  4530. "description": "Simple template engine.",
  4531. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4532. "keywords": [
  4533. "template"
  4534. ],
  4535. "support": {
  4536. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4537. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  4538. },
  4539. "time": "2015-06-21T13:50:34+00:00"
  4540. },
  4541. {
  4542. "name": "phpunit/php-timer",
  4543. "version": "1.0.9",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4547. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  4552. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  4553. "shasum": ""
  4554. },
  4555. "require": {
  4556. "php": "^5.3.3 || ^7.0"
  4557. },
  4558. "require-dev": {
  4559. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4560. },
  4561. "type": "library",
  4562. "extra": {
  4563. "branch-alias": {
  4564. "dev-master": "1.0-dev"
  4565. }
  4566. },
  4567. "autoload": {
  4568. "classmap": [
  4569. "src/"
  4570. ]
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "BSD-3-Clause"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "Sebastian Bergmann",
  4579. "email": "sb@sebastian-bergmann.de",
  4580. "role": "lead"
  4581. }
  4582. ],
  4583. "description": "Utility class for timing",
  4584. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4585. "keywords": [
  4586. "timer"
  4587. ],
  4588. "support": {
  4589. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4590. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  4591. },
  4592. "time": "2017-02-26T11:10:40+00:00"
  4593. },
  4594. {
  4595. "name": "phpunit/php-token-stream",
  4596. "version": "2.0.2",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4600. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  4605. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  4606. "shasum": ""
  4607. },
  4608. "require": {
  4609. "ext-tokenizer": "*",
  4610. "php": "^7.0"
  4611. },
  4612. "require-dev": {
  4613. "phpunit/phpunit": "^6.2.4"
  4614. },
  4615. "type": "library",
  4616. "extra": {
  4617. "branch-alias": {
  4618. "dev-master": "2.0-dev"
  4619. }
  4620. },
  4621. "autoload": {
  4622. "classmap": [
  4623. "src/"
  4624. ]
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "BSD-3-Clause"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "Sebastian Bergmann",
  4633. "email": "sebastian@phpunit.de"
  4634. }
  4635. ],
  4636. "description": "Wrapper around PHP's tokenizer extension.",
  4637. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4638. "keywords": [
  4639. "tokenizer"
  4640. ],
  4641. "support": {
  4642. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  4643. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  4644. },
  4645. "abandoned": true,
  4646. "time": "2017-11-27T05:48:46+00:00"
  4647. },
  4648. {
  4649. "name": "phpunit/phpunit",
  4650. "version": "5.7.27",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4654. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  4659. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  4660. "shasum": ""
  4661. },
  4662. "require": {
  4663. "ext-dom": "*",
  4664. "ext-json": "*",
  4665. "ext-libxml": "*",
  4666. "ext-mbstring": "*",
  4667. "ext-xml": "*",
  4668. "myclabs/deep-copy": "~1.3",
  4669. "php": "^5.6 || ^7.0",
  4670. "phpspec/prophecy": "^1.6.2",
  4671. "phpunit/php-code-coverage": "^4.0.4",
  4672. "phpunit/php-file-iterator": "~1.4",
  4673. "phpunit/php-text-template": "~1.2",
  4674. "phpunit/php-timer": "^1.0.6",
  4675. "phpunit/phpunit-mock-objects": "^3.2",
  4676. "sebastian/comparator": "^1.2.4",
  4677. "sebastian/diff": "^1.4.3",
  4678. "sebastian/environment": "^1.3.4 || ^2.0",
  4679. "sebastian/exporter": "~2.0",
  4680. "sebastian/global-state": "^1.1",
  4681. "sebastian/object-enumerator": "~2.0",
  4682. "sebastian/resource-operations": "~1.0",
  4683. "sebastian/version": "^1.0.6|^2.0.1",
  4684. "symfony/yaml": "~2.1|~3.0|~4.0"
  4685. },
  4686. "conflict": {
  4687. "phpdocumentor/reflection-docblock": "3.0.2"
  4688. },
  4689. "require-dev": {
  4690. "ext-pdo": "*"
  4691. },
  4692. "suggest": {
  4693. "ext-xdebug": "*",
  4694. "phpunit/php-invoker": "~1.1"
  4695. },
  4696. "bin": [
  4697. "phpunit"
  4698. ],
  4699. "type": "library",
  4700. "extra": {
  4701. "branch-alias": {
  4702. "dev-master": "5.7.x-dev"
  4703. }
  4704. },
  4705. "autoload": {
  4706. "classmap": [
  4707. "src/"
  4708. ]
  4709. },
  4710. "notification-url": "https://packagist.org/downloads/",
  4711. "license": [
  4712. "BSD-3-Clause"
  4713. ],
  4714. "authors": [
  4715. {
  4716. "name": "Sebastian Bergmann",
  4717. "email": "sebastian@phpunit.de",
  4718. "role": "lead"
  4719. }
  4720. ],
  4721. "description": "The PHP Unit Testing framework.",
  4722. "homepage": "https://phpunit.de/",
  4723. "keywords": [
  4724. "phpunit",
  4725. "testing",
  4726. "xunit"
  4727. ],
  4728. "support": {
  4729. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4730. "source": "https://github.com/sebastianbergmann/phpunit/tree/5.7.27"
  4731. },
  4732. "time": "2018-02-01T05:50:59+00:00"
  4733. },
  4734. {
  4735. "name": "phpunit/phpunit-mock-objects",
  4736. "version": "3.4.4",
  4737. "source": {
  4738. "type": "git",
  4739. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  4740. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
  4741. },
  4742. "dist": {
  4743. "type": "zip",
  4744. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
  4745. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
  4746. "shasum": ""
  4747. },
  4748. "require": {
  4749. "doctrine/instantiator": "^1.0.2",
  4750. "php": "^5.6 || ^7.0",
  4751. "phpunit/php-text-template": "^1.2",
  4752. "sebastian/exporter": "^1.2 || ^2.0"
  4753. },
  4754. "conflict": {
  4755. "phpunit/phpunit": "<5.4.0"
  4756. },
  4757. "require-dev": {
  4758. "phpunit/phpunit": "^5.4"
  4759. },
  4760. "suggest": {
  4761. "ext-soap": "*"
  4762. },
  4763. "type": "library",
  4764. "extra": {
  4765. "branch-alias": {
  4766. "dev-master": "3.2.x-dev"
  4767. }
  4768. },
  4769. "autoload": {
  4770. "classmap": [
  4771. "src/"
  4772. ]
  4773. },
  4774. "notification-url": "https://packagist.org/downloads/",
  4775. "license": [
  4776. "BSD-3-Clause"
  4777. ],
  4778. "authors": [
  4779. {
  4780. "name": "Sebastian Bergmann",
  4781. "email": "sb@sebastian-bergmann.de",
  4782. "role": "lead"
  4783. }
  4784. ],
  4785. "description": "Mock Object library for PHPUnit",
  4786. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  4787. "keywords": [
  4788. "mock",
  4789. "xunit"
  4790. ],
  4791. "support": {
  4792. "irc": "irc://irc.freenode.net/phpunit",
  4793. "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
  4794. "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/3.4"
  4795. },
  4796. "abandoned": true,
  4797. "time": "2017-06-30T09:13:00+00:00"
  4798. },
  4799. {
  4800. "name": "sebastian/code-unit-reverse-lookup",
  4801. "version": "1.0.2",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4805. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  4810. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  4811. "shasum": ""
  4812. },
  4813. "require": {
  4814. "php": ">=5.6"
  4815. },
  4816. "require-dev": {
  4817. "phpunit/phpunit": "^8.5"
  4818. },
  4819. "type": "library",
  4820. "extra": {
  4821. "branch-alias": {
  4822. "dev-master": "1.0.x-dev"
  4823. }
  4824. },
  4825. "autoload": {
  4826. "classmap": [
  4827. "src/"
  4828. ]
  4829. },
  4830. "notification-url": "https://packagist.org/downloads/",
  4831. "license": [
  4832. "BSD-3-Clause"
  4833. ],
  4834. "authors": [
  4835. {
  4836. "name": "Sebastian Bergmann",
  4837. "email": "sebastian@phpunit.de"
  4838. }
  4839. ],
  4840. "description": "Looks up which function or method a line of code belongs to",
  4841. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4842. "support": {
  4843. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  4844. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  4845. },
  4846. "funding": [
  4847. {
  4848. "url": "https://github.com/sebastianbergmann",
  4849. "type": "github"
  4850. }
  4851. ],
  4852. "time": "2020-11-30T08:15:22+00:00"
  4853. },
  4854. {
  4855. "name": "sebastian/comparator",
  4856. "version": "1.2.4",
  4857. "source": {
  4858. "type": "git",
  4859. "url": "https://github.com/sebastianbergmann/comparator.git",
  4860. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  4861. },
  4862. "dist": {
  4863. "type": "zip",
  4864. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  4865. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  4866. "shasum": ""
  4867. },
  4868. "require": {
  4869. "php": ">=5.3.3",
  4870. "sebastian/diff": "~1.2",
  4871. "sebastian/exporter": "~1.2 || ~2.0"
  4872. },
  4873. "require-dev": {
  4874. "phpunit/phpunit": "~4.4"
  4875. },
  4876. "type": "library",
  4877. "extra": {
  4878. "branch-alias": {
  4879. "dev-master": "1.2.x-dev"
  4880. }
  4881. },
  4882. "autoload": {
  4883. "classmap": [
  4884. "src/"
  4885. ]
  4886. },
  4887. "notification-url": "https://packagist.org/downloads/",
  4888. "license": [
  4889. "BSD-3-Clause"
  4890. ],
  4891. "authors": [
  4892. {
  4893. "name": "Jeff Welch",
  4894. "email": "whatthejeff@gmail.com"
  4895. },
  4896. {
  4897. "name": "Volker Dusch",
  4898. "email": "github@wallbash.com"
  4899. },
  4900. {
  4901. "name": "Bernhard Schussek",
  4902. "email": "bschussek@2bepublished.at"
  4903. },
  4904. {
  4905. "name": "Sebastian Bergmann",
  4906. "email": "sebastian@phpunit.de"
  4907. }
  4908. ],
  4909. "description": "Provides the functionality to compare PHP values for equality",
  4910. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  4911. "keywords": [
  4912. "comparator",
  4913. "compare",
  4914. "equality"
  4915. ],
  4916. "support": {
  4917. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  4918. "source": "https://github.com/sebastianbergmann/comparator/tree/1.2"
  4919. },
  4920. "time": "2017-01-29T09:50:25+00:00"
  4921. },
  4922. {
  4923. "name": "sebastian/diff",
  4924. "version": "1.4.3",
  4925. "source": {
  4926. "type": "git",
  4927. "url": "https://github.com/sebastianbergmann/diff.git",
  4928. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  4929. },
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  4933. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  4934. "shasum": ""
  4935. },
  4936. "require": {
  4937. "php": "^5.3.3 || ^7.0"
  4938. },
  4939. "require-dev": {
  4940. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4941. },
  4942. "type": "library",
  4943. "extra": {
  4944. "branch-alias": {
  4945. "dev-master": "1.4-dev"
  4946. }
  4947. },
  4948. "autoload": {
  4949. "classmap": [
  4950. "src/"
  4951. ]
  4952. },
  4953. "notification-url": "https://packagist.org/downloads/",
  4954. "license": [
  4955. "BSD-3-Clause"
  4956. ],
  4957. "authors": [
  4958. {
  4959. "name": "Kore Nordmann",
  4960. "email": "mail@kore-nordmann.de"
  4961. },
  4962. {
  4963. "name": "Sebastian Bergmann",
  4964. "email": "sebastian@phpunit.de"
  4965. }
  4966. ],
  4967. "description": "Diff implementation",
  4968. "homepage": "https://github.com/sebastianbergmann/diff",
  4969. "keywords": [
  4970. "diff"
  4971. ],
  4972. "support": {
  4973. "issues": "https://github.com/sebastianbergmann/diff/issues",
  4974. "source": "https://github.com/sebastianbergmann/diff/tree/1.4"
  4975. },
  4976. "time": "2017-05-22T07:24:03+00:00"
  4977. },
  4978. {
  4979. "name": "sebastian/environment",
  4980. "version": "2.0.0",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://github.com/sebastianbergmann/environment.git",
  4984. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  4989. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  4990. "shasum": ""
  4991. },
  4992. "require": {
  4993. "php": "^5.6 || ^7.0"
  4994. },
  4995. "require-dev": {
  4996. "phpunit/phpunit": "^5.0"
  4997. },
  4998. "type": "library",
  4999. "extra": {
  5000. "branch-alias": {
  5001. "dev-master": "2.0.x-dev"
  5002. }
  5003. },
  5004. "autoload": {
  5005. "classmap": [
  5006. "src/"
  5007. ]
  5008. },
  5009. "notification-url": "https://packagist.org/downloads/",
  5010. "license": [
  5011. "BSD-3-Clause"
  5012. ],
  5013. "authors": [
  5014. {
  5015. "name": "Sebastian Bergmann",
  5016. "email": "sebastian@phpunit.de"
  5017. }
  5018. ],
  5019. "description": "Provides functionality to handle HHVM/PHP environments",
  5020. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5021. "keywords": [
  5022. "Xdebug",
  5023. "environment",
  5024. "hhvm"
  5025. ],
  5026. "support": {
  5027. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5028. "source": "https://github.com/sebastianbergmann/environment/tree/master"
  5029. },
  5030. "time": "2016-11-26T07:53:53+00:00"
  5031. },
  5032. {
  5033. "name": "sebastian/exporter",
  5034. "version": "2.0.0",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/sebastianbergmann/exporter.git",
  5038. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  5043. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "php": ">=5.3.3",
  5048. "sebastian/recursion-context": "~2.0"
  5049. },
  5050. "require-dev": {
  5051. "ext-mbstring": "*",
  5052. "phpunit/phpunit": "~4.4"
  5053. },
  5054. "type": "library",
  5055. "extra": {
  5056. "branch-alias": {
  5057. "dev-master": "2.0.x-dev"
  5058. }
  5059. },
  5060. "autoload": {
  5061. "classmap": [
  5062. "src/"
  5063. ]
  5064. },
  5065. "notification-url": "https://packagist.org/downloads/",
  5066. "license": [
  5067. "BSD-3-Clause"
  5068. ],
  5069. "authors": [
  5070. {
  5071. "name": "Jeff Welch",
  5072. "email": "whatthejeff@gmail.com"
  5073. },
  5074. {
  5075. "name": "Volker Dusch",
  5076. "email": "github@wallbash.com"
  5077. },
  5078. {
  5079. "name": "Bernhard Schussek",
  5080. "email": "bschussek@2bepublished.at"
  5081. },
  5082. {
  5083. "name": "Sebastian Bergmann",
  5084. "email": "sebastian@phpunit.de"
  5085. },
  5086. {
  5087. "name": "Adam Harvey",
  5088. "email": "aharvey@php.net"
  5089. }
  5090. ],
  5091. "description": "Provides the functionality to export PHP variables for visualization",
  5092. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5093. "keywords": [
  5094. "export",
  5095. "exporter"
  5096. ],
  5097. "support": {
  5098. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5099. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  5100. },
  5101. "time": "2016-11-19T08:54:04+00:00"
  5102. },
  5103. {
  5104. "name": "sebastian/global-state",
  5105. "version": "1.1.1",
  5106. "source": {
  5107. "type": "git",
  5108. "url": "https://github.com/sebastianbergmann/global-state.git",
  5109. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  5110. },
  5111. "dist": {
  5112. "type": "zip",
  5113. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5114. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5115. "shasum": ""
  5116. },
  5117. "require": {
  5118. "php": ">=5.3.3"
  5119. },
  5120. "require-dev": {
  5121. "phpunit/phpunit": "~4.2"
  5122. },
  5123. "suggest": {
  5124. "ext-uopz": "*"
  5125. },
  5126. "type": "library",
  5127. "extra": {
  5128. "branch-alias": {
  5129. "dev-master": "1.0-dev"
  5130. }
  5131. },
  5132. "autoload": {
  5133. "classmap": [
  5134. "src/"
  5135. ]
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "BSD-3-Clause"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Sebastian Bergmann",
  5144. "email": "sebastian@phpunit.de"
  5145. }
  5146. ],
  5147. "description": "Snapshotting of global state",
  5148. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5149. "keywords": [
  5150. "global state"
  5151. ],
  5152. "support": {
  5153. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5154. "source": "https://github.com/sebastianbergmann/global-state/tree/1.1.1"
  5155. },
  5156. "time": "2015-10-12T03:26:01+00:00"
  5157. },
  5158. {
  5159. "name": "sebastian/object-enumerator",
  5160. "version": "2.0.1",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5164. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
  5169. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "php": ">=5.6",
  5174. "sebastian/recursion-context": "~2.0"
  5175. },
  5176. "require-dev": {
  5177. "phpunit/phpunit": "~5"
  5178. },
  5179. "type": "library",
  5180. "extra": {
  5181. "branch-alias": {
  5182. "dev-master": "2.0.x-dev"
  5183. }
  5184. },
  5185. "autoload": {
  5186. "classmap": [
  5187. "src/"
  5188. ]
  5189. },
  5190. "notification-url": "https://packagist.org/downloads/",
  5191. "license": [
  5192. "BSD-3-Clause"
  5193. ],
  5194. "authors": [
  5195. {
  5196. "name": "Sebastian Bergmann",
  5197. "email": "sebastian@phpunit.de"
  5198. }
  5199. ],
  5200. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5201. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5202. "support": {
  5203. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5204. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/master"
  5205. },
  5206. "time": "2017-02-18T15:18:39+00:00"
  5207. },
  5208. {
  5209. "name": "sebastian/recursion-context",
  5210. "version": "2.0.0",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5214. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  5219. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  5220. "shasum": ""
  5221. },
  5222. "require": {
  5223. "php": ">=5.3.3"
  5224. },
  5225. "require-dev": {
  5226. "phpunit/phpunit": "~4.4"
  5227. },
  5228. "type": "library",
  5229. "extra": {
  5230. "branch-alias": {
  5231. "dev-master": "2.0.x-dev"
  5232. }
  5233. },
  5234. "autoload": {
  5235. "classmap": [
  5236. "src/"
  5237. ]
  5238. },
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "license": [
  5241. "BSD-3-Clause"
  5242. ],
  5243. "authors": [
  5244. {
  5245. "name": "Jeff Welch",
  5246. "email": "whatthejeff@gmail.com"
  5247. },
  5248. {
  5249. "name": "Sebastian Bergmann",
  5250. "email": "sebastian@phpunit.de"
  5251. },
  5252. {
  5253. "name": "Adam Harvey",
  5254. "email": "aharvey@php.net"
  5255. }
  5256. ],
  5257. "description": "Provides functionality to recursively process PHP variables",
  5258. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5259. "support": {
  5260. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5261. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  5262. },
  5263. "time": "2016-11-19T07:33:16+00:00"
  5264. },
  5265. {
  5266. "name": "sebastian/resource-operations",
  5267. "version": "1.0.0",
  5268. "source": {
  5269. "type": "git",
  5270. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5271. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  5272. },
  5273. "dist": {
  5274. "type": "zip",
  5275. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5276. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5277. "shasum": ""
  5278. },
  5279. "require": {
  5280. "php": ">=5.6.0"
  5281. },
  5282. "type": "library",
  5283. "extra": {
  5284. "branch-alias": {
  5285. "dev-master": "1.0.x-dev"
  5286. }
  5287. },
  5288. "autoload": {
  5289. "classmap": [
  5290. "src/"
  5291. ]
  5292. },
  5293. "notification-url": "https://packagist.org/downloads/",
  5294. "license": [
  5295. "BSD-3-Clause"
  5296. ],
  5297. "authors": [
  5298. {
  5299. "name": "Sebastian Bergmann",
  5300. "email": "sebastian@phpunit.de"
  5301. }
  5302. ],
  5303. "description": "Provides a list of PHP built-in functions that operate on resources",
  5304. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5305. "support": {
  5306. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  5307. "source": "https://github.com/sebastianbergmann/resource-operations/tree/master"
  5308. },
  5309. "time": "2015-07-28T20:34:47+00:00"
  5310. },
  5311. {
  5312. "name": "sebastian/version",
  5313. "version": "2.0.1",
  5314. "source": {
  5315. "type": "git",
  5316. "url": "https://github.com/sebastianbergmann/version.git",
  5317. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5318. },
  5319. "dist": {
  5320. "type": "zip",
  5321. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5322. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5323. "shasum": ""
  5324. },
  5325. "require": {
  5326. "php": ">=5.6"
  5327. },
  5328. "type": "library",
  5329. "extra": {
  5330. "branch-alias": {
  5331. "dev-master": "2.0.x-dev"
  5332. }
  5333. },
  5334. "autoload": {
  5335. "classmap": [
  5336. "src/"
  5337. ]
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "BSD-3-Clause"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Sebastian Bergmann",
  5346. "email": "sebastian@phpunit.de",
  5347. "role": "lead"
  5348. }
  5349. ],
  5350. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5351. "homepage": "https://github.com/sebastianbergmann/version",
  5352. "support": {
  5353. "issues": "https://github.com/sebastianbergmann/version/issues",
  5354. "source": "https://github.com/sebastianbergmann/version/tree/master"
  5355. },
  5356. "time": "2016-10-03T07:35:21+00:00"
  5357. },
  5358. {
  5359. "name": "symfony/yaml",
  5360. "version": "v4.4.37",
  5361. "source": {
  5362. "type": "git",
  5363. "url": "https://github.com/symfony/yaml.git",
  5364. "reference": "d7f637cc0f0cc14beb0984f2bb50da560b271311"
  5365. },
  5366. "dist": {
  5367. "type": "zip",
  5368. "url": "https://api.github.com/repos/symfony/yaml/zipball/d7f637cc0f0cc14beb0984f2bb50da560b271311",
  5369. "reference": "d7f637cc0f0cc14beb0984f2bb50da560b271311",
  5370. "shasum": ""
  5371. },
  5372. "require": {
  5373. "php": ">=7.1.3",
  5374. "symfony/polyfill-ctype": "~1.8"
  5375. },
  5376. "conflict": {
  5377. "symfony/console": "<3.4"
  5378. },
  5379. "require-dev": {
  5380. "symfony/console": "^3.4|^4.0|^5.0"
  5381. },
  5382. "suggest": {
  5383. "symfony/console": "For validating YAML files using the lint command"
  5384. },
  5385. "type": "library",
  5386. "autoload": {
  5387. "psr-4": {
  5388. "Symfony\\Component\\Yaml\\": ""
  5389. },
  5390. "exclude-from-classmap": [
  5391. "/Tests/"
  5392. ]
  5393. },
  5394. "notification-url": "https://packagist.org/downloads/",
  5395. "license": [
  5396. "MIT"
  5397. ],
  5398. "authors": [
  5399. {
  5400. "name": "Fabien Potencier",
  5401. "email": "fabien@symfony.com"
  5402. },
  5403. {
  5404. "name": "Symfony Community",
  5405. "homepage": "https://symfony.com/contributors"
  5406. }
  5407. ],
  5408. "description": "Loads and dumps YAML files",
  5409. "homepage": "https://symfony.com",
  5410. "support": {
  5411. "source": "https://github.com/symfony/yaml/tree/v4.4.37"
  5412. },
  5413. "funding": [
  5414. {
  5415. "url": "https://symfony.com/sponsor",
  5416. "type": "custom"
  5417. },
  5418. {
  5419. "url": "https://github.com/fabpot",
  5420. "type": "github"
  5421. },
  5422. {
  5423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5424. "type": "tidelift"
  5425. }
  5426. ],
  5427. "time": "2022-01-24T20:11:01+00:00"
  5428. },
  5429. {
  5430. "name": "webmozart/assert",
  5431. "version": "1.10.0",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://github.com/webmozarts/assert.git",
  5435. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  5440. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  5441. "shasum": ""
  5442. },
  5443. "require": {
  5444. "php": "^7.2 || ^8.0",
  5445. "symfony/polyfill-ctype": "^1.8"
  5446. },
  5447. "conflict": {
  5448. "phpstan/phpstan": "<0.12.20",
  5449. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5450. },
  5451. "require-dev": {
  5452. "phpunit/phpunit": "^8.5.13"
  5453. },
  5454. "type": "library",
  5455. "extra": {
  5456. "branch-alias": {
  5457. "dev-master": "1.10-dev"
  5458. }
  5459. },
  5460. "autoload": {
  5461. "psr-4": {
  5462. "Webmozart\\Assert\\": "src/"
  5463. }
  5464. },
  5465. "notification-url": "https://packagist.org/downloads/",
  5466. "license": [
  5467. "MIT"
  5468. ],
  5469. "authors": [
  5470. {
  5471. "name": "Bernhard Schussek",
  5472. "email": "bschussek@gmail.com"
  5473. }
  5474. ],
  5475. "description": "Assertions to validate method input/output with nice error messages.",
  5476. "keywords": [
  5477. "assert",
  5478. "check",
  5479. "validate"
  5480. ],
  5481. "support": {
  5482. "issues": "https://github.com/webmozarts/assert/issues",
  5483. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  5484. },
  5485. "time": "2021-03-09T10:59:23+00:00"
  5486. }
  5487. ],
  5488. "aliases": [],
  5489. "minimum-stability": "stable",
  5490. "stability-flags": [],
  5491. "prefer-stable": false,
  5492. "prefer-lowest": false,
  5493. "platform": {
  5494. "php": ">=5.6.4"
  5495. },
  5496. "platform-dev": [],
  5497. "plugin-api-version": "2.1.0"
  5498. }