composer.lock 215 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877
  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": "be1a49e11624859790c2eecd80418ba9",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "brick/math",
  12. "version": "0.9.3",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/brick/math.git",
  16. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  21. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "ext-json": "*",
  26. "php": "^7.1 || ^8.0"
  27. },
  28. "require-dev": {
  29. "php-coveralls/php-coveralls": "^2.2",
  30. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  31. "vimeo/psalm": "4.9.2"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-4": {
  36. "Brick\\Math\\": "src/"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "MIT"
  42. ],
  43. "description": "Arbitrary-precision arithmetic library",
  44. "keywords": [
  45. "Arbitrary-precision",
  46. "BigInteger",
  47. "BigRational",
  48. "arithmetic",
  49. "bigdecimal",
  50. "bignum",
  51. "brick",
  52. "math"
  53. ],
  54. "support": {
  55. "issues": "https://github.com/brick/math/issues",
  56. "source": "https://github.com/brick/math/tree/0.9.3"
  57. },
  58. "funding": [
  59. {
  60. "url": "https://github.com/BenMorel",
  61. "type": "github"
  62. },
  63. {
  64. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  65. "type": "tidelift"
  66. }
  67. ],
  68. "time": "2021-08-15T20:50:18+00:00"
  69. },
  70. {
  71. "name": "cocur/vale",
  72. "version": "v0.2",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/cocur/vale.git",
  76. "reference": "6bf6d4d538ac75c27dc42a8711a2aef16de273f9"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/cocur/vale/zipball/6bf6d4d538ac75c27dc42a8711a2aef16de273f9",
  81. "reference": "6bf6d4d538ac75c27dc42a8711a2aef16de273f9",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": ">=5.4"
  86. },
  87. "require-dev": {
  88. "mockery/mockery": "~0.9",
  89. "phpunit/phpunit": "~4.5"
  90. },
  91. "type": "library",
  92. "autoload": {
  93. "psr-4": {
  94. "Cocur\\Vale\\": "src"
  95. }
  96. },
  97. "notification-url": "https://packagist.org/downloads/",
  98. "license": [
  99. "MIT"
  100. ],
  101. "authors": [
  102. {
  103. "name": "Florian Eckerstorfer",
  104. "email": "florian@eckerstorfer.co",
  105. "homepage": "https://florian.ec"
  106. }
  107. ],
  108. "description": "Vale is a helper utility that lets you get and set values in arbitrary nested arrays and objects.",
  109. "support": {
  110. "issues": "https://github.com/cocur/vale/issues",
  111. "source": "https://github.com/cocur/vale/tree/0.2"
  112. },
  113. "time": "2015-03-24T10:17:57+00:00"
  114. },
  115. {
  116. "name": "container-interop/container-interop",
  117. "version": "1.2.0",
  118. "source": {
  119. "type": "git",
  120. "url": "https://github.com/container-interop/container-interop.git",
  121. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  122. },
  123. "dist": {
  124. "type": "zip",
  125. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  126. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  127. "shasum": ""
  128. },
  129. "require": {
  130. "psr/container": "^1.0"
  131. },
  132. "type": "library",
  133. "autoload": {
  134. "psr-4": {
  135. "Interop\\Container\\": "src/Interop/Container/"
  136. }
  137. },
  138. "notification-url": "https://packagist.org/downloads/",
  139. "license": [
  140. "MIT"
  141. ],
  142. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  143. "homepage": "https://github.com/container-interop/container-interop",
  144. "support": {
  145. "issues": "https://github.com/container-interop/container-interop/issues",
  146. "source": "https://github.com/container-interop/container-interop/tree/master"
  147. },
  148. "abandoned": "psr/container",
  149. "time": "2017-02-14T19:40:03+00:00"
  150. },
  151. {
  152. "name": "doctrine/inflector",
  153. "version": "2.0.4",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/doctrine/inflector.git",
  157. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  162. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "php": "^7.2 || ^8.0"
  167. },
  168. "require-dev": {
  169. "doctrine/coding-standard": "^8.2",
  170. "phpstan/phpstan": "^0.12",
  171. "phpstan/phpstan-phpunit": "^0.12",
  172. "phpstan/phpstan-strict-rules": "^0.12",
  173. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  174. "vimeo/psalm": "^4.10"
  175. },
  176. "type": "library",
  177. "autoload": {
  178. "psr-4": {
  179. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  180. }
  181. },
  182. "notification-url": "https://packagist.org/downloads/",
  183. "license": [
  184. "MIT"
  185. ],
  186. "authors": [
  187. {
  188. "name": "Guilherme Blanco",
  189. "email": "guilhermeblanco@gmail.com"
  190. },
  191. {
  192. "name": "Roman Borschel",
  193. "email": "roman@code-factory.org"
  194. },
  195. {
  196. "name": "Benjamin Eberlei",
  197. "email": "kontakt@beberlei.de"
  198. },
  199. {
  200. "name": "Jonathan Wage",
  201. "email": "jonwage@gmail.com"
  202. },
  203. {
  204. "name": "Johannes Schmitt",
  205. "email": "schmittjoh@gmail.com"
  206. }
  207. ],
  208. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  209. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  210. "keywords": [
  211. "inflection",
  212. "inflector",
  213. "lowercase",
  214. "manipulation",
  215. "php",
  216. "plural",
  217. "singular",
  218. "strings",
  219. "uppercase",
  220. "words"
  221. ],
  222. "support": {
  223. "issues": "https://github.com/doctrine/inflector/issues",
  224. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  225. },
  226. "funding": [
  227. {
  228. "url": "https://www.doctrine-project.org/sponsorship.html",
  229. "type": "custom"
  230. },
  231. {
  232. "url": "https://www.patreon.com/phpdoctrine",
  233. "type": "patreon"
  234. },
  235. {
  236. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  237. "type": "tidelift"
  238. }
  239. ],
  240. "time": "2021-10-22T20:16:43+00:00"
  241. },
  242. {
  243. "name": "doctrine/lexer",
  244. "version": "1.2.1",
  245. "source": {
  246. "type": "git",
  247. "url": "https://github.com/doctrine/lexer.git",
  248. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  249. },
  250. "dist": {
  251. "type": "zip",
  252. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  253. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  254. "shasum": ""
  255. },
  256. "require": {
  257. "php": "^7.2 || ^8.0"
  258. },
  259. "require-dev": {
  260. "doctrine/coding-standard": "^6.0",
  261. "phpstan/phpstan": "^0.11.8",
  262. "phpunit/phpunit": "^8.2"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.2.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  294. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  295. "keywords": [
  296. "annotations",
  297. "docblock",
  298. "lexer",
  299. "parser",
  300. "php"
  301. ],
  302. "support": {
  303. "issues": "https://github.com/doctrine/lexer/issues",
  304. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  305. },
  306. "funding": [
  307. {
  308. "url": "https://www.doctrine-project.org/sponsorship.html",
  309. "type": "custom"
  310. },
  311. {
  312. "url": "https://www.patreon.com/phpdoctrine",
  313. "type": "patreon"
  314. },
  315. {
  316. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  317. "type": "tidelift"
  318. }
  319. ],
  320. "time": "2020-05-25T17:44:05+00:00"
  321. },
  322. {
  323. "name": "dragonmantank/cron-expression",
  324. "version": "v3.1.0",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/dragonmantank/cron-expression.git",
  328. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  333. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "php": "^7.2|^8.0",
  338. "webmozart/assert": "^1.7.0"
  339. },
  340. "replace": {
  341. "mtdowling/cron-expression": "^1.0"
  342. },
  343. "require-dev": {
  344. "phpstan/extension-installer": "^1.0",
  345. "phpstan/phpstan": "^0.12",
  346. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  347. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  348. },
  349. "type": "library",
  350. "autoload": {
  351. "psr-4": {
  352. "Cron\\": "src/Cron/"
  353. }
  354. },
  355. "notification-url": "https://packagist.org/downloads/",
  356. "license": [
  357. "MIT"
  358. ],
  359. "authors": [
  360. {
  361. "name": "Chris Tankersley",
  362. "email": "chris@ctankersley.com",
  363. "homepage": "https://github.com/dragonmantank"
  364. }
  365. ],
  366. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  367. "keywords": [
  368. "cron",
  369. "schedule"
  370. ],
  371. "support": {
  372. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  373. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  374. },
  375. "funding": [
  376. {
  377. "url": "https://github.com/dragonmantank",
  378. "type": "github"
  379. }
  380. ],
  381. "time": "2020-11-24T19:55:57+00:00"
  382. },
  383. {
  384. "name": "egulias/email-validator",
  385. "version": "2.1.25",
  386. "source": {
  387. "type": "git",
  388. "url": "https://github.com/egulias/EmailValidator.git",
  389. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  390. },
  391. "dist": {
  392. "type": "zip",
  393. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  394. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  395. "shasum": ""
  396. },
  397. "require": {
  398. "doctrine/lexer": "^1.0.1",
  399. "php": ">=5.5",
  400. "symfony/polyfill-intl-idn": "^1.10"
  401. },
  402. "require-dev": {
  403. "dominicsayers/isemail": "^3.0.7",
  404. "phpunit/phpunit": "^4.8.36|^7.5.15",
  405. "satooshi/php-coveralls": "^1.0.1"
  406. },
  407. "suggest": {
  408. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  409. },
  410. "type": "library",
  411. "extra": {
  412. "branch-alias": {
  413. "dev-master": "2.1.x-dev"
  414. }
  415. },
  416. "autoload": {
  417. "psr-4": {
  418. "Egulias\\EmailValidator\\": "src"
  419. }
  420. },
  421. "notification-url": "https://packagist.org/downloads/",
  422. "license": [
  423. "MIT"
  424. ],
  425. "authors": [
  426. {
  427. "name": "Eduardo Gulias Davis"
  428. }
  429. ],
  430. "description": "A library for validating emails against several RFCs",
  431. "homepage": "https://github.com/egulias/EmailValidator",
  432. "keywords": [
  433. "email",
  434. "emailvalidation",
  435. "emailvalidator",
  436. "validation",
  437. "validator"
  438. ],
  439. "support": {
  440. "issues": "https://github.com/egulias/EmailValidator/issues",
  441. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  442. },
  443. "funding": [
  444. {
  445. "url": "https://github.com/egulias",
  446. "type": "github"
  447. }
  448. ],
  449. "time": "2020-12-29T14:50:06+00:00"
  450. },
  451. {
  452. "name": "graham-campbell/result-type",
  453. "version": "v1.0.4",
  454. "source": {
  455. "type": "git",
  456. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  457. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  458. },
  459. "dist": {
  460. "type": "zip",
  461. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  462. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  463. "shasum": ""
  464. },
  465. "require": {
  466. "php": "^7.0 || ^8.0",
  467. "phpoption/phpoption": "^1.8"
  468. },
  469. "require-dev": {
  470. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  471. },
  472. "type": "library",
  473. "autoload": {
  474. "psr-4": {
  475. "GrahamCampbell\\ResultType\\": "src/"
  476. }
  477. },
  478. "notification-url": "https://packagist.org/downloads/",
  479. "license": [
  480. "MIT"
  481. ],
  482. "authors": [
  483. {
  484. "name": "Graham Campbell",
  485. "email": "hello@gjcampbell.co.uk",
  486. "homepage": "https://github.com/GrahamCampbell"
  487. }
  488. ],
  489. "description": "An Implementation Of The Result Type",
  490. "keywords": [
  491. "Graham Campbell",
  492. "GrahamCampbell",
  493. "Result Type",
  494. "Result-Type",
  495. "result"
  496. ],
  497. "support": {
  498. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  499. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  500. },
  501. "funding": [
  502. {
  503. "url": "https://github.com/GrahamCampbell",
  504. "type": "github"
  505. },
  506. {
  507. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  508. "type": "tidelift"
  509. }
  510. ],
  511. "time": "2021-11-21T21:41:47+00:00"
  512. },
  513. {
  514. "name": "hamcrest/hamcrest-php",
  515. "version": "v2.0.1",
  516. "source": {
  517. "type": "git",
  518. "url": "https://github.com/hamcrest/hamcrest-php.git",
  519. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  520. },
  521. "dist": {
  522. "type": "zip",
  523. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  524. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  525. "shasum": ""
  526. },
  527. "require": {
  528. "php": "^5.3|^7.0|^8.0"
  529. },
  530. "replace": {
  531. "cordoval/hamcrest-php": "*",
  532. "davedevelopment/hamcrest-php": "*",
  533. "kodova/hamcrest-php": "*"
  534. },
  535. "require-dev": {
  536. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  537. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  538. },
  539. "type": "library",
  540. "extra": {
  541. "branch-alias": {
  542. "dev-master": "2.1-dev"
  543. }
  544. },
  545. "autoload": {
  546. "classmap": [
  547. "hamcrest"
  548. ]
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "BSD-3-Clause"
  553. ],
  554. "description": "This is the PHP port of Hamcrest Matchers",
  555. "keywords": [
  556. "test"
  557. ],
  558. "support": {
  559. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  560. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  561. },
  562. "time": "2020-07-09T08:09:16+00:00"
  563. },
  564. {
  565. "name": "laravel/framework",
  566. "version": "v8.76.2",
  567. "source": {
  568. "type": "git",
  569. "url": "https://github.com/laravel/framework.git",
  570. "reference": "c67acfdc968f487b6235435080eef62a7e2ed055"
  571. },
  572. "dist": {
  573. "type": "zip",
  574. "url": "https://api.github.com/repos/laravel/framework/zipball/c67acfdc968f487b6235435080eef62a7e2ed055",
  575. "reference": "c67acfdc968f487b6235435080eef62a7e2ed055",
  576. "shasum": ""
  577. },
  578. "require": {
  579. "doctrine/inflector": "^1.4|^2.0",
  580. "dragonmantank/cron-expression": "^3.0.2",
  581. "egulias/email-validator": "^2.1.10",
  582. "ext-json": "*",
  583. "ext-mbstring": "*",
  584. "ext-openssl": "*",
  585. "laravel/serializable-closure": "^1.0",
  586. "league/commonmark": "^1.3|^2.0.2",
  587. "league/flysystem": "^1.1",
  588. "monolog/monolog": "^2.0",
  589. "nesbot/carbon": "^2.53.1",
  590. "opis/closure": "^3.6",
  591. "php": "^7.3|^8.0",
  592. "psr/container": "^1.0",
  593. "psr/log": "^1.0 || ^2.0",
  594. "psr/simple-cache": "^1.0",
  595. "ramsey/uuid": "^4.2.2",
  596. "swiftmailer/swiftmailer": "^6.3",
  597. "symfony/console": "^5.4",
  598. "symfony/error-handler": "^5.4",
  599. "symfony/finder": "^5.4",
  600. "symfony/http-foundation": "^5.4",
  601. "symfony/http-kernel": "^5.4",
  602. "symfony/mime": "^5.4",
  603. "symfony/process": "^5.4",
  604. "symfony/routing": "^5.4",
  605. "symfony/var-dumper": "^5.4",
  606. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  607. "vlucas/phpdotenv": "^5.2",
  608. "voku/portable-ascii": "^1.4.8"
  609. },
  610. "conflict": {
  611. "tightenco/collect": "<5.5.33"
  612. },
  613. "provide": {
  614. "psr/container-implementation": "1.0",
  615. "psr/simple-cache-implementation": "1.0"
  616. },
  617. "replace": {
  618. "illuminate/auth": "self.version",
  619. "illuminate/broadcasting": "self.version",
  620. "illuminate/bus": "self.version",
  621. "illuminate/cache": "self.version",
  622. "illuminate/collections": "self.version",
  623. "illuminate/config": "self.version",
  624. "illuminate/console": "self.version",
  625. "illuminate/container": "self.version",
  626. "illuminate/contracts": "self.version",
  627. "illuminate/cookie": "self.version",
  628. "illuminate/database": "self.version",
  629. "illuminate/encryption": "self.version",
  630. "illuminate/events": "self.version",
  631. "illuminate/filesystem": "self.version",
  632. "illuminate/hashing": "self.version",
  633. "illuminate/http": "self.version",
  634. "illuminate/log": "self.version",
  635. "illuminate/macroable": "self.version",
  636. "illuminate/mail": "self.version",
  637. "illuminate/notifications": "self.version",
  638. "illuminate/pagination": "self.version",
  639. "illuminate/pipeline": "self.version",
  640. "illuminate/queue": "self.version",
  641. "illuminate/redis": "self.version",
  642. "illuminate/routing": "self.version",
  643. "illuminate/session": "self.version",
  644. "illuminate/support": "self.version",
  645. "illuminate/testing": "self.version",
  646. "illuminate/translation": "self.version",
  647. "illuminate/validation": "self.version",
  648. "illuminate/view": "self.version"
  649. },
  650. "require-dev": {
  651. "aws/aws-sdk-php": "^3.198.1",
  652. "doctrine/dbal": "^2.13.3|^3.1.4",
  653. "filp/whoops": "^2.14.3",
  654. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  655. "league/flysystem-cached-adapter": "^1.0",
  656. "mockery/mockery": "^1.4.4",
  657. "orchestra/testbench-core": "^6.27",
  658. "pda/pheanstalk": "^4.0",
  659. "phpunit/phpunit": "^8.5.19|^9.5.8",
  660. "predis/predis": "^1.1.9",
  661. "symfony/cache": "^5.4"
  662. },
  663. "suggest": {
  664. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  665. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  666. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  667. "ext-bcmath": "Required to use the multiple_of validation rule.",
  668. "ext-ftp": "Required to use the Flysystem FTP driver.",
  669. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  670. "ext-memcached": "Required to use the memcache cache driver.",
  671. "ext-pcntl": "Required to use all features of the queue worker.",
  672. "ext-posix": "Required to use all features of the queue worker.",
  673. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  674. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  675. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  676. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  677. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  678. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  679. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  680. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  681. "mockery/mockery": "Required to use mocking (^1.4.4).",
  682. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  683. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  684. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  685. "predis/predis": "Required to use the predis connector (^1.1.9).",
  686. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  687. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  688. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  689. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  690. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  691. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  692. },
  693. "type": "library",
  694. "extra": {
  695. "branch-alias": {
  696. "dev-master": "8.x-dev"
  697. }
  698. },
  699. "autoload": {
  700. "files": [
  701. "src/Illuminate/Collections/helpers.php",
  702. "src/Illuminate/Events/functions.php",
  703. "src/Illuminate/Foundation/helpers.php",
  704. "src/Illuminate/Support/helpers.php"
  705. ],
  706. "psr-4": {
  707. "Illuminate\\": "src/Illuminate/",
  708. "Illuminate\\Support\\": [
  709. "src/Illuminate/Macroable/",
  710. "src/Illuminate/Collections/"
  711. ]
  712. }
  713. },
  714. "notification-url": "https://packagist.org/downloads/",
  715. "license": [
  716. "MIT"
  717. ],
  718. "authors": [
  719. {
  720. "name": "Taylor Otwell",
  721. "email": "taylor@laravel.com"
  722. }
  723. ],
  724. "description": "The Laravel Framework.",
  725. "homepage": "https://laravel.com",
  726. "keywords": [
  727. "framework",
  728. "laravel"
  729. ],
  730. "support": {
  731. "issues": "https://github.com/laravel/framework/issues",
  732. "source": "https://github.com/laravel/framework"
  733. },
  734. "time": "2021-12-15T14:02:14+00:00"
  735. },
  736. {
  737. "name": "laravel/serializable-closure",
  738. "version": "v1.0.5",
  739. "source": {
  740. "type": "git",
  741. "url": "https://github.com/laravel/serializable-closure.git",
  742. "reference": "25de3be1bca1b17d52ff0dc02b646c667ac7266c"
  743. },
  744. "dist": {
  745. "type": "zip",
  746. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/25de3be1bca1b17d52ff0dc02b646c667ac7266c",
  747. "reference": "25de3be1bca1b17d52ff0dc02b646c667ac7266c",
  748. "shasum": ""
  749. },
  750. "require": {
  751. "php": "^7.3|^8.0"
  752. },
  753. "require-dev": {
  754. "pestphp/pest": "^1.18",
  755. "phpstan/phpstan": "^0.12.98",
  756. "symfony/var-dumper": "^5.3"
  757. },
  758. "type": "library",
  759. "extra": {
  760. "branch-alias": {
  761. "dev-master": "1.x-dev"
  762. }
  763. },
  764. "autoload": {
  765. "psr-4": {
  766. "Laravel\\SerializableClosure\\": "src/"
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Taylor Otwell",
  776. "email": "taylor@laravel.com"
  777. },
  778. {
  779. "name": "Nuno Maduro",
  780. "email": "nuno@laravel.com"
  781. }
  782. ],
  783. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  784. "keywords": [
  785. "closure",
  786. "laravel",
  787. "serializable"
  788. ],
  789. "support": {
  790. "issues": "https://github.com/laravel/serializable-closure/issues",
  791. "source": "https://github.com/laravel/serializable-closure"
  792. },
  793. "time": "2021-11-30T15:53:04+00:00"
  794. },
  795. {
  796. "name": "latte/latte",
  797. "version": "v2.10.6",
  798. "source": {
  799. "type": "git",
  800. "url": "https://github.com/nette/latte.git",
  801. "reference": "8a9bd8af76557fc35abae639ab7b966af706fec9"
  802. },
  803. "dist": {
  804. "type": "zip",
  805. "url": "https://api.github.com/repos/nette/latte/zipball/8a9bd8af76557fc35abae639ab7b966af706fec9",
  806. "reference": "8a9bd8af76557fc35abae639ab7b966af706fec9",
  807. "shasum": ""
  808. },
  809. "require": {
  810. "ext-json": "*",
  811. "ext-tokenizer": "*",
  812. "php": ">=7.1 <8.2"
  813. },
  814. "conflict": {
  815. "nette/application": "<2.4.1"
  816. },
  817. "require-dev": {
  818. "nette/php-generator": "^3.3.4",
  819. "nette/tester": "~2.0",
  820. "nette/utils": "^3.0",
  821. "phpstan/phpstan": "^0.12",
  822. "tracy/tracy": "^2.3"
  823. },
  824. "suggest": {
  825. "ext-fileinfo": "to use filter |datastream",
  826. "ext-iconv": "to use filters |reverse, |substring",
  827. "ext-mbstring": "to use filters like lower, upper, capitalize, ...",
  828. "nette/php-generator": "to use tag {templatePrint}",
  829. "nette/utils": "to use filter |webalize"
  830. },
  831. "bin": [
  832. "bin/latte-lint"
  833. ],
  834. "type": "library",
  835. "extra": {
  836. "branch-alias": {
  837. "dev-master": "2.10-dev"
  838. }
  839. },
  840. "autoload": {
  841. "classmap": [
  842. "src/"
  843. ]
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "BSD-3-Clause",
  848. "GPL-2.0-only",
  849. "GPL-3.0-only"
  850. ],
  851. "authors": [
  852. {
  853. "name": "David Grudl",
  854. "homepage": "https://davidgrudl.com"
  855. },
  856. {
  857. "name": "Nette Community",
  858. "homepage": "https://nette.org/contributors"
  859. }
  860. ],
  861. "description": "☕ Latte: the intuitive and fast template engine for those who want the most secure PHP sites. Introduces context-sensitive escaping.",
  862. "homepage": "https://latte.nette.org",
  863. "keywords": [
  864. "context-sensitive",
  865. "engine",
  866. "escaping",
  867. "html",
  868. "nette",
  869. "security",
  870. "template",
  871. "twig"
  872. ],
  873. "support": {
  874. "issues": "https://github.com/nette/latte/issues",
  875. "source": "https://github.com/nette/latte/tree/v2.10.6"
  876. },
  877. "time": "2021-11-26T22:56:21+00:00"
  878. },
  879. {
  880. "name": "league/commonmark",
  881. "version": "1.6.6",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/thephpleague/commonmark.git",
  885. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  890. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "ext-mbstring": "*",
  895. "php": "^7.1 || ^8.0"
  896. },
  897. "conflict": {
  898. "scrutinizer/ocular": "1.7.*"
  899. },
  900. "require-dev": {
  901. "cebe/markdown": "~1.0",
  902. "commonmark/commonmark.js": "0.29.2",
  903. "erusev/parsedown": "~1.0",
  904. "ext-json": "*",
  905. "github/gfm": "0.29.0",
  906. "michelf/php-markdown": "~1.4",
  907. "mikehaertl/php-shellcommand": "^1.4",
  908. "phpstan/phpstan": "^0.12.90",
  909. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  910. "scrutinizer/ocular": "^1.5",
  911. "symfony/finder": "^4.2"
  912. },
  913. "bin": [
  914. "bin/commonmark"
  915. ],
  916. "type": "library",
  917. "autoload": {
  918. "psr-4": {
  919. "League\\CommonMark\\": "src"
  920. }
  921. },
  922. "notification-url": "https://packagist.org/downloads/",
  923. "license": [
  924. "BSD-3-Clause"
  925. ],
  926. "authors": [
  927. {
  928. "name": "Colin O'Dell",
  929. "email": "colinodell@gmail.com",
  930. "homepage": "https://www.colinodell.com",
  931. "role": "Lead Developer"
  932. }
  933. ],
  934. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  935. "homepage": "https://commonmark.thephpleague.com",
  936. "keywords": [
  937. "commonmark",
  938. "flavored",
  939. "gfm",
  940. "github",
  941. "github-flavored",
  942. "markdown",
  943. "md",
  944. "parser"
  945. ],
  946. "support": {
  947. "docs": "https://commonmark.thephpleague.com/",
  948. "issues": "https://github.com/thephpleague/commonmark/issues",
  949. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  950. "source": "https://github.com/thephpleague/commonmark"
  951. },
  952. "funding": [
  953. {
  954. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  955. "type": "custom"
  956. },
  957. {
  958. "url": "https://www.colinodell.com/sponsor",
  959. "type": "custom"
  960. },
  961. {
  962. "url": "https://www.paypal.me/colinpodell/10.00",
  963. "type": "custom"
  964. },
  965. {
  966. "url": "https://github.com/colinodell",
  967. "type": "github"
  968. },
  969. {
  970. "url": "https://www.patreon.com/colinodell",
  971. "type": "patreon"
  972. },
  973. {
  974. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  975. "type": "tidelift"
  976. }
  977. ],
  978. "time": "2021-07-17T17:13:23+00:00"
  979. },
  980. {
  981. "name": "league/container",
  982. "version": "2.5.0",
  983. "source": {
  984. "type": "git",
  985. "url": "https://github.com/thephpleague/container.git",
  986. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  987. },
  988. "dist": {
  989. "type": "zip",
  990. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  991. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  992. "shasum": ""
  993. },
  994. "require": {
  995. "container-interop/container-interop": "^1.2",
  996. "php": "^5.4 || ^7.0 || ^8.0"
  997. },
  998. "provide": {
  999. "container-interop/container-interop-implementation": "^1.2",
  1000. "psr/container-implementation": "^1.0"
  1001. },
  1002. "replace": {
  1003. "orno/di": "~2.0"
  1004. },
  1005. "require-dev": {
  1006. "phpunit/phpunit": "^4.8.36",
  1007. "scrutinizer/ocular": "^1.3",
  1008. "squizlabs/php_codesniffer": "^3.5"
  1009. },
  1010. "type": "library",
  1011. "extra": {
  1012. "branch-alias": {
  1013. "dev-2.x": "2.x-dev",
  1014. "dev-1.x": "1.x-dev"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "League\\Container\\": "src"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Phil Bennett",
  1029. "email": "philipobenito@gmail.com",
  1030. "homepage": "http://www.philipobenito.com",
  1031. "role": "Developer"
  1032. }
  1033. ],
  1034. "description": "A fast and intuitive dependency injection container.",
  1035. "homepage": "https://github.com/thephpleague/container",
  1036. "keywords": [
  1037. "container",
  1038. "dependency",
  1039. "di",
  1040. "injection",
  1041. "league",
  1042. "provider",
  1043. "service"
  1044. ],
  1045. "support": {
  1046. "issues": "https://github.com/thephpleague/container/issues",
  1047. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  1048. },
  1049. "funding": [
  1050. {
  1051. "url": "https://github.com/philipobenito",
  1052. "type": "github"
  1053. }
  1054. ],
  1055. "time": "2021-02-22T09:20:06+00:00"
  1056. },
  1057. {
  1058. "name": "league/flysystem",
  1059. "version": "1.1.9",
  1060. "source": {
  1061. "type": "git",
  1062. "url": "https://github.com/thephpleague/flysystem.git",
  1063. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  1064. },
  1065. "dist": {
  1066. "type": "zip",
  1067. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  1068. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  1069. "shasum": ""
  1070. },
  1071. "require": {
  1072. "ext-fileinfo": "*",
  1073. "league/mime-type-detection": "^1.3",
  1074. "php": "^7.2.5 || ^8.0"
  1075. },
  1076. "conflict": {
  1077. "league/flysystem-sftp": "<1.0.6"
  1078. },
  1079. "require-dev": {
  1080. "phpspec/prophecy": "^1.11.1",
  1081. "phpunit/phpunit": "^8.5.8"
  1082. },
  1083. "suggest": {
  1084. "ext-ftp": "Allows you to use FTP server storage",
  1085. "ext-openssl": "Allows you to use FTPS server storage",
  1086. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1087. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1088. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1089. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1090. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1091. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1092. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1093. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1094. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1095. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1096. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1097. },
  1098. "type": "library",
  1099. "extra": {
  1100. "branch-alias": {
  1101. "dev-master": "1.1-dev"
  1102. }
  1103. },
  1104. "autoload": {
  1105. "psr-4": {
  1106. "League\\Flysystem\\": "src/"
  1107. }
  1108. },
  1109. "notification-url": "https://packagist.org/downloads/",
  1110. "license": [
  1111. "MIT"
  1112. ],
  1113. "authors": [
  1114. {
  1115. "name": "Frank de Jonge",
  1116. "email": "info@frenky.net"
  1117. }
  1118. ],
  1119. "description": "Filesystem abstraction: Many filesystems, one API.",
  1120. "keywords": [
  1121. "Cloud Files",
  1122. "WebDAV",
  1123. "abstraction",
  1124. "aws",
  1125. "cloud",
  1126. "copy.com",
  1127. "dropbox",
  1128. "file systems",
  1129. "files",
  1130. "filesystem",
  1131. "filesystems",
  1132. "ftp",
  1133. "rackspace",
  1134. "remote",
  1135. "s3",
  1136. "sftp",
  1137. "storage"
  1138. ],
  1139. "support": {
  1140. "issues": "https://github.com/thephpleague/flysystem/issues",
  1141. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  1142. },
  1143. "funding": [
  1144. {
  1145. "url": "https://offset.earth/frankdejonge",
  1146. "type": "other"
  1147. }
  1148. ],
  1149. "time": "2021-12-09T09:40:50+00:00"
  1150. },
  1151. {
  1152. "name": "league/mime-type-detection",
  1153. "version": "1.9.0",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1157. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69",
  1162. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69",
  1163. "shasum": ""
  1164. },
  1165. "require": {
  1166. "ext-fileinfo": "*",
  1167. "php": "^7.2 || ^8.0"
  1168. },
  1169. "require-dev": {
  1170. "friendsofphp/php-cs-fixer": "^3.2",
  1171. "phpstan/phpstan": "^0.12.68",
  1172. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1173. },
  1174. "type": "library",
  1175. "autoload": {
  1176. "psr-4": {
  1177. "League\\MimeTypeDetection\\": "src"
  1178. }
  1179. },
  1180. "notification-url": "https://packagist.org/downloads/",
  1181. "license": [
  1182. "MIT"
  1183. ],
  1184. "authors": [
  1185. {
  1186. "name": "Frank de Jonge",
  1187. "email": "info@frankdejonge.nl"
  1188. }
  1189. ],
  1190. "description": "Mime-type detection for Flysystem",
  1191. "support": {
  1192. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1193. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0"
  1194. },
  1195. "funding": [
  1196. {
  1197. "url": "https://github.com/frankdejonge",
  1198. "type": "github"
  1199. },
  1200. {
  1201. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1202. "type": "tidelift"
  1203. }
  1204. ],
  1205. "time": "2021-11-21T11:48:40+00:00"
  1206. },
  1207. {
  1208. "name": "mikey179/vfsstream",
  1209. "version": "v1.6.10",
  1210. "source": {
  1211. "type": "git",
  1212. "url": "https://github.com/bovigo/vfsStream.git",
  1213. "reference": "250c0825537d501e327df879fb3d4cd751933b85"
  1214. },
  1215. "dist": {
  1216. "type": "zip",
  1217. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/250c0825537d501e327df879fb3d4cd751933b85",
  1218. "reference": "250c0825537d501e327df879fb3d4cd751933b85",
  1219. "shasum": ""
  1220. },
  1221. "require": {
  1222. "php": ">=5.3.0"
  1223. },
  1224. "require-dev": {
  1225. "phpunit/phpunit": "^4.5|^5.0"
  1226. },
  1227. "type": "library",
  1228. "extra": {
  1229. "branch-alias": {
  1230. "dev-master": "1.6.x-dev"
  1231. }
  1232. },
  1233. "autoload": {
  1234. "psr-0": {
  1235. "org\\bovigo\\vfs\\": "src/main/php"
  1236. }
  1237. },
  1238. "notification-url": "https://packagist.org/downloads/",
  1239. "license": [
  1240. "BSD-3-Clause"
  1241. ],
  1242. "authors": [
  1243. {
  1244. "name": "Frank Kleine",
  1245. "homepage": "http://frankkleine.de/",
  1246. "role": "Developer"
  1247. }
  1248. ],
  1249. "description": "Virtual file system to mock the real file system in unit tests.",
  1250. "homepage": "http://vfs.bovigo.org/",
  1251. "support": {
  1252. "issues": "https://github.com/bovigo/vfsStream/issues",
  1253. "source": "https://github.com/bovigo/vfsStream/tree/master",
  1254. "wiki": "https://github.com/bovigo/vfsStream/wiki"
  1255. },
  1256. "time": "2021-09-25T08:05:01+00:00"
  1257. },
  1258. {
  1259. "name": "mockery/mockery",
  1260. "version": "1.4.4",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/mockery/mockery.git",
  1264. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  1269. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "hamcrest/hamcrest-php": "^2.0.1",
  1274. "lib-pcre": ">=7.0",
  1275. "php": "^7.3 || ^8.0"
  1276. },
  1277. "conflict": {
  1278. "phpunit/phpunit": "<8.0"
  1279. },
  1280. "require-dev": {
  1281. "phpunit/phpunit": "^8.5 || ^9.3"
  1282. },
  1283. "type": "library",
  1284. "extra": {
  1285. "branch-alias": {
  1286. "dev-master": "1.4.x-dev"
  1287. }
  1288. },
  1289. "autoload": {
  1290. "psr-0": {
  1291. "Mockery": "library/"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "BSD-3-Clause"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Pádraic Brady",
  1301. "email": "padraic.brady@gmail.com",
  1302. "homepage": "http://blog.astrumfutura.com"
  1303. },
  1304. {
  1305. "name": "Dave Marshall",
  1306. "email": "dave.marshall@atstsolutions.co.uk",
  1307. "homepage": "http://davedevelopment.co.uk"
  1308. }
  1309. ],
  1310. "description": "Mockery is a simple yet flexible PHP mock object framework",
  1311. "homepage": "https://github.com/mockery/mockery",
  1312. "keywords": [
  1313. "BDD",
  1314. "TDD",
  1315. "library",
  1316. "mock",
  1317. "mock objects",
  1318. "mockery",
  1319. "stub",
  1320. "test",
  1321. "test double",
  1322. "testing"
  1323. ],
  1324. "support": {
  1325. "issues": "https://github.com/mockery/mockery/issues",
  1326. "source": "https://github.com/mockery/mockery/tree/1.4.4"
  1327. },
  1328. "time": "2021-09-13T15:28:59+00:00"
  1329. },
  1330. {
  1331. "name": "monolog/monolog",
  1332. "version": "2.3.5",
  1333. "source": {
  1334. "type": "git",
  1335. "url": "https://github.com/Seldaek/monolog.git",
  1336. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  1337. },
  1338. "dist": {
  1339. "type": "zip",
  1340. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  1341. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  1342. "shasum": ""
  1343. },
  1344. "require": {
  1345. "php": ">=7.2",
  1346. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1347. },
  1348. "provide": {
  1349. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1350. },
  1351. "require-dev": {
  1352. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1353. "doctrine/couchdb": "~1.0@dev",
  1354. "elasticsearch/elasticsearch": "^7",
  1355. "graylog2/gelf-php": "^1.4.2",
  1356. "mongodb/mongodb": "^1.8",
  1357. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1358. "php-console/php-console": "^3.1.3",
  1359. "phpspec/prophecy": "^1.6.1",
  1360. "phpstan/phpstan": "^0.12.91",
  1361. "phpunit/phpunit": "^8.5",
  1362. "predis/predis": "^1.1",
  1363. "rollbar/rollbar": "^1.3",
  1364. "ruflin/elastica": ">=0.90@dev",
  1365. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1366. },
  1367. "suggest": {
  1368. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1369. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1370. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1371. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1372. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1373. "ext-mbstring": "Allow to work properly with unicode symbols",
  1374. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1375. "ext-openssl": "Required to send log messages using SSL",
  1376. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1377. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1378. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1379. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1380. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1381. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1382. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1383. },
  1384. "type": "library",
  1385. "extra": {
  1386. "branch-alias": {
  1387. "dev-main": "2.x-dev"
  1388. }
  1389. },
  1390. "autoload": {
  1391. "psr-4": {
  1392. "Monolog\\": "src/Monolog"
  1393. }
  1394. },
  1395. "notification-url": "https://packagist.org/downloads/",
  1396. "license": [
  1397. "MIT"
  1398. ],
  1399. "authors": [
  1400. {
  1401. "name": "Jordi Boggiano",
  1402. "email": "j.boggiano@seld.be",
  1403. "homepage": "https://seld.be"
  1404. }
  1405. ],
  1406. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1407. "homepage": "https://github.com/Seldaek/monolog",
  1408. "keywords": [
  1409. "log",
  1410. "logging",
  1411. "psr-3"
  1412. ],
  1413. "support": {
  1414. "issues": "https://github.com/Seldaek/monolog/issues",
  1415. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  1416. },
  1417. "funding": [
  1418. {
  1419. "url": "https://github.com/Seldaek",
  1420. "type": "github"
  1421. },
  1422. {
  1423. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1424. "type": "tidelift"
  1425. }
  1426. ],
  1427. "time": "2021-10-01T21:08:31+00:00"
  1428. },
  1429. {
  1430. "name": "nesbot/carbon",
  1431. "version": "2.55.2",
  1432. "source": {
  1433. "type": "git",
  1434. "url": "https://github.com/briannesbitt/Carbon.git",
  1435. "reference": "8c2a18ce3e67c34efc1b29f64fe61304368259a2"
  1436. },
  1437. "dist": {
  1438. "type": "zip",
  1439. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8c2a18ce3e67c34efc1b29f64fe61304368259a2",
  1440. "reference": "8c2a18ce3e67c34efc1b29f64fe61304368259a2",
  1441. "shasum": ""
  1442. },
  1443. "require": {
  1444. "ext-json": "*",
  1445. "php": "^7.1.8 || ^8.0",
  1446. "symfony/polyfill-mbstring": "^1.0",
  1447. "symfony/polyfill-php80": "^1.16",
  1448. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1449. },
  1450. "require-dev": {
  1451. "doctrine/dbal": "^2.0 || ^3.0",
  1452. "doctrine/orm": "^2.7",
  1453. "friendsofphp/php-cs-fixer": "^3.0",
  1454. "kylekatarnls/multi-tester": "^2.0",
  1455. "phpmd/phpmd": "^2.9",
  1456. "phpstan/extension-installer": "^1.0",
  1457. "phpstan/phpstan": "^0.12.54",
  1458. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1459. "squizlabs/php_codesniffer": "^3.4"
  1460. },
  1461. "bin": [
  1462. "bin/carbon"
  1463. ],
  1464. "type": "library",
  1465. "extra": {
  1466. "branch-alias": {
  1467. "dev-3.x": "3.x-dev",
  1468. "dev-master": "2.x-dev"
  1469. },
  1470. "laravel": {
  1471. "providers": [
  1472. "Carbon\\Laravel\\ServiceProvider"
  1473. ]
  1474. },
  1475. "phpstan": {
  1476. "includes": [
  1477. "extension.neon"
  1478. ]
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Carbon\\": "src/Carbon/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Brian Nesbitt",
  1493. "email": "brian@nesbot.com",
  1494. "homepage": "https://markido.com"
  1495. },
  1496. {
  1497. "name": "kylekatarnls",
  1498. "homepage": "https://github.com/kylekatarnls"
  1499. }
  1500. ],
  1501. "description": "An API extension for DateTime that supports 281 different languages.",
  1502. "homepage": "https://carbon.nesbot.com",
  1503. "keywords": [
  1504. "date",
  1505. "datetime",
  1506. "time"
  1507. ],
  1508. "support": {
  1509. "docs": "https://carbon.nesbot.com/docs",
  1510. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1511. "source": "https://github.com/briannesbitt/Carbon"
  1512. },
  1513. "funding": [
  1514. {
  1515. "url": "https://opencollective.com/Carbon",
  1516. "type": "open_collective"
  1517. },
  1518. {
  1519. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1520. "type": "tidelift"
  1521. }
  1522. ],
  1523. "time": "2021-12-03T14:59:52+00:00"
  1524. },
  1525. {
  1526. "name": "nette/di",
  1527. "version": "v2.4.17",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/nette/di.git",
  1531. "reference": "aa25fa3dfcb0fc40af8da1f2495af75b63b5db1d"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/nette/di/zipball/aa25fa3dfcb0fc40af8da1f2495af75b63b5db1d",
  1536. "reference": "aa25fa3dfcb0fc40af8da1f2495af75b63b5db1d",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "ext-tokenizer": "*",
  1541. "nette/neon": "^2.3.3 || ~3.0.0",
  1542. "nette/php-generator": "^2.6.1 || ^3.0.0",
  1543. "nette/utils": "^2.5.0 || ~3.0.0",
  1544. "php": ">=5.6 <8.1"
  1545. },
  1546. "conflict": {
  1547. "nette/bootstrap": "<2.4",
  1548. "nette/nette": "<2.2"
  1549. },
  1550. "require-dev": {
  1551. "nette/tester": "^2.0",
  1552. "tracy/tracy": "^2.3"
  1553. },
  1554. "type": "library",
  1555. "extra": {
  1556. "branch-alias": {
  1557. "dev-master": "2.4-dev"
  1558. }
  1559. },
  1560. "autoload": {
  1561. "classmap": [
  1562. "src/"
  1563. ]
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "BSD-3-Clause",
  1568. "GPL-2.0",
  1569. "GPL-3.0"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "David Grudl",
  1574. "homepage": "https://davidgrudl.com"
  1575. },
  1576. {
  1577. "name": "Nette Community",
  1578. "homepage": "https://nette.org/contributors"
  1579. }
  1580. ],
  1581. "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP 7.1 features.",
  1582. "homepage": "https://nette.org",
  1583. "keywords": [
  1584. "compiled",
  1585. "di",
  1586. "dic",
  1587. "factory",
  1588. "ioc",
  1589. "nette",
  1590. "static"
  1591. ],
  1592. "support": {
  1593. "issues": "https://github.com/nette/di/issues",
  1594. "source": "https://github.com/nette/di/tree/v2.4.17"
  1595. },
  1596. "time": "2020-11-06T00:28:18+00:00"
  1597. },
  1598. {
  1599. "name": "nette/neon",
  1600. "version": "v3.0.1",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/nette/neon.git",
  1604. "reference": "5674a266495125d43d9fb58d6663b98bd827fa81"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/nette/neon/zipball/5674a266495125d43d9fb58d6663b98bd827fa81",
  1609. "reference": "5674a266495125d43d9fb58d6663b98bd827fa81",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "ext-iconv": "*",
  1614. "ext-json": "*",
  1615. "php": ">=7.0"
  1616. },
  1617. "require-dev": {
  1618. "nette/tester": "^2.0",
  1619. "tracy/tracy": "^2.3"
  1620. },
  1621. "type": "library",
  1622. "extra": {
  1623. "branch-alias": {
  1624. "dev-master": "3.0-dev"
  1625. }
  1626. },
  1627. "autoload": {
  1628. "classmap": [
  1629. "src/"
  1630. ]
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "BSD-3-Clause",
  1635. "GPL-2.0",
  1636. "GPL-3.0"
  1637. ],
  1638. "authors": [
  1639. {
  1640. "name": "David Grudl",
  1641. "homepage": "https://davidgrudl.com"
  1642. },
  1643. {
  1644. "name": "Nette Community",
  1645. "homepage": "https://nette.org/contributors"
  1646. }
  1647. ],
  1648. "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
  1649. "homepage": "https://ne-on.org",
  1650. "keywords": [
  1651. "export",
  1652. "import",
  1653. "neon",
  1654. "nette",
  1655. "yaml"
  1656. ],
  1657. "support": {
  1658. "issues": "https://github.com/nette/neon/issues",
  1659. "source": "https://github.com/nette/neon/tree/v3.0.1"
  1660. },
  1661. "time": "2020-03-04T11:45:23+00:00"
  1662. },
  1663. {
  1664. "name": "nette/php-generator",
  1665. "version": "v3.4.1",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/nette/php-generator.git",
  1669. "reference": "7051954c534cebafd650efe8b145ac75b223cb66"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/nette/php-generator/zipball/7051954c534cebafd650efe8b145ac75b223cb66",
  1674. "reference": "7051954c534cebafd650efe8b145ac75b223cb66",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "nette/utils": "^2.4.2 || ^3.0",
  1679. "php": ">=7.1"
  1680. },
  1681. "require-dev": {
  1682. "nette/tester": "^2.0",
  1683. "nikic/php-parser": "^4.4",
  1684. "phpstan/phpstan": "^0.12",
  1685. "tracy/tracy": "^2.3"
  1686. },
  1687. "suggest": {
  1688. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  1689. },
  1690. "type": "library",
  1691. "extra": {
  1692. "branch-alias": {
  1693. "dev-master": "3.4-dev"
  1694. }
  1695. },
  1696. "autoload": {
  1697. "classmap": [
  1698. "src/"
  1699. ]
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "BSD-3-Clause",
  1704. "GPL-2.0-only",
  1705. "GPL-3.0-only"
  1706. ],
  1707. "authors": [
  1708. {
  1709. "name": "David Grudl",
  1710. "homepage": "https://davidgrudl.com"
  1711. },
  1712. {
  1713. "name": "Nette Community",
  1714. "homepage": "https://nette.org/contributors"
  1715. }
  1716. ],
  1717. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
  1718. "homepage": "https://nette.org",
  1719. "keywords": [
  1720. "code",
  1721. "nette",
  1722. "php",
  1723. "scaffolding"
  1724. ],
  1725. "support": {
  1726. "issues": "https://github.com/nette/php-generator/issues",
  1727. "source": "https://github.com/nette/php-generator/tree/master"
  1728. },
  1729. "time": "2020-06-19T14:31:47+00:00"
  1730. },
  1731. {
  1732. "name": "nette/utils",
  1733. "version": "v3.0.4",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://github.com/nette/utils.git",
  1737. "reference": "4fa14b593a26aaaf1e2c4842aaff731ecca1fc4a"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://api.github.com/repos/nette/utils/zipball/4fa14b593a26aaaf1e2c4842aaff731ecca1fc4a",
  1742. "reference": "4fa14b593a26aaaf1e2c4842aaff731ecca1fc4a",
  1743. "shasum": ""
  1744. },
  1745. "require": {
  1746. "php": ">=7.1"
  1747. },
  1748. "require-dev": {
  1749. "nette/tester": "~2.0",
  1750. "phpstan/phpstan": "^0.12",
  1751. "tracy/tracy": "^2.3"
  1752. },
  1753. "suggest": {
  1754. "ext-gd": "to use Image",
  1755. "ext-iconv": "to use Strings::webalize() and toAscii()",
  1756. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1757. "ext-json": "to use Nette\\Utils\\Json",
  1758. "ext-mbstring": "to use Strings::lower() etc...",
  1759. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  1760. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  1761. },
  1762. "type": "library",
  1763. "extra": {
  1764. "branch-alias": {
  1765. "dev-master": "3.0-dev"
  1766. }
  1767. },
  1768. "autoload": {
  1769. "classmap": [
  1770. "src/"
  1771. ]
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "BSD-3-Clause",
  1776. "GPL-2.0",
  1777. "GPL-3.0"
  1778. ],
  1779. "authors": [
  1780. {
  1781. "name": "David Grudl",
  1782. "homepage": "https://davidgrudl.com"
  1783. },
  1784. {
  1785. "name": "Nette Community",
  1786. "homepage": "https://nette.org/contributors"
  1787. }
  1788. ],
  1789. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1790. "homepage": "https://nette.org",
  1791. "keywords": [
  1792. "array",
  1793. "core",
  1794. "datetime",
  1795. "images",
  1796. "json",
  1797. "nette",
  1798. "paginator",
  1799. "password",
  1800. "slugify",
  1801. "string",
  1802. "unicode",
  1803. "utf-8",
  1804. "utility",
  1805. "validation"
  1806. ],
  1807. "support": {
  1808. "issues": "https://github.com/nette/utils/issues",
  1809. "source": "https://github.com/nette/utils/tree/v3.0.4"
  1810. },
  1811. "time": "2020-11-05T23:46:36+00:00"
  1812. },
  1813. {
  1814. "name": "opis/closure",
  1815. "version": "3.6.2",
  1816. "source": {
  1817. "type": "git",
  1818. "url": "https://github.com/opis/closure.git",
  1819. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  1820. },
  1821. "dist": {
  1822. "type": "zip",
  1823. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  1824. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  1825. "shasum": ""
  1826. },
  1827. "require": {
  1828. "php": "^5.4 || ^7.0 || ^8.0"
  1829. },
  1830. "require-dev": {
  1831. "jeremeamia/superclosure": "^2.0",
  1832. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1833. },
  1834. "type": "library",
  1835. "extra": {
  1836. "branch-alias": {
  1837. "dev-master": "3.6.x-dev"
  1838. }
  1839. },
  1840. "autoload": {
  1841. "psr-4": {
  1842. "Opis\\Closure\\": "src/"
  1843. },
  1844. "files": [
  1845. "functions.php"
  1846. ]
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "Marius Sarca",
  1855. "email": "marius.sarca@gmail.com"
  1856. },
  1857. {
  1858. "name": "Sorin Sarca",
  1859. "email": "sarca_sorin@hotmail.com"
  1860. }
  1861. ],
  1862. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1863. "homepage": "https://opis.io/closure",
  1864. "keywords": [
  1865. "anonymous functions",
  1866. "closure",
  1867. "function",
  1868. "serializable",
  1869. "serialization",
  1870. "serialize"
  1871. ],
  1872. "support": {
  1873. "issues": "https://github.com/opis/closure/issues",
  1874. "source": "https://github.com/opis/closure/tree/3.6.2"
  1875. },
  1876. "time": "2021-04-09T13:42:10+00:00"
  1877. },
  1878. {
  1879. "name": "phpoption/phpoption",
  1880. "version": "1.8.1",
  1881. "source": {
  1882. "type": "git",
  1883. "url": "https://github.com/schmittjoh/php-option.git",
  1884. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  1885. },
  1886. "dist": {
  1887. "type": "zip",
  1888. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  1889. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  1890. "shasum": ""
  1891. },
  1892. "require": {
  1893. "php": "^7.0 || ^8.0"
  1894. },
  1895. "require-dev": {
  1896. "bamarni/composer-bin-plugin": "^1.4.1",
  1897. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  1898. },
  1899. "type": "library",
  1900. "extra": {
  1901. "branch-alias": {
  1902. "dev-master": "1.8-dev"
  1903. }
  1904. },
  1905. "autoload": {
  1906. "psr-4": {
  1907. "PhpOption\\": "src/PhpOption/"
  1908. }
  1909. },
  1910. "notification-url": "https://packagist.org/downloads/",
  1911. "license": [
  1912. "Apache-2.0"
  1913. ],
  1914. "authors": [
  1915. {
  1916. "name": "Johannes M. Schmitt",
  1917. "email": "schmittjoh@gmail.com",
  1918. "homepage": "https://github.com/schmittjoh"
  1919. },
  1920. {
  1921. "name": "Graham Campbell",
  1922. "email": "hello@gjcampbell.co.uk",
  1923. "homepage": "https://github.com/GrahamCampbell"
  1924. }
  1925. ],
  1926. "description": "Option Type for PHP",
  1927. "keywords": [
  1928. "language",
  1929. "option",
  1930. "php",
  1931. "type"
  1932. ],
  1933. "support": {
  1934. "issues": "https://github.com/schmittjoh/php-option/issues",
  1935. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  1936. },
  1937. "funding": [
  1938. {
  1939. "url": "https://github.com/GrahamCampbell",
  1940. "type": "github"
  1941. },
  1942. {
  1943. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1944. "type": "tidelift"
  1945. }
  1946. ],
  1947. "time": "2021-12-04T23:24:31+00:00"
  1948. },
  1949. {
  1950. "name": "pimple/pimple",
  1951. "version": "v1.1.1",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://github.com/silexphp/Pimple.git",
  1955. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  1960. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  1961. "shasum": ""
  1962. },
  1963. "require": {
  1964. "php": ">=5.3.0"
  1965. },
  1966. "type": "library",
  1967. "extra": {
  1968. "branch-alias": {
  1969. "dev-master": "1.1.x-dev"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-0": {
  1974. "Pimple": "lib/"
  1975. }
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "MIT"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Fabien Potencier",
  1984. "email": "fabien@symfony.com"
  1985. }
  1986. ],
  1987. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  1988. "homepage": "http://pimple.sensiolabs.org",
  1989. "keywords": [
  1990. "container",
  1991. "dependency injection"
  1992. ],
  1993. "support": {
  1994. "issues": "https://github.com/silexphp/Pimple/issues",
  1995. "source": "https://github.com/silexphp/Pimple/tree/v1.1.1"
  1996. },
  1997. "time": "2013-11-22T08:30:29+00:00"
  1998. },
  1999. {
  2000. "name": "plumphp/plum",
  2001. "version": "v0.5",
  2002. "source": {
  2003. "type": "git",
  2004. "url": "https://github.com/plumphp/plum.git",
  2005. "reference": "17ada5501b991681ad700dab2ce895d180350a18"
  2006. },
  2007. "dist": {
  2008. "type": "zip",
  2009. "url": "https://api.github.com/repos/plumphp/plum/zipball/17ada5501b991681ad700dab2ce895d180350a18",
  2010. "reference": "17ada5501b991681ad700dab2ce895d180350a18",
  2011. "shasum": ""
  2012. },
  2013. "require": {
  2014. "cocur/vale": "~0.2",
  2015. "php": ">=5.5",
  2016. "psr/log": "~1.0"
  2017. },
  2018. "require-dev": {
  2019. "mikey179/vfsstream": "~1.4",
  2020. "mockery/mockery": "~0.9",
  2021. "phpunit/phpunit": "~4.8"
  2022. },
  2023. "type": "library",
  2024. "autoload": {
  2025. "psr-4": {
  2026. "Plum\\Plum\\": "src"
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Florian Eckerstorfer",
  2036. "email": "florian@eckerstorfer.co",
  2037. "homepage": "https://florian.ec"
  2038. }
  2039. ],
  2040. "description": "Plum is a data processing pipeline that helps you to write structured, reusable and well tested data processing code.",
  2041. "homepage": "https://github.com/plumphp/plum",
  2042. "support": {
  2043. "docs": "https://github.com/plumphp/plum/blob/master/docs/index.md",
  2044. "issues": "https://github.com/plumphp/plum/issues",
  2045. "source": "https://github.com/plumphp/plum"
  2046. },
  2047. "time": "2016-02-17T19:06:08+00:00"
  2048. },
  2049. {
  2050. "name": "psr/container",
  2051. "version": "1.1.1",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/php-fig/container.git",
  2055. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2060. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2061. "shasum": ""
  2062. },
  2063. "require": {
  2064. "php": ">=7.2.0"
  2065. },
  2066. "type": "library",
  2067. "autoload": {
  2068. "psr-4": {
  2069. "Psr\\Container\\": "src/"
  2070. }
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "PHP-FIG",
  2079. "homepage": "https://www.php-fig.org/"
  2080. }
  2081. ],
  2082. "description": "Common Container Interface (PHP FIG PSR-11)",
  2083. "homepage": "https://github.com/php-fig/container",
  2084. "keywords": [
  2085. "PSR-11",
  2086. "container",
  2087. "container-interface",
  2088. "container-interop",
  2089. "psr"
  2090. ],
  2091. "support": {
  2092. "issues": "https://github.com/php-fig/container/issues",
  2093. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2094. },
  2095. "time": "2021-03-05T17:36:06+00:00"
  2096. },
  2097. {
  2098. "name": "psr/event-dispatcher",
  2099. "version": "1.0.0",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/php-fig/event-dispatcher.git",
  2103. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2108. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "php": ">=7.2.0"
  2113. },
  2114. "type": "library",
  2115. "extra": {
  2116. "branch-alias": {
  2117. "dev-master": "1.0.x-dev"
  2118. }
  2119. },
  2120. "autoload": {
  2121. "psr-4": {
  2122. "Psr\\EventDispatcher\\": "src/"
  2123. }
  2124. },
  2125. "notification-url": "https://packagist.org/downloads/",
  2126. "license": [
  2127. "MIT"
  2128. ],
  2129. "authors": [
  2130. {
  2131. "name": "PHP-FIG",
  2132. "homepage": "http://www.php-fig.org/"
  2133. }
  2134. ],
  2135. "description": "Standard interfaces for event handling.",
  2136. "keywords": [
  2137. "events",
  2138. "psr",
  2139. "psr-14"
  2140. ],
  2141. "support": {
  2142. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2143. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2144. },
  2145. "time": "2019-01-08T18:20:26+00:00"
  2146. },
  2147. {
  2148. "name": "psr/log",
  2149. "version": "1.1.4",
  2150. "source": {
  2151. "type": "git",
  2152. "url": "https://github.com/php-fig/log.git",
  2153. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2154. },
  2155. "dist": {
  2156. "type": "zip",
  2157. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2158. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2159. "shasum": ""
  2160. },
  2161. "require": {
  2162. "php": ">=5.3.0"
  2163. },
  2164. "type": "library",
  2165. "extra": {
  2166. "branch-alias": {
  2167. "dev-master": "1.1.x-dev"
  2168. }
  2169. },
  2170. "autoload": {
  2171. "psr-4": {
  2172. "Psr\\Log\\": "Psr/Log/"
  2173. }
  2174. },
  2175. "notification-url": "https://packagist.org/downloads/",
  2176. "license": [
  2177. "MIT"
  2178. ],
  2179. "authors": [
  2180. {
  2181. "name": "PHP-FIG",
  2182. "homepage": "https://www.php-fig.org/"
  2183. }
  2184. ],
  2185. "description": "Common interface for logging libraries",
  2186. "homepage": "https://github.com/php-fig/log",
  2187. "keywords": [
  2188. "log",
  2189. "psr",
  2190. "psr-3"
  2191. ],
  2192. "support": {
  2193. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2194. },
  2195. "time": "2021-05-03T11:20:27+00:00"
  2196. },
  2197. {
  2198. "name": "psr/simple-cache",
  2199. "version": "1.0.1",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/php-fig/simple-cache.git",
  2203. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2208. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": ">=5.3.0"
  2213. },
  2214. "type": "library",
  2215. "extra": {
  2216. "branch-alias": {
  2217. "dev-master": "1.0.x-dev"
  2218. }
  2219. },
  2220. "autoload": {
  2221. "psr-4": {
  2222. "Psr\\SimpleCache\\": "src/"
  2223. }
  2224. },
  2225. "notification-url": "https://packagist.org/downloads/",
  2226. "license": [
  2227. "MIT"
  2228. ],
  2229. "authors": [
  2230. {
  2231. "name": "PHP-FIG",
  2232. "homepage": "http://www.php-fig.org/"
  2233. }
  2234. ],
  2235. "description": "Common interfaces for simple caching",
  2236. "keywords": [
  2237. "cache",
  2238. "caching",
  2239. "psr",
  2240. "psr-16",
  2241. "simple-cache"
  2242. ],
  2243. "support": {
  2244. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2245. },
  2246. "time": "2017-10-23T01:57:42+00:00"
  2247. },
  2248. {
  2249. "name": "ramsey/collection",
  2250. "version": "1.2.2",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/ramsey/collection.git",
  2254. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2259. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "php": "^7.3 || ^8",
  2264. "symfony/polyfill-php81": "^1.23"
  2265. },
  2266. "require-dev": {
  2267. "captainhook/captainhook": "^5.3",
  2268. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2269. "ergebnis/composer-normalize": "^2.6",
  2270. "fakerphp/faker": "^1.5",
  2271. "hamcrest/hamcrest-php": "^2",
  2272. "jangregor/phpstan-prophecy": "^0.8",
  2273. "mockery/mockery": "^1.3",
  2274. "phpspec/prophecy-phpunit": "^2.0",
  2275. "phpstan/extension-installer": "^1",
  2276. "phpstan/phpstan": "^0.12.32",
  2277. "phpstan/phpstan-mockery": "^0.12.5",
  2278. "phpstan/phpstan-phpunit": "^0.12.11",
  2279. "phpunit/phpunit": "^8.5 || ^9",
  2280. "psy/psysh": "^0.10.4",
  2281. "slevomat/coding-standard": "^6.3",
  2282. "squizlabs/php_codesniffer": "^3.5",
  2283. "vimeo/psalm": "^4.4"
  2284. },
  2285. "type": "library",
  2286. "autoload": {
  2287. "psr-4": {
  2288. "Ramsey\\Collection\\": "src/"
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Ben Ramsey",
  2298. "email": "ben@benramsey.com",
  2299. "homepage": "https://benramsey.com"
  2300. }
  2301. ],
  2302. "description": "A PHP library for representing and manipulating collections.",
  2303. "keywords": [
  2304. "array",
  2305. "collection",
  2306. "hash",
  2307. "map",
  2308. "queue",
  2309. "set"
  2310. ],
  2311. "support": {
  2312. "issues": "https://github.com/ramsey/collection/issues",
  2313. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  2314. },
  2315. "funding": [
  2316. {
  2317. "url": "https://github.com/ramsey",
  2318. "type": "github"
  2319. },
  2320. {
  2321. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2322. "type": "tidelift"
  2323. }
  2324. ],
  2325. "time": "2021-10-10T03:01:02+00:00"
  2326. },
  2327. {
  2328. "name": "ramsey/uuid",
  2329. "version": "4.2.3",
  2330. "source": {
  2331. "type": "git",
  2332. "url": "https://github.com/ramsey/uuid.git",
  2333. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2334. },
  2335. "dist": {
  2336. "type": "zip",
  2337. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2338. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2339. "shasum": ""
  2340. },
  2341. "require": {
  2342. "brick/math": "^0.8 || ^0.9",
  2343. "ext-json": "*",
  2344. "php": "^7.2 || ^8.0",
  2345. "ramsey/collection": "^1.0",
  2346. "symfony/polyfill-ctype": "^1.8",
  2347. "symfony/polyfill-php80": "^1.14"
  2348. },
  2349. "replace": {
  2350. "rhumsaa/uuid": "self.version"
  2351. },
  2352. "require-dev": {
  2353. "captainhook/captainhook": "^5.10",
  2354. "captainhook/plugin-composer": "^5.3",
  2355. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2356. "doctrine/annotations": "^1.8",
  2357. "ergebnis/composer-normalize": "^2.15",
  2358. "mockery/mockery": "^1.3",
  2359. "moontoast/math": "^1.1",
  2360. "paragonie/random-lib": "^2",
  2361. "php-mock/php-mock": "^2.2",
  2362. "php-mock/php-mock-mockery": "^1.3",
  2363. "php-parallel-lint/php-parallel-lint": "^1.1",
  2364. "phpbench/phpbench": "^1.0",
  2365. "phpstan/extension-installer": "^1.0",
  2366. "phpstan/phpstan": "^0.12",
  2367. "phpstan/phpstan-mockery": "^0.12",
  2368. "phpstan/phpstan-phpunit": "^0.12",
  2369. "phpunit/phpunit": "^8.5 || ^9",
  2370. "slevomat/coding-standard": "^7.0",
  2371. "squizlabs/php_codesniffer": "^3.5",
  2372. "vimeo/psalm": "^4.9"
  2373. },
  2374. "suggest": {
  2375. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2376. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2377. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2378. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2379. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2380. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2381. },
  2382. "type": "library",
  2383. "extra": {
  2384. "branch-alias": {
  2385. "dev-main": "4.x-dev"
  2386. },
  2387. "captainhook": {
  2388. "force-install": true
  2389. }
  2390. },
  2391. "autoload": {
  2392. "psr-4": {
  2393. "Ramsey\\Uuid\\": "src/"
  2394. },
  2395. "files": [
  2396. "src/functions.php"
  2397. ]
  2398. },
  2399. "notification-url": "https://packagist.org/downloads/",
  2400. "license": [
  2401. "MIT"
  2402. ],
  2403. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2404. "keywords": [
  2405. "guid",
  2406. "identifier",
  2407. "uuid"
  2408. ],
  2409. "support": {
  2410. "issues": "https://github.com/ramsey/uuid/issues",
  2411. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  2412. },
  2413. "funding": [
  2414. {
  2415. "url": "https://github.com/ramsey",
  2416. "type": "github"
  2417. },
  2418. {
  2419. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2420. "type": "tidelift"
  2421. }
  2422. ],
  2423. "time": "2021-09-25T23:10:38+00:00"
  2424. },
  2425. {
  2426. "name": "swiftmailer/swiftmailer",
  2427. "version": "v6.3.0",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2431. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2436. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2437. "shasum": ""
  2438. },
  2439. "require": {
  2440. "egulias/email-validator": "^2.0|^3.1",
  2441. "php": ">=7.0.0",
  2442. "symfony/polyfill-iconv": "^1.0",
  2443. "symfony/polyfill-intl-idn": "^1.10",
  2444. "symfony/polyfill-mbstring": "^1.0"
  2445. },
  2446. "require-dev": {
  2447. "mockery/mockery": "^1.0",
  2448. "symfony/phpunit-bridge": "^4.4|^5.4"
  2449. },
  2450. "suggest": {
  2451. "ext-intl": "Needed to support internationalized email addresses"
  2452. },
  2453. "type": "library",
  2454. "extra": {
  2455. "branch-alias": {
  2456. "dev-master": "6.2-dev"
  2457. }
  2458. },
  2459. "autoload": {
  2460. "files": [
  2461. "lib/swift_required.php"
  2462. ]
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Chris Corbyn"
  2471. },
  2472. {
  2473. "name": "Fabien Potencier",
  2474. "email": "fabien@symfony.com"
  2475. }
  2476. ],
  2477. "description": "Swiftmailer, free feature-rich PHP mailer",
  2478. "homepage": "https://swiftmailer.symfony.com",
  2479. "keywords": [
  2480. "email",
  2481. "mail",
  2482. "mailer"
  2483. ],
  2484. "support": {
  2485. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2486. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2487. },
  2488. "funding": [
  2489. {
  2490. "url": "https://github.com/fabpot",
  2491. "type": "github"
  2492. },
  2493. {
  2494. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2495. "type": "tidelift"
  2496. }
  2497. ],
  2498. "abandoned": "symfony/mailer",
  2499. "time": "2021-10-18T15:26:12+00:00"
  2500. },
  2501. {
  2502. "name": "symfony/config",
  2503. "version": "v5.4.0",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/symfony/config.git",
  2507. "reference": "e39cf688c80fd79ab0a6a2d05a9facac9b2d534b"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/symfony/config/zipball/e39cf688c80fd79ab0a6a2d05a9facac9b2d534b",
  2512. "reference": "e39cf688c80fd79ab0a6a2d05a9facac9b2d534b",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "php": ">=7.2.5",
  2517. "symfony/deprecation-contracts": "^2.1|^3",
  2518. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2519. "symfony/polyfill-ctype": "~1.8",
  2520. "symfony/polyfill-php80": "^1.16",
  2521. "symfony/polyfill-php81": "^1.22"
  2522. },
  2523. "conflict": {
  2524. "symfony/finder": "<4.4"
  2525. },
  2526. "require-dev": {
  2527. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2528. "symfony/finder": "^4.4|^5.0|^6.0",
  2529. "symfony/messenger": "^4.4|^5.0|^6.0",
  2530. "symfony/service-contracts": "^1.1|^2|^3",
  2531. "symfony/yaml": "^4.4|^5.0|^6.0"
  2532. },
  2533. "suggest": {
  2534. "symfony/yaml": "To use the yaml reference dumper"
  2535. },
  2536. "type": "library",
  2537. "autoload": {
  2538. "psr-4": {
  2539. "Symfony\\Component\\Config\\": ""
  2540. },
  2541. "exclude-from-classmap": [
  2542. "/Tests/"
  2543. ]
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Fabien Potencier",
  2552. "email": "fabien@symfony.com"
  2553. },
  2554. {
  2555. "name": "Symfony Community",
  2556. "homepage": "https://symfony.com/contributors"
  2557. }
  2558. ],
  2559. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2560. "homepage": "https://symfony.com",
  2561. "support": {
  2562. "source": "https://github.com/symfony/config/tree/v5.4.0"
  2563. },
  2564. "funding": [
  2565. {
  2566. "url": "https://symfony.com/sponsor",
  2567. "type": "custom"
  2568. },
  2569. {
  2570. "url": "https://github.com/fabpot",
  2571. "type": "github"
  2572. },
  2573. {
  2574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2575. "type": "tidelift"
  2576. }
  2577. ],
  2578. "time": "2021-11-28T15:25:38+00:00"
  2579. },
  2580. {
  2581. "name": "symfony/console",
  2582. "version": "v5.4.1",
  2583. "source": {
  2584. "type": "git",
  2585. "url": "https://github.com/symfony/console.git",
  2586. "reference": "9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4"
  2587. },
  2588. "dist": {
  2589. "type": "zip",
  2590. "url": "https://api.github.com/repos/symfony/console/zipball/9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4",
  2591. "reference": "9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4",
  2592. "shasum": ""
  2593. },
  2594. "require": {
  2595. "php": ">=7.2.5",
  2596. "symfony/deprecation-contracts": "^2.1|^3",
  2597. "symfony/polyfill-mbstring": "~1.0",
  2598. "symfony/polyfill-php73": "^1.9",
  2599. "symfony/polyfill-php80": "^1.16",
  2600. "symfony/service-contracts": "^1.1|^2|^3",
  2601. "symfony/string": "^5.1|^6.0"
  2602. },
  2603. "conflict": {
  2604. "psr/log": ">=3",
  2605. "symfony/dependency-injection": "<4.4",
  2606. "symfony/dotenv": "<5.1",
  2607. "symfony/event-dispatcher": "<4.4",
  2608. "symfony/lock": "<4.4",
  2609. "symfony/process": "<4.4"
  2610. },
  2611. "provide": {
  2612. "psr/log-implementation": "1.0|2.0"
  2613. },
  2614. "require-dev": {
  2615. "psr/log": "^1|^2",
  2616. "symfony/config": "^4.4|^5.0|^6.0",
  2617. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2618. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2619. "symfony/lock": "^4.4|^5.0|^6.0",
  2620. "symfony/process": "^4.4|^5.0|^6.0",
  2621. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2622. },
  2623. "suggest": {
  2624. "psr/log": "For using the console logger",
  2625. "symfony/event-dispatcher": "",
  2626. "symfony/lock": "",
  2627. "symfony/process": ""
  2628. },
  2629. "type": "library",
  2630. "autoload": {
  2631. "psr-4": {
  2632. "Symfony\\Component\\Console\\": ""
  2633. },
  2634. "exclude-from-classmap": [
  2635. "/Tests/"
  2636. ]
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "MIT"
  2641. ],
  2642. "authors": [
  2643. {
  2644. "name": "Fabien Potencier",
  2645. "email": "fabien@symfony.com"
  2646. },
  2647. {
  2648. "name": "Symfony Community",
  2649. "homepage": "https://symfony.com/contributors"
  2650. }
  2651. ],
  2652. "description": "Eases the creation of beautiful and testable command line interfaces",
  2653. "homepage": "https://symfony.com",
  2654. "keywords": [
  2655. "cli",
  2656. "command line",
  2657. "console",
  2658. "terminal"
  2659. ],
  2660. "support": {
  2661. "source": "https://github.com/symfony/console/tree/v5.4.1"
  2662. },
  2663. "funding": [
  2664. {
  2665. "url": "https://symfony.com/sponsor",
  2666. "type": "custom"
  2667. },
  2668. {
  2669. "url": "https://github.com/fabpot",
  2670. "type": "github"
  2671. },
  2672. {
  2673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2674. "type": "tidelift"
  2675. }
  2676. ],
  2677. "time": "2021-12-09T11:22:43+00:00"
  2678. },
  2679. {
  2680. "name": "symfony/css-selector",
  2681. "version": "v5.4.0",
  2682. "source": {
  2683. "type": "git",
  2684. "url": "https://github.com/symfony/css-selector.git",
  2685. "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc"
  2686. },
  2687. "dist": {
  2688. "type": "zip",
  2689. "url": "https://api.github.com/repos/symfony/css-selector/zipball/44b933f98bb4b5220d10bed9ce5662f8c2d13dcc",
  2690. "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc",
  2691. "shasum": ""
  2692. },
  2693. "require": {
  2694. "php": ">=7.2.5",
  2695. "symfony/polyfill-php80": "^1.16"
  2696. },
  2697. "type": "library",
  2698. "autoload": {
  2699. "psr-4": {
  2700. "Symfony\\Component\\CssSelector\\": ""
  2701. },
  2702. "exclude-from-classmap": [
  2703. "/Tests/"
  2704. ]
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "Fabien Potencier",
  2713. "email": "fabien@symfony.com"
  2714. },
  2715. {
  2716. "name": "Jean-François Simon",
  2717. "email": "jeanfrancois.simon@sensiolabs.com"
  2718. },
  2719. {
  2720. "name": "Symfony Community",
  2721. "homepage": "https://symfony.com/contributors"
  2722. }
  2723. ],
  2724. "description": "Converts CSS selectors to XPath expressions",
  2725. "homepage": "https://symfony.com",
  2726. "support": {
  2727. "source": "https://github.com/symfony/css-selector/tree/v5.4.0"
  2728. },
  2729. "funding": [
  2730. {
  2731. "url": "https://symfony.com/sponsor",
  2732. "type": "custom"
  2733. },
  2734. {
  2735. "url": "https://github.com/fabpot",
  2736. "type": "github"
  2737. },
  2738. {
  2739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2740. "type": "tidelift"
  2741. }
  2742. ],
  2743. "time": "2021-09-09T08:06:01+00:00"
  2744. },
  2745. {
  2746. "name": "symfony/dependency-injection",
  2747. "version": "v5.4.1",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/symfony/dependency-injection.git",
  2751. "reference": "9bd1ef389a2fe05fea7306b6155403e8a960d73d"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9bd1ef389a2fe05fea7306b6155403e8a960d73d",
  2756. "reference": "9bd1ef389a2fe05fea7306b6155403e8a960d73d",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "php": ">=7.2.5",
  2761. "psr/container": "^1.1.1",
  2762. "symfony/deprecation-contracts": "^2.1|^3",
  2763. "symfony/polyfill-php80": "^1.16",
  2764. "symfony/polyfill-php81": "^1.22",
  2765. "symfony/service-contracts": "^1.1.6|^2"
  2766. },
  2767. "conflict": {
  2768. "ext-psr": "<1.1|>=2",
  2769. "symfony/config": "<5.3",
  2770. "symfony/finder": "<4.4",
  2771. "symfony/proxy-manager-bridge": "<4.4",
  2772. "symfony/yaml": "<4.4"
  2773. },
  2774. "provide": {
  2775. "psr/container-implementation": "1.0",
  2776. "symfony/service-implementation": "1.0|2.0"
  2777. },
  2778. "require-dev": {
  2779. "symfony/config": "^5.3|^6.0",
  2780. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2781. "symfony/yaml": "^4.4|^5.0|^6.0"
  2782. },
  2783. "suggest": {
  2784. "symfony/config": "",
  2785. "symfony/expression-language": "For using expressions in service container configuration",
  2786. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2787. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2788. "symfony/yaml": ""
  2789. },
  2790. "type": "library",
  2791. "autoload": {
  2792. "psr-4": {
  2793. "Symfony\\Component\\DependencyInjection\\": ""
  2794. },
  2795. "exclude-from-classmap": [
  2796. "/Tests/"
  2797. ]
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "MIT"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Fabien Potencier",
  2806. "email": "fabien@symfony.com"
  2807. },
  2808. {
  2809. "name": "Symfony Community",
  2810. "homepage": "https://symfony.com/contributors"
  2811. }
  2812. ],
  2813. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2814. "homepage": "https://symfony.com",
  2815. "support": {
  2816. "source": "https://github.com/symfony/dependency-injection/tree/v5.4.1"
  2817. },
  2818. "funding": [
  2819. {
  2820. "url": "https://symfony.com/sponsor",
  2821. "type": "custom"
  2822. },
  2823. {
  2824. "url": "https://github.com/fabpot",
  2825. "type": "github"
  2826. },
  2827. {
  2828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2829. "type": "tidelift"
  2830. }
  2831. ],
  2832. "time": "2021-12-01T16:25:34+00:00"
  2833. },
  2834. {
  2835. "name": "symfony/deprecation-contracts",
  2836. "version": "v2.5.0",
  2837. "source": {
  2838. "type": "git",
  2839. "url": "https://github.com/symfony/deprecation-contracts.git",
  2840. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  2841. },
  2842. "dist": {
  2843. "type": "zip",
  2844. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  2845. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  2846. "shasum": ""
  2847. },
  2848. "require": {
  2849. "php": ">=7.1"
  2850. },
  2851. "type": "library",
  2852. "extra": {
  2853. "branch-alias": {
  2854. "dev-main": "2.5-dev"
  2855. },
  2856. "thanks": {
  2857. "name": "symfony/contracts",
  2858. "url": "https://github.com/symfony/contracts"
  2859. }
  2860. },
  2861. "autoload": {
  2862. "files": [
  2863. "function.php"
  2864. ]
  2865. },
  2866. "notification-url": "https://packagist.org/downloads/",
  2867. "license": [
  2868. "MIT"
  2869. ],
  2870. "authors": [
  2871. {
  2872. "name": "Nicolas Grekas",
  2873. "email": "p@tchwork.com"
  2874. },
  2875. {
  2876. "name": "Symfony Community",
  2877. "homepage": "https://symfony.com/contributors"
  2878. }
  2879. ],
  2880. "description": "A generic function and convention to trigger deprecation notices",
  2881. "homepage": "https://symfony.com",
  2882. "support": {
  2883. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  2884. },
  2885. "funding": [
  2886. {
  2887. "url": "https://symfony.com/sponsor",
  2888. "type": "custom"
  2889. },
  2890. {
  2891. "url": "https://github.com/fabpot",
  2892. "type": "github"
  2893. },
  2894. {
  2895. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2896. "type": "tidelift"
  2897. }
  2898. ],
  2899. "time": "2021-07-12T14:48:14+00:00"
  2900. },
  2901. {
  2902. "name": "symfony/error-handler",
  2903. "version": "v5.4.1",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/symfony/error-handler.git",
  2907. "reference": "1e3cb3565af49cd5f93e5787500134500a29f0d9"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1e3cb3565af49cd5f93e5787500134500a29f0d9",
  2912. "reference": "1e3cb3565af49cd5f93e5787500134500a29f0d9",
  2913. "shasum": ""
  2914. },
  2915. "require": {
  2916. "php": ">=7.2.5",
  2917. "psr/log": "^1|^2|^3",
  2918. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2919. },
  2920. "require-dev": {
  2921. "symfony/deprecation-contracts": "^2.1|^3",
  2922. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2923. "symfony/serializer": "^4.4|^5.0|^6.0"
  2924. },
  2925. "bin": [
  2926. "Resources/bin/patch-type-declarations"
  2927. ],
  2928. "type": "library",
  2929. "autoload": {
  2930. "psr-4": {
  2931. "Symfony\\Component\\ErrorHandler\\": ""
  2932. },
  2933. "exclude-from-classmap": [
  2934. "/Tests/"
  2935. ]
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "Fabien Potencier",
  2944. "email": "fabien@symfony.com"
  2945. },
  2946. {
  2947. "name": "Symfony Community",
  2948. "homepage": "https://symfony.com/contributors"
  2949. }
  2950. ],
  2951. "description": "Provides tools to manage errors and ease debugging PHP code",
  2952. "homepage": "https://symfony.com",
  2953. "support": {
  2954. "source": "https://github.com/symfony/error-handler/tree/v5.4.1"
  2955. },
  2956. "funding": [
  2957. {
  2958. "url": "https://symfony.com/sponsor",
  2959. "type": "custom"
  2960. },
  2961. {
  2962. "url": "https://github.com/fabpot",
  2963. "type": "github"
  2964. },
  2965. {
  2966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2967. "type": "tidelift"
  2968. }
  2969. ],
  2970. "time": "2021-12-01T15:04:08+00:00"
  2971. },
  2972. {
  2973. "name": "symfony/event-dispatcher",
  2974. "version": "v5.4.0",
  2975. "source": {
  2976. "type": "git",
  2977. "url": "https://github.com/symfony/event-dispatcher.git",
  2978. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb"
  2979. },
  2980. "dist": {
  2981. "type": "zip",
  2982. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/27d39ae126352b9fa3be5e196ccf4617897be3eb",
  2983. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb",
  2984. "shasum": ""
  2985. },
  2986. "require": {
  2987. "php": ">=7.2.5",
  2988. "symfony/deprecation-contracts": "^2.1|^3",
  2989. "symfony/event-dispatcher-contracts": "^2|^3",
  2990. "symfony/polyfill-php80": "^1.16"
  2991. },
  2992. "conflict": {
  2993. "symfony/dependency-injection": "<4.4"
  2994. },
  2995. "provide": {
  2996. "psr/event-dispatcher-implementation": "1.0",
  2997. "symfony/event-dispatcher-implementation": "2.0"
  2998. },
  2999. "require-dev": {
  3000. "psr/log": "^1|^2|^3",
  3001. "symfony/config": "^4.4|^5.0|^6.0",
  3002. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3003. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3004. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3005. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3006. "symfony/service-contracts": "^1.1|^2|^3",
  3007. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3008. },
  3009. "suggest": {
  3010. "symfony/dependency-injection": "",
  3011. "symfony/http-kernel": ""
  3012. },
  3013. "type": "library",
  3014. "autoload": {
  3015. "psr-4": {
  3016. "Symfony\\Component\\EventDispatcher\\": ""
  3017. },
  3018. "exclude-from-classmap": [
  3019. "/Tests/"
  3020. ]
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "Fabien Potencier",
  3029. "email": "fabien@symfony.com"
  3030. },
  3031. {
  3032. "name": "Symfony Community",
  3033. "homepage": "https://symfony.com/contributors"
  3034. }
  3035. ],
  3036. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3037. "homepage": "https://symfony.com",
  3038. "support": {
  3039. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.0"
  3040. },
  3041. "funding": [
  3042. {
  3043. "url": "https://symfony.com/sponsor",
  3044. "type": "custom"
  3045. },
  3046. {
  3047. "url": "https://github.com/fabpot",
  3048. "type": "github"
  3049. },
  3050. {
  3051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3052. "type": "tidelift"
  3053. }
  3054. ],
  3055. "time": "2021-11-23T10:19:22+00:00"
  3056. },
  3057. {
  3058. "name": "symfony/event-dispatcher-contracts",
  3059. "version": "v2.5.0",
  3060. "source": {
  3061. "type": "git",
  3062. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3063. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
  3064. },
  3065. "dist": {
  3066. "type": "zip",
  3067. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  3068. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  3069. "shasum": ""
  3070. },
  3071. "require": {
  3072. "php": ">=7.2.5",
  3073. "psr/event-dispatcher": "^1"
  3074. },
  3075. "suggest": {
  3076. "symfony/event-dispatcher-implementation": ""
  3077. },
  3078. "type": "library",
  3079. "extra": {
  3080. "branch-alias": {
  3081. "dev-main": "2.5-dev"
  3082. },
  3083. "thanks": {
  3084. "name": "symfony/contracts",
  3085. "url": "https://github.com/symfony/contracts"
  3086. }
  3087. },
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Symfony\\Contracts\\EventDispatcher\\": ""
  3091. }
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Nicolas Grekas",
  3100. "email": "p@tchwork.com"
  3101. },
  3102. {
  3103. "name": "Symfony Community",
  3104. "homepage": "https://symfony.com/contributors"
  3105. }
  3106. ],
  3107. "description": "Generic abstractions related to dispatching event",
  3108. "homepage": "https://symfony.com",
  3109. "keywords": [
  3110. "abstractions",
  3111. "contracts",
  3112. "decoupling",
  3113. "interfaces",
  3114. "interoperability",
  3115. "standards"
  3116. ],
  3117. "support": {
  3118. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
  3119. },
  3120. "funding": [
  3121. {
  3122. "url": "https://symfony.com/sponsor",
  3123. "type": "custom"
  3124. },
  3125. {
  3126. "url": "https://github.com/fabpot",
  3127. "type": "github"
  3128. },
  3129. {
  3130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3131. "type": "tidelift"
  3132. }
  3133. ],
  3134. "time": "2021-07-12T14:48:14+00:00"
  3135. },
  3136. {
  3137. "name": "symfony/filesystem",
  3138. "version": "v5.4.0",
  3139. "source": {
  3140. "type": "git",
  3141. "url": "https://github.com/symfony/filesystem.git",
  3142. "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01"
  3143. },
  3144. "dist": {
  3145. "type": "zip",
  3146. "url": "https://api.github.com/repos/symfony/filesystem/zipball/731f917dc31edcffec2c6a777f3698c33bea8f01",
  3147. "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01",
  3148. "shasum": ""
  3149. },
  3150. "require": {
  3151. "php": ">=7.2.5",
  3152. "symfony/polyfill-ctype": "~1.8",
  3153. "symfony/polyfill-mbstring": "~1.8",
  3154. "symfony/polyfill-php80": "^1.16"
  3155. },
  3156. "type": "library",
  3157. "autoload": {
  3158. "psr-4": {
  3159. "Symfony\\Component\\Filesystem\\": ""
  3160. },
  3161. "exclude-from-classmap": [
  3162. "/Tests/"
  3163. ]
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "MIT"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "Fabien Potencier",
  3172. "email": "fabien@symfony.com"
  3173. },
  3174. {
  3175. "name": "Symfony Community",
  3176. "homepage": "https://symfony.com/contributors"
  3177. }
  3178. ],
  3179. "description": "Provides basic utilities for the filesystem",
  3180. "homepage": "https://symfony.com",
  3181. "support": {
  3182. "source": "https://github.com/symfony/filesystem/tree/v5.4.0"
  3183. },
  3184. "funding": [
  3185. {
  3186. "url": "https://symfony.com/sponsor",
  3187. "type": "custom"
  3188. },
  3189. {
  3190. "url": "https://github.com/fabpot",
  3191. "type": "github"
  3192. },
  3193. {
  3194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3195. "type": "tidelift"
  3196. }
  3197. ],
  3198. "time": "2021-10-28T13:39:27+00:00"
  3199. },
  3200. {
  3201. "name": "symfony/finder",
  3202. "version": "v5.4.0",
  3203. "source": {
  3204. "type": "git",
  3205. "url": "https://github.com/symfony/finder.git",
  3206. "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590"
  3207. },
  3208. "dist": {
  3209. "type": "zip",
  3210. "url": "https://api.github.com/repos/symfony/finder/zipball/d2f29dac98e96a98be467627bd49c2efb1bc2590",
  3211. "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590",
  3212. "shasum": ""
  3213. },
  3214. "require": {
  3215. "php": ">=7.2.5",
  3216. "symfony/deprecation-contracts": "^2.1|^3",
  3217. "symfony/polyfill-php80": "^1.16"
  3218. },
  3219. "type": "library",
  3220. "autoload": {
  3221. "psr-4": {
  3222. "Symfony\\Component\\Finder\\": ""
  3223. },
  3224. "exclude-from-classmap": [
  3225. "/Tests/"
  3226. ]
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "Fabien Potencier",
  3235. "email": "fabien@symfony.com"
  3236. },
  3237. {
  3238. "name": "Symfony Community",
  3239. "homepage": "https://symfony.com/contributors"
  3240. }
  3241. ],
  3242. "description": "Finds files and directories via an intuitive fluent interface",
  3243. "homepage": "https://symfony.com",
  3244. "support": {
  3245. "source": "https://github.com/symfony/finder/tree/v5.4.0"
  3246. },
  3247. "funding": [
  3248. {
  3249. "url": "https://symfony.com/sponsor",
  3250. "type": "custom"
  3251. },
  3252. {
  3253. "url": "https://github.com/fabpot",
  3254. "type": "github"
  3255. },
  3256. {
  3257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3258. "type": "tidelift"
  3259. }
  3260. ],
  3261. "time": "2021-11-28T15:25:38+00:00"
  3262. },
  3263. {
  3264. "name": "symfony/http-foundation",
  3265. "version": "v5.4.1",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://github.com/symfony/http-foundation.git",
  3269. "reference": "5dad3780023a707f4c24beac7d57aead85c1ce3c"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5dad3780023a707f4c24beac7d57aead85c1ce3c",
  3274. "reference": "5dad3780023a707f4c24beac7d57aead85c1ce3c",
  3275. "shasum": ""
  3276. },
  3277. "require": {
  3278. "php": ">=7.2.5",
  3279. "symfony/deprecation-contracts": "^2.1|^3",
  3280. "symfony/polyfill-mbstring": "~1.1",
  3281. "symfony/polyfill-php80": "^1.16"
  3282. },
  3283. "require-dev": {
  3284. "predis/predis": "~1.0",
  3285. "symfony/cache": "^4.4|^5.0|^6.0",
  3286. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3287. "symfony/mime": "^4.4|^5.0|^6.0"
  3288. },
  3289. "suggest": {
  3290. "symfony/mime": "To use the file extension guesser"
  3291. },
  3292. "type": "library",
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Symfony\\Component\\HttpFoundation\\": ""
  3296. },
  3297. "exclude-from-classmap": [
  3298. "/Tests/"
  3299. ]
  3300. },
  3301. "notification-url": "https://packagist.org/downloads/",
  3302. "license": [
  3303. "MIT"
  3304. ],
  3305. "authors": [
  3306. {
  3307. "name": "Fabien Potencier",
  3308. "email": "fabien@symfony.com"
  3309. },
  3310. {
  3311. "name": "Symfony Community",
  3312. "homepage": "https://symfony.com/contributors"
  3313. }
  3314. ],
  3315. "description": "Defines an object-oriented layer for the HTTP specification",
  3316. "homepage": "https://symfony.com",
  3317. "support": {
  3318. "source": "https://github.com/symfony/http-foundation/tree/v5.4.1"
  3319. },
  3320. "funding": [
  3321. {
  3322. "url": "https://symfony.com/sponsor",
  3323. "type": "custom"
  3324. },
  3325. {
  3326. "url": "https://github.com/fabpot",
  3327. "type": "github"
  3328. },
  3329. {
  3330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3331. "type": "tidelift"
  3332. }
  3333. ],
  3334. "time": "2021-12-09T12:46:57+00:00"
  3335. },
  3336. {
  3337. "name": "symfony/http-kernel",
  3338. "version": "v5.4.1",
  3339. "source": {
  3340. "type": "git",
  3341. "url": "https://github.com/symfony/http-kernel.git",
  3342. "reference": "2bdace75c9d6a6eec7e318801b7dc87a72375052"
  3343. },
  3344. "dist": {
  3345. "type": "zip",
  3346. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2bdace75c9d6a6eec7e318801b7dc87a72375052",
  3347. "reference": "2bdace75c9d6a6eec7e318801b7dc87a72375052",
  3348. "shasum": ""
  3349. },
  3350. "require": {
  3351. "php": ">=7.2.5",
  3352. "psr/log": "^1|^2",
  3353. "symfony/deprecation-contracts": "^2.1|^3",
  3354. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3355. "symfony/event-dispatcher": "^5.0|^6.0",
  3356. "symfony/http-foundation": "^5.3.7|^6.0",
  3357. "symfony/polyfill-ctype": "^1.8",
  3358. "symfony/polyfill-php73": "^1.9",
  3359. "symfony/polyfill-php80": "^1.16"
  3360. },
  3361. "conflict": {
  3362. "symfony/browser-kit": "<5.4",
  3363. "symfony/cache": "<5.0",
  3364. "symfony/config": "<5.0",
  3365. "symfony/console": "<4.4",
  3366. "symfony/dependency-injection": "<5.3",
  3367. "symfony/doctrine-bridge": "<5.0",
  3368. "symfony/form": "<5.0",
  3369. "symfony/http-client": "<5.0",
  3370. "symfony/mailer": "<5.0",
  3371. "symfony/messenger": "<5.0",
  3372. "symfony/translation": "<5.0",
  3373. "symfony/twig-bridge": "<5.0",
  3374. "symfony/validator": "<5.0",
  3375. "twig/twig": "<2.13"
  3376. },
  3377. "provide": {
  3378. "psr/log-implementation": "1.0|2.0"
  3379. },
  3380. "require-dev": {
  3381. "psr/cache": "^1.0|^2.0|^3.0",
  3382. "symfony/browser-kit": "^5.4|^6.0",
  3383. "symfony/config": "^5.0|^6.0",
  3384. "symfony/console": "^4.4|^5.0|^6.0",
  3385. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3386. "symfony/dependency-injection": "^5.3|^6.0",
  3387. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3388. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3389. "symfony/finder": "^4.4|^5.0|^6.0",
  3390. "symfony/http-client-contracts": "^1.1|^2|^3",
  3391. "symfony/process": "^4.4|^5.0|^6.0",
  3392. "symfony/routing": "^4.4|^5.0|^6.0",
  3393. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3394. "symfony/translation": "^4.4|^5.0|^6.0",
  3395. "symfony/translation-contracts": "^1.1|^2|^3",
  3396. "twig/twig": "^2.13|^3.0.4"
  3397. },
  3398. "suggest": {
  3399. "symfony/browser-kit": "",
  3400. "symfony/config": "",
  3401. "symfony/console": "",
  3402. "symfony/dependency-injection": ""
  3403. },
  3404. "type": "library",
  3405. "autoload": {
  3406. "psr-4": {
  3407. "Symfony\\Component\\HttpKernel\\": ""
  3408. },
  3409. "exclude-from-classmap": [
  3410. "/Tests/"
  3411. ]
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "authors": [
  3418. {
  3419. "name": "Fabien Potencier",
  3420. "email": "fabien@symfony.com"
  3421. },
  3422. {
  3423. "name": "Symfony Community",
  3424. "homepage": "https://symfony.com/contributors"
  3425. }
  3426. ],
  3427. "description": "Provides a structured process for converting a Request into a Response",
  3428. "homepage": "https://symfony.com",
  3429. "support": {
  3430. "source": "https://github.com/symfony/http-kernel/tree/v5.4.1"
  3431. },
  3432. "funding": [
  3433. {
  3434. "url": "https://symfony.com/sponsor",
  3435. "type": "custom"
  3436. },
  3437. {
  3438. "url": "https://github.com/fabpot",
  3439. "type": "github"
  3440. },
  3441. {
  3442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3443. "type": "tidelift"
  3444. }
  3445. ],
  3446. "time": "2021-12-09T13:36:09+00:00"
  3447. },
  3448. {
  3449. "name": "symfony/mime",
  3450. "version": "v5.4.0",
  3451. "source": {
  3452. "type": "git",
  3453. "url": "https://github.com/symfony/mime.git",
  3454. "reference": "d4365000217b67c01acff407573906ff91bcfb34"
  3455. },
  3456. "dist": {
  3457. "type": "zip",
  3458. "url": "https://api.github.com/repos/symfony/mime/zipball/d4365000217b67c01acff407573906ff91bcfb34",
  3459. "reference": "d4365000217b67c01acff407573906ff91bcfb34",
  3460. "shasum": ""
  3461. },
  3462. "require": {
  3463. "php": ">=7.2.5",
  3464. "symfony/deprecation-contracts": "^2.1|^3",
  3465. "symfony/polyfill-intl-idn": "^1.10",
  3466. "symfony/polyfill-mbstring": "^1.0",
  3467. "symfony/polyfill-php80": "^1.16"
  3468. },
  3469. "conflict": {
  3470. "egulias/email-validator": "~3.0.0",
  3471. "phpdocumentor/reflection-docblock": "<3.2.2",
  3472. "phpdocumentor/type-resolver": "<1.4.0",
  3473. "symfony/mailer": "<4.4"
  3474. },
  3475. "require-dev": {
  3476. "egulias/email-validator": "^2.1.10|^3.1",
  3477. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3478. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3479. "symfony/property-access": "^4.4|^5.1|^6.0",
  3480. "symfony/property-info": "^4.4|^5.1|^6.0",
  3481. "symfony/serializer": "^5.2|^6.0"
  3482. },
  3483. "type": "library",
  3484. "autoload": {
  3485. "psr-4": {
  3486. "Symfony\\Component\\Mime\\": ""
  3487. },
  3488. "exclude-from-classmap": [
  3489. "/Tests/"
  3490. ]
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Fabien Potencier",
  3499. "email": "fabien@symfony.com"
  3500. },
  3501. {
  3502. "name": "Symfony Community",
  3503. "homepage": "https://symfony.com/contributors"
  3504. }
  3505. ],
  3506. "description": "Allows manipulating MIME messages",
  3507. "homepage": "https://symfony.com",
  3508. "keywords": [
  3509. "mime",
  3510. "mime-type"
  3511. ],
  3512. "support": {
  3513. "source": "https://github.com/symfony/mime/tree/v5.4.0"
  3514. },
  3515. "funding": [
  3516. {
  3517. "url": "https://symfony.com/sponsor",
  3518. "type": "custom"
  3519. },
  3520. {
  3521. "url": "https://github.com/fabpot",
  3522. "type": "github"
  3523. },
  3524. {
  3525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3526. "type": "tidelift"
  3527. }
  3528. ],
  3529. "time": "2021-11-23T10:19:22+00:00"
  3530. },
  3531. {
  3532. "name": "symfony/phpunit-bridge",
  3533. "version": "v6.0.0",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/symfony/phpunit-bridge.git",
  3537. "reference": "5d6cc6720085084f504d2482fc4a2f268784006b"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/5d6cc6720085084f504d2482fc4a2f268784006b",
  3542. "reference": "5d6cc6720085084f504d2482fc4a2f268784006b",
  3543. "shasum": ""
  3544. },
  3545. "require": {
  3546. "php": ">=7.1.3"
  3547. },
  3548. "conflict": {
  3549. "phpunit/phpunit": "<7.5|9.1.2"
  3550. },
  3551. "require-dev": {
  3552. "symfony/deprecation-contracts": "^2.1|^3.0",
  3553. "symfony/error-handler": "^5.4|^6.0"
  3554. },
  3555. "suggest": {
  3556. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  3557. },
  3558. "bin": [
  3559. "bin/simple-phpunit"
  3560. ],
  3561. "type": "symfony-bridge",
  3562. "extra": {
  3563. "thanks": {
  3564. "name": "phpunit/phpunit",
  3565. "url": "https://github.com/sebastianbergmann/phpunit"
  3566. }
  3567. },
  3568. "autoload": {
  3569. "files": [
  3570. "bootstrap.php"
  3571. ],
  3572. "psr-4": {
  3573. "Symfony\\Bridge\\PhpUnit\\": ""
  3574. },
  3575. "exclude-from-classmap": [
  3576. "/Tests/"
  3577. ]
  3578. },
  3579. "notification-url": "https://packagist.org/downloads/",
  3580. "license": [
  3581. "MIT"
  3582. ],
  3583. "authors": [
  3584. {
  3585. "name": "Nicolas Grekas",
  3586. "email": "p@tchwork.com"
  3587. },
  3588. {
  3589. "name": "Symfony Community",
  3590. "homepage": "https://symfony.com/contributors"
  3591. }
  3592. ],
  3593. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  3594. "homepage": "https://symfony.com",
  3595. "support": {
  3596. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.0.0"
  3597. },
  3598. "funding": [
  3599. {
  3600. "url": "https://symfony.com/sponsor",
  3601. "type": "custom"
  3602. },
  3603. {
  3604. "url": "https://github.com/fabpot",
  3605. "type": "github"
  3606. },
  3607. {
  3608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3609. "type": "tidelift"
  3610. }
  3611. ],
  3612. "time": "2021-11-29T15:32:57+00:00"
  3613. },
  3614. {
  3615. "name": "symfony/polyfill-ctype",
  3616. "version": "v1.23.0",
  3617. "source": {
  3618. "type": "git",
  3619. "url": "https://github.com/symfony/polyfill-ctype.git",
  3620. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  3621. },
  3622. "dist": {
  3623. "type": "zip",
  3624. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  3625. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  3626. "shasum": ""
  3627. },
  3628. "require": {
  3629. "php": ">=7.1"
  3630. },
  3631. "suggest": {
  3632. "ext-ctype": "For best performance"
  3633. },
  3634. "type": "library",
  3635. "extra": {
  3636. "branch-alias": {
  3637. "dev-main": "1.23-dev"
  3638. },
  3639. "thanks": {
  3640. "name": "symfony/polyfill",
  3641. "url": "https://github.com/symfony/polyfill"
  3642. }
  3643. },
  3644. "autoload": {
  3645. "psr-4": {
  3646. "Symfony\\Polyfill\\Ctype\\": ""
  3647. },
  3648. "files": [
  3649. "bootstrap.php"
  3650. ]
  3651. },
  3652. "notification-url": "https://packagist.org/downloads/",
  3653. "license": [
  3654. "MIT"
  3655. ],
  3656. "authors": [
  3657. {
  3658. "name": "Gert de Pagter",
  3659. "email": "BackEndTea@gmail.com"
  3660. },
  3661. {
  3662. "name": "Symfony Community",
  3663. "homepage": "https://symfony.com/contributors"
  3664. }
  3665. ],
  3666. "description": "Symfony polyfill for ctype functions",
  3667. "homepage": "https://symfony.com",
  3668. "keywords": [
  3669. "compatibility",
  3670. "ctype",
  3671. "polyfill",
  3672. "portable"
  3673. ],
  3674. "support": {
  3675. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  3676. },
  3677. "funding": [
  3678. {
  3679. "url": "https://symfony.com/sponsor",
  3680. "type": "custom"
  3681. },
  3682. {
  3683. "url": "https://github.com/fabpot",
  3684. "type": "github"
  3685. },
  3686. {
  3687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3688. "type": "tidelift"
  3689. }
  3690. ],
  3691. "time": "2021-02-19T12:13:01+00:00"
  3692. },
  3693. {
  3694. "name": "symfony/polyfill-iconv",
  3695. "version": "v1.23.0",
  3696. "source": {
  3697. "type": "git",
  3698. "url": "https://github.com/symfony/polyfill-iconv.git",
  3699. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  3700. },
  3701. "dist": {
  3702. "type": "zip",
  3703. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  3704. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  3705. "shasum": ""
  3706. },
  3707. "require": {
  3708. "php": ">=7.1"
  3709. },
  3710. "suggest": {
  3711. "ext-iconv": "For best performance"
  3712. },
  3713. "type": "library",
  3714. "extra": {
  3715. "branch-alias": {
  3716. "dev-main": "1.23-dev"
  3717. },
  3718. "thanks": {
  3719. "name": "symfony/polyfill",
  3720. "url": "https://github.com/symfony/polyfill"
  3721. }
  3722. },
  3723. "autoload": {
  3724. "psr-4": {
  3725. "Symfony\\Polyfill\\Iconv\\": ""
  3726. },
  3727. "files": [
  3728. "bootstrap.php"
  3729. ]
  3730. },
  3731. "notification-url": "https://packagist.org/downloads/",
  3732. "license": [
  3733. "MIT"
  3734. ],
  3735. "authors": [
  3736. {
  3737. "name": "Nicolas Grekas",
  3738. "email": "p@tchwork.com"
  3739. },
  3740. {
  3741. "name": "Symfony Community",
  3742. "homepage": "https://symfony.com/contributors"
  3743. }
  3744. ],
  3745. "description": "Symfony polyfill for the Iconv extension",
  3746. "homepage": "https://symfony.com",
  3747. "keywords": [
  3748. "compatibility",
  3749. "iconv",
  3750. "polyfill",
  3751. "portable",
  3752. "shim"
  3753. ],
  3754. "support": {
  3755. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://symfony.com/sponsor",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://github.com/fabpot",
  3764. "type": "github"
  3765. },
  3766. {
  3767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3768. "type": "tidelift"
  3769. }
  3770. ],
  3771. "time": "2021-05-27T09:27:20+00:00"
  3772. },
  3773. {
  3774. "name": "symfony/polyfill-intl-grapheme",
  3775. "version": "v1.23.1",
  3776. "source": {
  3777. "type": "git",
  3778. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3779. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  3780. },
  3781. "dist": {
  3782. "type": "zip",
  3783. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  3784. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  3785. "shasum": ""
  3786. },
  3787. "require": {
  3788. "php": ">=7.1"
  3789. },
  3790. "suggest": {
  3791. "ext-intl": "For best performance"
  3792. },
  3793. "type": "library",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-main": "1.23-dev"
  3797. },
  3798. "thanks": {
  3799. "name": "symfony/polyfill",
  3800. "url": "https://github.com/symfony/polyfill"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "psr-4": {
  3805. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3806. },
  3807. "files": [
  3808. "bootstrap.php"
  3809. ]
  3810. },
  3811. "notification-url": "https://packagist.org/downloads/",
  3812. "license": [
  3813. "MIT"
  3814. ],
  3815. "authors": [
  3816. {
  3817. "name": "Nicolas Grekas",
  3818. "email": "p@tchwork.com"
  3819. },
  3820. {
  3821. "name": "Symfony Community",
  3822. "homepage": "https://symfony.com/contributors"
  3823. }
  3824. ],
  3825. "description": "Symfony polyfill for intl's grapheme_* functions",
  3826. "homepage": "https://symfony.com",
  3827. "keywords": [
  3828. "compatibility",
  3829. "grapheme",
  3830. "intl",
  3831. "polyfill",
  3832. "portable",
  3833. "shim"
  3834. ],
  3835. "support": {
  3836. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  3837. },
  3838. "funding": [
  3839. {
  3840. "url": "https://symfony.com/sponsor",
  3841. "type": "custom"
  3842. },
  3843. {
  3844. "url": "https://github.com/fabpot",
  3845. "type": "github"
  3846. },
  3847. {
  3848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3849. "type": "tidelift"
  3850. }
  3851. ],
  3852. "time": "2021-05-27T12:26:48+00:00"
  3853. },
  3854. {
  3855. "name": "symfony/polyfill-intl-idn",
  3856. "version": "v1.23.0",
  3857. "source": {
  3858. "type": "git",
  3859. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3860. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  3861. },
  3862. "dist": {
  3863. "type": "zip",
  3864. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  3865. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  3866. "shasum": ""
  3867. },
  3868. "require": {
  3869. "php": ">=7.1",
  3870. "symfony/polyfill-intl-normalizer": "^1.10",
  3871. "symfony/polyfill-php72": "^1.10"
  3872. },
  3873. "suggest": {
  3874. "ext-intl": "For best performance"
  3875. },
  3876. "type": "library",
  3877. "extra": {
  3878. "branch-alias": {
  3879. "dev-main": "1.23-dev"
  3880. },
  3881. "thanks": {
  3882. "name": "symfony/polyfill",
  3883. "url": "https://github.com/symfony/polyfill"
  3884. }
  3885. },
  3886. "autoload": {
  3887. "psr-4": {
  3888. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3889. },
  3890. "files": [
  3891. "bootstrap.php"
  3892. ]
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Laurent Bassin",
  3901. "email": "laurent@bassin.info"
  3902. },
  3903. {
  3904. "name": "Trevor Rowbotham",
  3905. "email": "trevor.rowbotham@pm.me"
  3906. },
  3907. {
  3908. "name": "Symfony Community",
  3909. "homepage": "https://symfony.com/contributors"
  3910. }
  3911. ],
  3912. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3913. "homepage": "https://symfony.com",
  3914. "keywords": [
  3915. "compatibility",
  3916. "idn",
  3917. "intl",
  3918. "polyfill",
  3919. "portable",
  3920. "shim"
  3921. ],
  3922. "support": {
  3923. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  3924. },
  3925. "funding": [
  3926. {
  3927. "url": "https://symfony.com/sponsor",
  3928. "type": "custom"
  3929. },
  3930. {
  3931. "url": "https://github.com/fabpot",
  3932. "type": "github"
  3933. },
  3934. {
  3935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3936. "type": "tidelift"
  3937. }
  3938. ],
  3939. "time": "2021-05-27T09:27:20+00:00"
  3940. },
  3941. {
  3942. "name": "symfony/polyfill-intl-normalizer",
  3943. "version": "v1.23.0",
  3944. "source": {
  3945. "type": "git",
  3946. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3947. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  3948. },
  3949. "dist": {
  3950. "type": "zip",
  3951. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  3952. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  3953. "shasum": ""
  3954. },
  3955. "require": {
  3956. "php": ">=7.1"
  3957. },
  3958. "suggest": {
  3959. "ext-intl": "For best performance"
  3960. },
  3961. "type": "library",
  3962. "extra": {
  3963. "branch-alias": {
  3964. "dev-main": "1.23-dev"
  3965. },
  3966. "thanks": {
  3967. "name": "symfony/polyfill",
  3968. "url": "https://github.com/symfony/polyfill"
  3969. }
  3970. },
  3971. "autoload": {
  3972. "psr-4": {
  3973. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3974. },
  3975. "files": [
  3976. "bootstrap.php"
  3977. ],
  3978. "classmap": [
  3979. "Resources/stubs"
  3980. ]
  3981. },
  3982. "notification-url": "https://packagist.org/downloads/",
  3983. "license": [
  3984. "MIT"
  3985. ],
  3986. "authors": [
  3987. {
  3988. "name": "Nicolas Grekas",
  3989. "email": "p@tchwork.com"
  3990. },
  3991. {
  3992. "name": "Symfony Community",
  3993. "homepage": "https://symfony.com/contributors"
  3994. }
  3995. ],
  3996. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3997. "homepage": "https://symfony.com",
  3998. "keywords": [
  3999. "compatibility",
  4000. "intl",
  4001. "normalizer",
  4002. "polyfill",
  4003. "portable",
  4004. "shim"
  4005. ],
  4006. "support": {
  4007. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  4008. },
  4009. "funding": [
  4010. {
  4011. "url": "https://symfony.com/sponsor",
  4012. "type": "custom"
  4013. },
  4014. {
  4015. "url": "https://github.com/fabpot",
  4016. "type": "github"
  4017. },
  4018. {
  4019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4020. "type": "tidelift"
  4021. }
  4022. ],
  4023. "time": "2021-02-19T12:13:01+00:00"
  4024. },
  4025. {
  4026. "name": "symfony/polyfill-mbstring",
  4027. "version": "v1.23.1",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4031. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4036. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4037. "shasum": ""
  4038. },
  4039. "require": {
  4040. "php": ">=7.1"
  4041. },
  4042. "suggest": {
  4043. "ext-mbstring": "For best performance"
  4044. },
  4045. "type": "library",
  4046. "extra": {
  4047. "branch-alias": {
  4048. "dev-main": "1.23-dev"
  4049. },
  4050. "thanks": {
  4051. "name": "symfony/polyfill",
  4052. "url": "https://github.com/symfony/polyfill"
  4053. }
  4054. },
  4055. "autoload": {
  4056. "psr-4": {
  4057. "Symfony\\Polyfill\\Mbstring\\": ""
  4058. },
  4059. "files": [
  4060. "bootstrap.php"
  4061. ]
  4062. },
  4063. "notification-url": "https://packagist.org/downloads/",
  4064. "license": [
  4065. "MIT"
  4066. ],
  4067. "authors": [
  4068. {
  4069. "name": "Nicolas Grekas",
  4070. "email": "p@tchwork.com"
  4071. },
  4072. {
  4073. "name": "Symfony Community",
  4074. "homepage": "https://symfony.com/contributors"
  4075. }
  4076. ],
  4077. "description": "Symfony polyfill for the Mbstring extension",
  4078. "homepage": "https://symfony.com",
  4079. "keywords": [
  4080. "compatibility",
  4081. "mbstring",
  4082. "polyfill",
  4083. "portable",
  4084. "shim"
  4085. ],
  4086. "support": {
  4087. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  4088. },
  4089. "funding": [
  4090. {
  4091. "url": "https://symfony.com/sponsor",
  4092. "type": "custom"
  4093. },
  4094. {
  4095. "url": "https://github.com/fabpot",
  4096. "type": "github"
  4097. },
  4098. {
  4099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4100. "type": "tidelift"
  4101. }
  4102. ],
  4103. "time": "2021-05-27T12:26:48+00:00"
  4104. },
  4105. {
  4106. "name": "symfony/polyfill-php72",
  4107. "version": "v1.23.0",
  4108. "source": {
  4109. "type": "git",
  4110. "url": "https://github.com/symfony/polyfill-php72.git",
  4111. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  4112. },
  4113. "dist": {
  4114. "type": "zip",
  4115. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  4116. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  4117. "shasum": ""
  4118. },
  4119. "require": {
  4120. "php": ">=7.1"
  4121. },
  4122. "type": "library",
  4123. "extra": {
  4124. "branch-alias": {
  4125. "dev-main": "1.23-dev"
  4126. },
  4127. "thanks": {
  4128. "name": "symfony/polyfill",
  4129. "url": "https://github.com/symfony/polyfill"
  4130. }
  4131. },
  4132. "autoload": {
  4133. "psr-4": {
  4134. "Symfony\\Polyfill\\Php72\\": ""
  4135. },
  4136. "files": [
  4137. "bootstrap.php"
  4138. ]
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Nicolas Grekas",
  4147. "email": "p@tchwork.com"
  4148. },
  4149. {
  4150. "name": "Symfony Community",
  4151. "homepage": "https://symfony.com/contributors"
  4152. }
  4153. ],
  4154. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4155. "homepage": "https://symfony.com",
  4156. "keywords": [
  4157. "compatibility",
  4158. "polyfill",
  4159. "portable",
  4160. "shim"
  4161. ],
  4162. "support": {
  4163. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  4164. },
  4165. "funding": [
  4166. {
  4167. "url": "https://symfony.com/sponsor",
  4168. "type": "custom"
  4169. },
  4170. {
  4171. "url": "https://github.com/fabpot",
  4172. "type": "github"
  4173. },
  4174. {
  4175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4176. "type": "tidelift"
  4177. }
  4178. ],
  4179. "time": "2021-05-27T09:17:38+00:00"
  4180. },
  4181. {
  4182. "name": "symfony/polyfill-php73",
  4183. "version": "v1.23.0",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/symfony/polyfill-php73.git",
  4187. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  4192. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  4193. "shasum": ""
  4194. },
  4195. "require": {
  4196. "php": ">=7.1"
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-main": "1.23-dev"
  4202. },
  4203. "thanks": {
  4204. "name": "symfony/polyfill",
  4205. "url": "https://github.com/symfony/polyfill"
  4206. }
  4207. },
  4208. "autoload": {
  4209. "psr-4": {
  4210. "Symfony\\Polyfill\\Php73\\": ""
  4211. },
  4212. "files": [
  4213. "bootstrap.php"
  4214. ],
  4215. "classmap": [
  4216. "Resources/stubs"
  4217. ]
  4218. },
  4219. "notification-url": "https://packagist.org/downloads/",
  4220. "license": [
  4221. "MIT"
  4222. ],
  4223. "authors": [
  4224. {
  4225. "name": "Nicolas Grekas",
  4226. "email": "p@tchwork.com"
  4227. },
  4228. {
  4229. "name": "Symfony Community",
  4230. "homepage": "https://symfony.com/contributors"
  4231. }
  4232. ],
  4233. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4234. "homepage": "https://symfony.com",
  4235. "keywords": [
  4236. "compatibility",
  4237. "polyfill",
  4238. "portable",
  4239. "shim"
  4240. ],
  4241. "support": {
  4242. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  4243. },
  4244. "funding": [
  4245. {
  4246. "url": "https://symfony.com/sponsor",
  4247. "type": "custom"
  4248. },
  4249. {
  4250. "url": "https://github.com/fabpot",
  4251. "type": "github"
  4252. },
  4253. {
  4254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4255. "type": "tidelift"
  4256. }
  4257. ],
  4258. "time": "2021-02-19T12:13:01+00:00"
  4259. },
  4260. {
  4261. "name": "symfony/polyfill-php80",
  4262. "version": "v1.23.1",
  4263. "source": {
  4264. "type": "git",
  4265. "url": "https://github.com/symfony/polyfill-php80.git",
  4266. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  4267. },
  4268. "dist": {
  4269. "type": "zip",
  4270. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  4271. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  4272. "shasum": ""
  4273. },
  4274. "require": {
  4275. "php": ">=7.1"
  4276. },
  4277. "type": "library",
  4278. "extra": {
  4279. "branch-alias": {
  4280. "dev-main": "1.23-dev"
  4281. },
  4282. "thanks": {
  4283. "name": "symfony/polyfill",
  4284. "url": "https://github.com/symfony/polyfill"
  4285. }
  4286. },
  4287. "autoload": {
  4288. "psr-4": {
  4289. "Symfony\\Polyfill\\Php80\\": ""
  4290. },
  4291. "files": [
  4292. "bootstrap.php"
  4293. ],
  4294. "classmap": [
  4295. "Resources/stubs"
  4296. ]
  4297. },
  4298. "notification-url": "https://packagist.org/downloads/",
  4299. "license": [
  4300. "MIT"
  4301. ],
  4302. "authors": [
  4303. {
  4304. "name": "Ion Bazan",
  4305. "email": "ion.bazan@gmail.com"
  4306. },
  4307. {
  4308. "name": "Nicolas Grekas",
  4309. "email": "p@tchwork.com"
  4310. },
  4311. {
  4312. "name": "Symfony Community",
  4313. "homepage": "https://symfony.com/contributors"
  4314. }
  4315. ],
  4316. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4317. "homepage": "https://symfony.com",
  4318. "keywords": [
  4319. "compatibility",
  4320. "polyfill",
  4321. "portable",
  4322. "shim"
  4323. ],
  4324. "support": {
  4325. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  4326. },
  4327. "funding": [
  4328. {
  4329. "url": "https://symfony.com/sponsor",
  4330. "type": "custom"
  4331. },
  4332. {
  4333. "url": "https://github.com/fabpot",
  4334. "type": "github"
  4335. },
  4336. {
  4337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4338. "type": "tidelift"
  4339. }
  4340. ],
  4341. "time": "2021-07-28T13:41:28+00:00"
  4342. },
  4343. {
  4344. "name": "symfony/polyfill-php81",
  4345. "version": "v1.23.0",
  4346. "source": {
  4347. "type": "git",
  4348. "url": "https://github.com/symfony/polyfill-php81.git",
  4349. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  4350. },
  4351. "dist": {
  4352. "type": "zip",
  4353. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  4354. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  4355. "shasum": ""
  4356. },
  4357. "require": {
  4358. "php": ">=7.1"
  4359. },
  4360. "type": "library",
  4361. "extra": {
  4362. "branch-alias": {
  4363. "dev-main": "1.23-dev"
  4364. },
  4365. "thanks": {
  4366. "name": "symfony/polyfill",
  4367. "url": "https://github.com/symfony/polyfill"
  4368. }
  4369. },
  4370. "autoload": {
  4371. "psr-4": {
  4372. "Symfony\\Polyfill\\Php81\\": ""
  4373. },
  4374. "files": [
  4375. "bootstrap.php"
  4376. ],
  4377. "classmap": [
  4378. "Resources/stubs"
  4379. ]
  4380. },
  4381. "notification-url": "https://packagist.org/downloads/",
  4382. "license": [
  4383. "MIT"
  4384. ],
  4385. "authors": [
  4386. {
  4387. "name": "Nicolas Grekas",
  4388. "email": "p@tchwork.com"
  4389. },
  4390. {
  4391. "name": "Symfony Community",
  4392. "homepage": "https://symfony.com/contributors"
  4393. }
  4394. ],
  4395. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4396. "homepage": "https://symfony.com",
  4397. "keywords": [
  4398. "compatibility",
  4399. "polyfill",
  4400. "portable",
  4401. "shim"
  4402. ],
  4403. "support": {
  4404. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  4405. },
  4406. "funding": [
  4407. {
  4408. "url": "https://symfony.com/sponsor",
  4409. "type": "custom"
  4410. },
  4411. {
  4412. "url": "https://github.com/fabpot",
  4413. "type": "github"
  4414. },
  4415. {
  4416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4417. "type": "tidelift"
  4418. }
  4419. ],
  4420. "time": "2021-05-21T13:25:03+00:00"
  4421. },
  4422. {
  4423. "name": "symfony/process",
  4424. "version": "v5.4.0",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://github.com/symfony/process.git",
  4428. "reference": "5be20b3830f726e019162b26223110c8f47cf274"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://api.github.com/repos/symfony/process/zipball/5be20b3830f726e019162b26223110c8f47cf274",
  4433. "reference": "5be20b3830f726e019162b26223110c8f47cf274",
  4434. "shasum": ""
  4435. },
  4436. "require": {
  4437. "php": ">=7.2.5",
  4438. "symfony/polyfill-php80": "^1.16"
  4439. },
  4440. "type": "library",
  4441. "autoload": {
  4442. "psr-4": {
  4443. "Symfony\\Component\\Process\\": ""
  4444. },
  4445. "exclude-from-classmap": [
  4446. "/Tests/"
  4447. ]
  4448. },
  4449. "notification-url": "https://packagist.org/downloads/",
  4450. "license": [
  4451. "MIT"
  4452. ],
  4453. "authors": [
  4454. {
  4455. "name": "Fabien Potencier",
  4456. "email": "fabien@symfony.com"
  4457. },
  4458. {
  4459. "name": "Symfony Community",
  4460. "homepage": "https://symfony.com/contributors"
  4461. }
  4462. ],
  4463. "description": "Executes commands in sub-processes",
  4464. "homepage": "https://symfony.com",
  4465. "support": {
  4466. "source": "https://github.com/symfony/process/tree/v5.4.0"
  4467. },
  4468. "funding": [
  4469. {
  4470. "url": "https://symfony.com/sponsor",
  4471. "type": "custom"
  4472. },
  4473. {
  4474. "url": "https://github.com/fabpot",
  4475. "type": "github"
  4476. },
  4477. {
  4478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4479. "type": "tidelift"
  4480. }
  4481. ],
  4482. "time": "2021-11-28T15:25:38+00:00"
  4483. },
  4484. {
  4485. "name": "symfony/routing",
  4486. "version": "v5.4.0",
  4487. "source": {
  4488. "type": "git",
  4489. "url": "https://github.com/symfony/routing.git",
  4490. "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1"
  4491. },
  4492. "dist": {
  4493. "type": "zip",
  4494. "url": "https://api.github.com/repos/symfony/routing/zipball/9eeae93c32ca86746e5d38f3679e9569981038b1",
  4495. "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1",
  4496. "shasum": ""
  4497. },
  4498. "require": {
  4499. "php": ">=7.2.5",
  4500. "symfony/deprecation-contracts": "^2.1|^3",
  4501. "symfony/polyfill-php80": "^1.16"
  4502. },
  4503. "conflict": {
  4504. "doctrine/annotations": "<1.12",
  4505. "symfony/config": "<5.3",
  4506. "symfony/dependency-injection": "<4.4",
  4507. "symfony/yaml": "<4.4"
  4508. },
  4509. "require-dev": {
  4510. "doctrine/annotations": "^1.12",
  4511. "psr/log": "^1|^2|^3",
  4512. "symfony/config": "^5.3|^6.0",
  4513. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4514. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4515. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4516. "symfony/yaml": "^4.4|^5.0|^6.0"
  4517. },
  4518. "suggest": {
  4519. "symfony/config": "For using the all-in-one router or any loader",
  4520. "symfony/expression-language": "For using expression matching",
  4521. "symfony/http-foundation": "For using a Symfony Request object",
  4522. "symfony/yaml": "For using the YAML loader"
  4523. },
  4524. "type": "library",
  4525. "autoload": {
  4526. "psr-4": {
  4527. "Symfony\\Component\\Routing\\": ""
  4528. },
  4529. "exclude-from-classmap": [
  4530. "/Tests/"
  4531. ]
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "MIT"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "Fabien Potencier",
  4540. "email": "fabien@symfony.com"
  4541. },
  4542. {
  4543. "name": "Symfony Community",
  4544. "homepage": "https://symfony.com/contributors"
  4545. }
  4546. ],
  4547. "description": "Maps an HTTP request to a set of configuration variables",
  4548. "homepage": "https://symfony.com",
  4549. "keywords": [
  4550. "router",
  4551. "routing",
  4552. "uri",
  4553. "url"
  4554. ],
  4555. "support": {
  4556. "source": "https://github.com/symfony/routing/tree/v5.4.0"
  4557. },
  4558. "funding": [
  4559. {
  4560. "url": "https://symfony.com/sponsor",
  4561. "type": "custom"
  4562. },
  4563. {
  4564. "url": "https://github.com/fabpot",
  4565. "type": "github"
  4566. },
  4567. {
  4568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4569. "type": "tidelift"
  4570. }
  4571. ],
  4572. "time": "2021-11-23T10:19:22+00:00"
  4573. },
  4574. {
  4575. "name": "symfony/service-contracts",
  4576. "version": "v2.5.0",
  4577. "source": {
  4578. "type": "git",
  4579. "url": "https://github.com/symfony/service-contracts.git",
  4580. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  4581. },
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  4585. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  4586. "shasum": ""
  4587. },
  4588. "require": {
  4589. "php": ">=7.2.5",
  4590. "psr/container": "^1.1",
  4591. "symfony/deprecation-contracts": "^2.1"
  4592. },
  4593. "conflict": {
  4594. "ext-psr": "<1.1|>=2"
  4595. },
  4596. "suggest": {
  4597. "symfony/service-implementation": ""
  4598. },
  4599. "type": "library",
  4600. "extra": {
  4601. "branch-alias": {
  4602. "dev-main": "2.5-dev"
  4603. },
  4604. "thanks": {
  4605. "name": "symfony/contracts",
  4606. "url": "https://github.com/symfony/contracts"
  4607. }
  4608. },
  4609. "autoload": {
  4610. "psr-4": {
  4611. "Symfony\\Contracts\\Service\\": ""
  4612. }
  4613. },
  4614. "notification-url": "https://packagist.org/downloads/",
  4615. "license": [
  4616. "MIT"
  4617. ],
  4618. "authors": [
  4619. {
  4620. "name": "Nicolas Grekas",
  4621. "email": "p@tchwork.com"
  4622. },
  4623. {
  4624. "name": "Symfony Community",
  4625. "homepage": "https://symfony.com/contributors"
  4626. }
  4627. ],
  4628. "description": "Generic abstractions related to writing services",
  4629. "homepage": "https://symfony.com",
  4630. "keywords": [
  4631. "abstractions",
  4632. "contracts",
  4633. "decoupling",
  4634. "interfaces",
  4635. "interoperability",
  4636. "standards"
  4637. ],
  4638. "support": {
  4639. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  4640. },
  4641. "funding": [
  4642. {
  4643. "url": "https://symfony.com/sponsor",
  4644. "type": "custom"
  4645. },
  4646. {
  4647. "url": "https://github.com/fabpot",
  4648. "type": "github"
  4649. },
  4650. {
  4651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4652. "type": "tidelift"
  4653. }
  4654. ],
  4655. "time": "2021-11-04T16:48:04+00:00"
  4656. },
  4657. {
  4658. "name": "symfony/string",
  4659. "version": "v5.4.0",
  4660. "source": {
  4661. "type": "git",
  4662. "url": "https://github.com/symfony/string.git",
  4663. "reference": "9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d"
  4664. },
  4665. "dist": {
  4666. "type": "zip",
  4667. "url": "https://api.github.com/repos/symfony/string/zipball/9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d",
  4668. "reference": "9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d",
  4669. "shasum": ""
  4670. },
  4671. "require": {
  4672. "php": ">=7.2.5",
  4673. "symfony/polyfill-ctype": "~1.8",
  4674. "symfony/polyfill-intl-grapheme": "~1.0",
  4675. "symfony/polyfill-intl-normalizer": "~1.0",
  4676. "symfony/polyfill-mbstring": "~1.0",
  4677. "symfony/polyfill-php80": "~1.15"
  4678. },
  4679. "conflict": {
  4680. "symfony/translation-contracts": ">=3.0"
  4681. },
  4682. "require-dev": {
  4683. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4684. "symfony/http-client": "^4.4|^5.0|^6.0",
  4685. "symfony/translation-contracts": "^1.1|^2",
  4686. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4687. },
  4688. "type": "library",
  4689. "autoload": {
  4690. "psr-4": {
  4691. "Symfony\\Component\\String\\": ""
  4692. },
  4693. "files": [
  4694. "Resources/functions.php"
  4695. ],
  4696. "exclude-from-classmap": [
  4697. "/Tests/"
  4698. ]
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "MIT"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "Nicolas Grekas",
  4707. "email": "p@tchwork.com"
  4708. },
  4709. {
  4710. "name": "Symfony Community",
  4711. "homepage": "https://symfony.com/contributors"
  4712. }
  4713. ],
  4714. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4715. "homepage": "https://symfony.com",
  4716. "keywords": [
  4717. "grapheme",
  4718. "i18n",
  4719. "string",
  4720. "unicode",
  4721. "utf-8",
  4722. "utf8"
  4723. ],
  4724. "support": {
  4725. "source": "https://github.com/symfony/string/tree/v5.4.0"
  4726. },
  4727. "funding": [
  4728. {
  4729. "url": "https://symfony.com/sponsor",
  4730. "type": "custom"
  4731. },
  4732. {
  4733. "url": "https://github.com/fabpot",
  4734. "type": "github"
  4735. },
  4736. {
  4737. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4738. "type": "tidelift"
  4739. }
  4740. ],
  4741. "time": "2021-11-24T10:02:00+00:00"
  4742. },
  4743. {
  4744. "name": "symfony/translation",
  4745. "version": "v5.4.1",
  4746. "source": {
  4747. "type": "git",
  4748. "url": "https://github.com/symfony/translation.git",
  4749. "reference": "8c82cd35ed861236138d5ae1c78c0c7ebcd62107"
  4750. },
  4751. "dist": {
  4752. "type": "zip",
  4753. "url": "https://api.github.com/repos/symfony/translation/zipball/8c82cd35ed861236138d5ae1c78c0c7ebcd62107",
  4754. "reference": "8c82cd35ed861236138d5ae1c78c0c7ebcd62107",
  4755. "shasum": ""
  4756. },
  4757. "require": {
  4758. "php": ">=7.2.5",
  4759. "symfony/deprecation-contracts": "^2.1|^3",
  4760. "symfony/polyfill-mbstring": "~1.0",
  4761. "symfony/polyfill-php80": "^1.16",
  4762. "symfony/translation-contracts": "^2.3"
  4763. },
  4764. "conflict": {
  4765. "symfony/config": "<4.4",
  4766. "symfony/console": "<5.3",
  4767. "symfony/dependency-injection": "<5.0",
  4768. "symfony/http-kernel": "<5.0",
  4769. "symfony/twig-bundle": "<5.0",
  4770. "symfony/yaml": "<4.4"
  4771. },
  4772. "provide": {
  4773. "symfony/translation-implementation": "2.3"
  4774. },
  4775. "require-dev": {
  4776. "psr/log": "^1|^2|^3",
  4777. "symfony/config": "^4.4|^5.0|^6.0",
  4778. "symfony/console": "^5.4|^6.0",
  4779. "symfony/dependency-injection": "^5.0|^6.0",
  4780. "symfony/finder": "^4.4|^5.0|^6.0",
  4781. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4782. "symfony/http-kernel": "^5.0|^6.0",
  4783. "symfony/intl": "^4.4|^5.0|^6.0",
  4784. "symfony/polyfill-intl-icu": "^1.21",
  4785. "symfony/service-contracts": "^1.1.2|^2|^3",
  4786. "symfony/yaml": "^4.4|^5.0|^6.0"
  4787. },
  4788. "suggest": {
  4789. "psr/log-implementation": "To use logging capability in translator",
  4790. "symfony/config": "",
  4791. "symfony/yaml": ""
  4792. },
  4793. "type": "library",
  4794. "autoload": {
  4795. "files": [
  4796. "Resources/functions.php"
  4797. ],
  4798. "psr-4": {
  4799. "Symfony\\Component\\Translation\\": ""
  4800. },
  4801. "exclude-from-classmap": [
  4802. "/Tests/"
  4803. ]
  4804. },
  4805. "notification-url": "https://packagist.org/downloads/",
  4806. "license": [
  4807. "MIT"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "Fabien Potencier",
  4812. "email": "fabien@symfony.com"
  4813. },
  4814. {
  4815. "name": "Symfony Community",
  4816. "homepage": "https://symfony.com/contributors"
  4817. }
  4818. ],
  4819. "description": "Provides tools to internationalize your application",
  4820. "homepage": "https://symfony.com",
  4821. "support": {
  4822. "source": "https://github.com/symfony/translation/tree/v5.4.1"
  4823. },
  4824. "funding": [
  4825. {
  4826. "url": "https://symfony.com/sponsor",
  4827. "type": "custom"
  4828. },
  4829. {
  4830. "url": "https://github.com/fabpot",
  4831. "type": "github"
  4832. },
  4833. {
  4834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4835. "type": "tidelift"
  4836. }
  4837. ],
  4838. "time": "2021-12-05T20:33:52+00:00"
  4839. },
  4840. {
  4841. "name": "symfony/translation-contracts",
  4842. "version": "v2.5.0",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://github.com/symfony/translation-contracts.git",
  4846. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  4851. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  4852. "shasum": ""
  4853. },
  4854. "require": {
  4855. "php": ">=7.2.5"
  4856. },
  4857. "suggest": {
  4858. "symfony/translation-implementation": ""
  4859. },
  4860. "type": "library",
  4861. "extra": {
  4862. "branch-alias": {
  4863. "dev-main": "2.5-dev"
  4864. },
  4865. "thanks": {
  4866. "name": "symfony/contracts",
  4867. "url": "https://github.com/symfony/contracts"
  4868. }
  4869. },
  4870. "autoload": {
  4871. "psr-4": {
  4872. "Symfony\\Contracts\\Translation\\": ""
  4873. }
  4874. },
  4875. "notification-url": "https://packagist.org/downloads/",
  4876. "license": [
  4877. "MIT"
  4878. ],
  4879. "authors": [
  4880. {
  4881. "name": "Nicolas Grekas",
  4882. "email": "p@tchwork.com"
  4883. },
  4884. {
  4885. "name": "Symfony Community",
  4886. "homepage": "https://symfony.com/contributors"
  4887. }
  4888. ],
  4889. "description": "Generic abstractions related to translation",
  4890. "homepage": "https://symfony.com",
  4891. "keywords": [
  4892. "abstractions",
  4893. "contracts",
  4894. "decoupling",
  4895. "interfaces",
  4896. "interoperability",
  4897. "standards"
  4898. ],
  4899. "support": {
  4900. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  4901. },
  4902. "funding": [
  4903. {
  4904. "url": "https://symfony.com/sponsor",
  4905. "type": "custom"
  4906. },
  4907. {
  4908. "url": "https://github.com/fabpot",
  4909. "type": "github"
  4910. },
  4911. {
  4912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4913. "type": "tidelift"
  4914. }
  4915. ],
  4916. "time": "2021-08-17T14:20:01+00:00"
  4917. },
  4918. {
  4919. "name": "symfony/var-dumper",
  4920. "version": "v5.4.1",
  4921. "source": {
  4922. "type": "git",
  4923. "url": "https://github.com/symfony/var-dumper.git",
  4924. "reference": "2366ac8d8abe0c077844613c1a4f0c0a9f522dcc"
  4925. },
  4926. "dist": {
  4927. "type": "zip",
  4928. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2366ac8d8abe0c077844613c1a4f0c0a9f522dcc",
  4929. "reference": "2366ac8d8abe0c077844613c1a4f0c0a9f522dcc",
  4930. "shasum": ""
  4931. },
  4932. "require": {
  4933. "php": ">=7.2.5",
  4934. "symfony/polyfill-mbstring": "~1.0",
  4935. "symfony/polyfill-php80": "^1.16"
  4936. },
  4937. "conflict": {
  4938. "phpunit/phpunit": "<5.4.3",
  4939. "symfony/console": "<4.4"
  4940. },
  4941. "require-dev": {
  4942. "ext-iconv": "*",
  4943. "symfony/console": "^4.4|^5.0|^6.0",
  4944. "symfony/process": "^4.4|^5.0|^6.0",
  4945. "symfony/uid": "^5.1|^6.0",
  4946. "twig/twig": "^2.13|^3.0.4"
  4947. },
  4948. "suggest": {
  4949. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4950. "ext-intl": "To show region name in time zone dump",
  4951. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4952. },
  4953. "bin": [
  4954. "Resources/bin/var-dump-server"
  4955. ],
  4956. "type": "library",
  4957. "autoload": {
  4958. "files": [
  4959. "Resources/functions/dump.php"
  4960. ],
  4961. "psr-4": {
  4962. "Symfony\\Component\\VarDumper\\": ""
  4963. },
  4964. "exclude-from-classmap": [
  4965. "/Tests/"
  4966. ]
  4967. },
  4968. "notification-url": "https://packagist.org/downloads/",
  4969. "license": [
  4970. "MIT"
  4971. ],
  4972. "authors": [
  4973. {
  4974. "name": "Nicolas Grekas",
  4975. "email": "p@tchwork.com"
  4976. },
  4977. {
  4978. "name": "Symfony Community",
  4979. "homepage": "https://symfony.com/contributors"
  4980. }
  4981. ],
  4982. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4983. "homepage": "https://symfony.com",
  4984. "keywords": [
  4985. "debug",
  4986. "dump"
  4987. ],
  4988. "support": {
  4989. "source": "https://github.com/symfony/var-dumper/tree/v5.4.1"
  4990. },
  4991. "funding": [
  4992. {
  4993. "url": "https://symfony.com/sponsor",
  4994. "type": "custom"
  4995. },
  4996. {
  4997. "url": "https://github.com/fabpot",
  4998. "type": "github"
  4999. },
  5000. {
  5001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5002. "type": "tidelift"
  5003. }
  5004. ],
  5005. "time": "2021-12-01T15:04:08+00:00"
  5006. },
  5007. {
  5008. "name": "tijsverkoyen/css-to-inline-styles",
  5009. "version": "2.2.4",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5013. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5018. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5019. "shasum": ""
  5020. },
  5021. "require": {
  5022. "ext-dom": "*",
  5023. "ext-libxml": "*",
  5024. "php": "^5.5 || ^7.0 || ^8.0",
  5025. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5026. },
  5027. "require-dev": {
  5028. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5029. },
  5030. "type": "library",
  5031. "extra": {
  5032. "branch-alias": {
  5033. "dev-master": "2.2.x-dev"
  5034. }
  5035. },
  5036. "autoload": {
  5037. "psr-4": {
  5038. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5039. }
  5040. },
  5041. "notification-url": "https://packagist.org/downloads/",
  5042. "license": [
  5043. "BSD-3-Clause"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "Tijs Verkoyen",
  5048. "email": "css_to_inline_styles@verkoyen.eu",
  5049. "role": "Developer"
  5050. }
  5051. ],
  5052. "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.",
  5053. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5054. "support": {
  5055. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5056. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  5057. },
  5058. "time": "2021-12-08T09:12:39+00:00"
  5059. },
  5060. {
  5061. "name": "twig/twig",
  5062. "version": "v3.3.4",
  5063. "source": {
  5064. "type": "git",
  5065. "url": "https://github.com/twigphp/Twig.git",
  5066. "reference": "65cb6f0b956485e1664f13d023c55298a4bb59ca"
  5067. },
  5068. "dist": {
  5069. "type": "zip",
  5070. "url": "https://api.github.com/repos/twigphp/Twig/zipball/65cb6f0b956485e1664f13d023c55298a4bb59ca",
  5071. "reference": "65cb6f0b956485e1664f13d023c55298a4bb59ca",
  5072. "shasum": ""
  5073. },
  5074. "require": {
  5075. "php": ">=7.2.5",
  5076. "symfony/polyfill-ctype": "^1.8",
  5077. "symfony/polyfill-mbstring": "^1.3"
  5078. },
  5079. "require-dev": {
  5080. "psr/container": "^1.0",
  5081. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  5082. },
  5083. "type": "library",
  5084. "extra": {
  5085. "branch-alias": {
  5086. "dev-master": "3.3-dev"
  5087. }
  5088. },
  5089. "autoload": {
  5090. "psr-4": {
  5091. "Twig\\": "src/"
  5092. }
  5093. },
  5094. "notification-url": "https://packagist.org/downloads/",
  5095. "license": [
  5096. "BSD-3-Clause"
  5097. ],
  5098. "authors": [
  5099. {
  5100. "name": "Fabien Potencier",
  5101. "email": "fabien@symfony.com",
  5102. "homepage": "http://fabien.potencier.org",
  5103. "role": "Lead Developer"
  5104. },
  5105. {
  5106. "name": "Twig Team",
  5107. "role": "Contributors"
  5108. },
  5109. {
  5110. "name": "Armin Ronacher",
  5111. "email": "armin.ronacher@active-4.com",
  5112. "role": "Project Founder"
  5113. }
  5114. ],
  5115. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5116. "homepage": "https://twig.symfony.com",
  5117. "keywords": [
  5118. "templating"
  5119. ],
  5120. "support": {
  5121. "issues": "https://github.com/twigphp/Twig/issues",
  5122. "source": "https://github.com/twigphp/Twig/tree/v3.3.4"
  5123. },
  5124. "funding": [
  5125. {
  5126. "url": "https://github.com/fabpot",
  5127. "type": "github"
  5128. },
  5129. {
  5130. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  5131. "type": "tidelift"
  5132. }
  5133. ],
  5134. "time": "2021-11-25T13:46:55+00:00"
  5135. },
  5136. {
  5137. "name": "vlucas/phpdotenv",
  5138. "version": "v5.4.1",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://github.com/vlucas/phpdotenv.git",
  5142. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  5147. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  5148. "shasum": ""
  5149. },
  5150. "require": {
  5151. "ext-pcre": "*",
  5152. "graham-campbell/result-type": "^1.0.2",
  5153. "php": "^7.1.3 || ^8.0",
  5154. "phpoption/phpoption": "^1.8",
  5155. "symfony/polyfill-ctype": "^1.23",
  5156. "symfony/polyfill-mbstring": "^1.23.1",
  5157. "symfony/polyfill-php80": "^1.23.1"
  5158. },
  5159. "require-dev": {
  5160. "bamarni/composer-bin-plugin": "^1.4.1",
  5161. "ext-filter": "*",
  5162. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  5163. },
  5164. "suggest": {
  5165. "ext-filter": "Required to use the boolean validator."
  5166. },
  5167. "type": "library",
  5168. "extra": {
  5169. "branch-alias": {
  5170. "dev-master": "5.4-dev"
  5171. }
  5172. },
  5173. "autoload": {
  5174. "psr-4": {
  5175. "Dotenv\\": "src/"
  5176. }
  5177. },
  5178. "notification-url": "https://packagist.org/downloads/",
  5179. "license": [
  5180. "BSD-3-Clause"
  5181. ],
  5182. "authors": [
  5183. {
  5184. "name": "Graham Campbell",
  5185. "email": "hello@gjcampbell.co.uk",
  5186. "homepage": "https://github.com/GrahamCampbell"
  5187. },
  5188. {
  5189. "name": "Vance Lucas",
  5190. "email": "vance@vancelucas.com",
  5191. "homepage": "https://github.com/vlucas"
  5192. }
  5193. ],
  5194. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5195. "keywords": [
  5196. "dotenv",
  5197. "env",
  5198. "environment"
  5199. ],
  5200. "support": {
  5201. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5202. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  5203. },
  5204. "funding": [
  5205. {
  5206. "url": "https://github.com/GrahamCampbell",
  5207. "type": "github"
  5208. },
  5209. {
  5210. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5211. "type": "tidelift"
  5212. }
  5213. ],
  5214. "time": "2021-12-12T23:22:04+00:00"
  5215. },
  5216. {
  5217. "name": "voku/portable-ascii",
  5218. "version": "1.5.6",
  5219. "source": {
  5220. "type": "git",
  5221. "url": "https://github.com/voku/portable-ascii.git",
  5222. "reference": "80953678b19901e5165c56752d087fc11526017c"
  5223. },
  5224. "dist": {
  5225. "type": "zip",
  5226. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  5227. "reference": "80953678b19901e5165c56752d087fc11526017c",
  5228. "shasum": ""
  5229. },
  5230. "require": {
  5231. "php": ">=7.0.0"
  5232. },
  5233. "require-dev": {
  5234. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5235. },
  5236. "suggest": {
  5237. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5238. },
  5239. "type": "library",
  5240. "autoload": {
  5241. "psr-4": {
  5242. "voku\\": "src/voku/"
  5243. }
  5244. },
  5245. "notification-url": "https://packagist.org/downloads/",
  5246. "license": [
  5247. "MIT"
  5248. ],
  5249. "authors": [
  5250. {
  5251. "name": "Lars Moelleken",
  5252. "homepage": "http://www.moelleken.org/"
  5253. }
  5254. ],
  5255. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5256. "homepage": "https://github.com/voku/portable-ascii",
  5257. "keywords": [
  5258. "ascii",
  5259. "clean",
  5260. "php"
  5261. ],
  5262. "support": {
  5263. "issues": "https://github.com/voku/portable-ascii/issues",
  5264. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  5265. },
  5266. "funding": [
  5267. {
  5268. "url": "https://www.paypal.me/moelleken",
  5269. "type": "custom"
  5270. },
  5271. {
  5272. "url": "https://github.com/voku",
  5273. "type": "github"
  5274. },
  5275. {
  5276. "url": "https://opencollective.com/portable-ascii",
  5277. "type": "open_collective"
  5278. },
  5279. {
  5280. "url": "https://www.patreon.com/voku",
  5281. "type": "patreon"
  5282. },
  5283. {
  5284. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5285. "type": "tidelift"
  5286. }
  5287. ],
  5288. "time": "2020-11-12T00:07:28+00:00"
  5289. },
  5290. {
  5291. "name": "webmozart/assert",
  5292. "version": "1.10.0",
  5293. "source": {
  5294. "type": "git",
  5295. "url": "https://github.com/webmozarts/assert.git",
  5296. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  5297. },
  5298. "dist": {
  5299. "type": "zip",
  5300. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  5301. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  5302. "shasum": ""
  5303. },
  5304. "require": {
  5305. "php": "^7.2 || ^8.0",
  5306. "symfony/polyfill-ctype": "^1.8"
  5307. },
  5308. "conflict": {
  5309. "phpstan/phpstan": "<0.12.20",
  5310. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5311. },
  5312. "require-dev": {
  5313. "phpunit/phpunit": "^8.5.13"
  5314. },
  5315. "type": "library",
  5316. "extra": {
  5317. "branch-alias": {
  5318. "dev-master": "1.10-dev"
  5319. }
  5320. },
  5321. "autoload": {
  5322. "psr-4": {
  5323. "Webmozart\\Assert\\": "src/"
  5324. }
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "MIT"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Bernhard Schussek",
  5333. "email": "bschussek@gmail.com"
  5334. }
  5335. ],
  5336. "description": "Assertions to validate method input/output with nice error messages.",
  5337. "keywords": [
  5338. "assert",
  5339. "check",
  5340. "validate"
  5341. ],
  5342. "support": {
  5343. "issues": "https://github.com/webmozarts/assert/issues",
  5344. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  5345. },
  5346. "time": "2021-03-09T10:59:23+00:00"
  5347. },
  5348. {
  5349. "name": "zendframework/zend-config",
  5350. "version": "3.3.0",
  5351. "source": {
  5352. "type": "git",
  5353. "url": "https://github.com/zendframework/zend-config.git",
  5354. "reference": "012341361ae3cc97a99959e7cb7c9ebd04d49572"
  5355. },
  5356. "dist": {
  5357. "type": "zip",
  5358. "url": "https://api.github.com/repos/zendframework/zend-config/zipball/012341361ae3cc97a99959e7cb7c9ebd04d49572",
  5359. "reference": "012341361ae3cc97a99959e7cb7c9ebd04d49572",
  5360. "shasum": ""
  5361. },
  5362. "require": {
  5363. "ext-json": "*",
  5364. "php": "^5.6 || ^7.0",
  5365. "psr/container": "^1.0",
  5366. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  5367. },
  5368. "conflict": {
  5369. "container-interop/container-interop": "<1.2.0"
  5370. },
  5371. "require-dev": {
  5372. "malukenho/docheader": "^0.1.6",
  5373. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5374. "zendframework/zend-coding-standard": "~1.0.0",
  5375. "zendframework/zend-filter": "^2.7.2",
  5376. "zendframework/zend-i18n": "^2.7.4",
  5377. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3"
  5378. },
  5379. "suggest": {
  5380. "zendframework/zend-filter": "^2.7.2; install if you want to use the Filter processor",
  5381. "zendframework/zend-i18n": "^2.7.4; install if you want to use the Translator processor",
  5382. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3; if you need an extensible plugin manager for use with the Config Factory"
  5383. },
  5384. "type": "library",
  5385. "extra": {
  5386. "branch-alias": {
  5387. "dev-master": "3.3.x-dev",
  5388. "dev-develop": "3.4.x-dev"
  5389. }
  5390. },
  5391. "autoload": {
  5392. "psr-4": {
  5393. "Zend\\Config\\": "src/"
  5394. }
  5395. },
  5396. "notification-url": "https://packagist.org/downloads/",
  5397. "license": [
  5398. "BSD-3-Clause"
  5399. ],
  5400. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  5401. "keywords": [
  5402. "ZendFramework",
  5403. "config",
  5404. "zf"
  5405. ],
  5406. "support": {
  5407. "chat": "https://zendframework-slack.herokuapp.com",
  5408. "docs": "https://docs.zendframework.com/zend-config/",
  5409. "forum": "https://discourse.zendframework.com/c/questions/components",
  5410. "issues": "https://github.com/zendframework/zend-config/issues",
  5411. "rss": "https://github.com/zendframework/zend-config/releases.atom",
  5412. "source": "https://github.com/zendframework/zend-config"
  5413. },
  5414. "abandoned": "laminas/laminas-config",
  5415. "time": "2019-06-08T18:58:54+00:00"
  5416. },
  5417. {
  5418. "name": "zendframework/zend-eventmanager",
  5419. "version": "3.2.1",
  5420. "source": {
  5421. "type": "git",
  5422. "url": "https://github.com/zendframework/zend-eventmanager.git",
  5423. "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
  5424. },
  5425. "dist": {
  5426. "type": "zip",
  5427. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
  5428. "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
  5429. "shasum": ""
  5430. },
  5431. "require": {
  5432. "php": "^5.6 || ^7.0"
  5433. },
  5434. "require-dev": {
  5435. "athletic/athletic": "^0.1",
  5436. "container-interop/container-interop": "^1.1.0",
  5437. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5438. "zendframework/zend-coding-standard": "~1.0.0",
  5439. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  5440. },
  5441. "suggest": {
  5442. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  5443. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  5444. },
  5445. "type": "library",
  5446. "extra": {
  5447. "branch-alias": {
  5448. "dev-master": "3.2-dev",
  5449. "dev-develop": "3.3-dev"
  5450. }
  5451. },
  5452. "autoload": {
  5453. "psr-4": {
  5454. "Zend\\EventManager\\": "src/"
  5455. }
  5456. },
  5457. "notification-url": "https://packagist.org/downloads/",
  5458. "license": [
  5459. "BSD-3-Clause"
  5460. ],
  5461. "description": "Trigger and listen to events within a PHP application",
  5462. "homepage": "https://github.com/zendframework/zend-eventmanager",
  5463. "keywords": [
  5464. "event",
  5465. "eventmanager",
  5466. "events",
  5467. "zf2"
  5468. ],
  5469. "support": {
  5470. "issues": "https://github.com/zendframework/zend-eventmanager/issues",
  5471. "source": "https://github.com/zendframework/zend-eventmanager/tree/master"
  5472. },
  5473. "abandoned": "laminas/laminas-eventmanager",
  5474. "time": "2018-04-25T15:33:34+00:00"
  5475. },
  5476. {
  5477. "name": "zendframework/zend-json",
  5478. "version": "3.1.2",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://github.com/zendframework/zend-json.git",
  5482. "reference": "e9ddb1192d93fe7fff846ac895249c39db75132b"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/e9ddb1192d93fe7fff846ac895249c39db75132b",
  5487. "reference": "e9ddb1192d93fe7fff846ac895249c39db75132b",
  5488. "shasum": ""
  5489. },
  5490. "require": {
  5491. "php": "^5.6 || ^7.0"
  5492. },
  5493. "require-dev": {
  5494. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  5495. "zendframework/zend-coding-standard": "~1.0.0",
  5496. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  5497. },
  5498. "suggest": {
  5499. "zendframework/zend-json-server": "For implementing JSON-RPC servers",
  5500. "zendframework/zend-xml2json": "For converting XML documents to JSON"
  5501. },
  5502. "type": "library",
  5503. "extra": {
  5504. "branch-alias": {
  5505. "dev-master": "3.1.x-dev",
  5506. "dev-develop": "3.2.x-dev"
  5507. }
  5508. },
  5509. "autoload": {
  5510. "psr-4": {
  5511. "Zend\\Json\\": "src/"
  5512. }
  5513. },
  5514. "notification-url": "https://packagist.org/downloads/",
  5515. "license": [
  5516. "BSD-3-Clause"
  5517. ],
  5518. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  5519. "keywords": [
  5520. "ZendFramework",
  5521. "json",
  5522. "zf"
  5523. ],
  5524. "support": {
  5525. "chat": "https://zendframework-slack.herokuapp.com",
  5526. "docs": "https://docs.zendframework.com/zend-json/",
  5527. "forum": "https://discourse.zendframework.com/c/questions/components",
  5528. "issues": "https://github.com/zendframework/zend-json/issues",
  5529. "rss": "https://github.com/zendframework/zend-json/releases.atom",
  5530. "source": "https://github.com/zendframework/zend-json"
  5531. },
  5532. "abandoned": "laminas/laminas-json",
  5533. "time": "2019-10-09T13:56:13+00:00"
  5534. },
  5535. {
  5536. "name": "zendframework/zend-loader",
  5537. "version": "2.6.1",
  5538. "source": {
  5539. "type": "git",
  5540. "url": "https://github.com/zendframework/zend-loader.git",
  5541. "reference": "91da574d29b58547385b2298c020b257310898c6"
  5542. },
  5543. "dist": {
  5544. "type": "zip",
  5545. "url": "https://api.github.com/repos/zendframework/zend-loader/zipball/91da574d29b58547385b2298c020b257310898c6",
  5546. "reference": "91da574d29b58547385b2298c020b257310898c6",
  5547. "shasum": ""
  5548. },
  5549. "require": {
  5550. "php": "^5.6 || ^7.0"
  5551. },
  5552. "require-dev": {
  5553. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  5554. "zendframework/zend-coding-standard": "~1.0.0"
  5555. },
  5556. "type": "library",
  5557. "extra": {
  5558. "branch-alias": {
  5559. "dev-master": "2.6.x-dev",
  5560. "dev-develop": "2.7.x-dev"
  5561. }
  5562. },
  5563. "autoload": {
  5564. "psr-4": {
  5565. "Zend\\Loader\\": "src/"
  5566. }
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "BSD-3-Clause"
  5571. ],
  5572. "description": "Autoloading and plugin loading strategies",
  5573. "keywords": [
  5574. "ZendFramework",
  5575. "loader",
  5576. "zf"
  5577. ],
  5578. "support": {
  5579. "chat": "https://zendframework-slack.herokuapp.com",
  5580. "docs": "https://docs.zendframework.com/zend-loader/",
  5581. "forum": "https://discourse.zendframework.com/c/questions/components",
  5582. "issues": "https://github.com/zendframework/zend-loader/issues",
  5583. "rss": "https://github.com/zendframework/zend-loader/releases.atom",
  5584. "source": "https://github.com/zendframework/zend-loader"
  5585. },
  5586. "abandoned": "laminas/laminas-loader",
  5587. "time": "2019-09-04T19:38:14+00:00"
  5588. },
  5589. {
  5590. "name": "zendframework/zend-modulemanager",
  5591. "version": "2.8.4",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/zendframework/zend-modulemanager.git",
  5595. "reference": "b2596d24b9a4e36a3cd114d35d3ad0918db9a243"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/zendframework/zend-modulemanager/zipball/b2596d24b9a4e36a3cd114d35d3ad0918db9a243",
  5600. "reference": "b2596d24b9a4e36a3cd114d35d3ad0918db9a243",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "php": "^5.6 || ^7.0",
  5605. "zendframework/zend-config": "^3.1 || ^2.6",
  5606. "zendframework/zend-eventmanager": "^3.2 || ^2.6.3",
  5607. "zendframework/zend-stdlib": "^3.1 || ^2.7"
  5608. },
  5609. "require-dev": {
  5610. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.16",
  5611. "zendframework/zend-coding-standard": "~1.0.0",
  5612. "zendframework/zend-console": "^2.6",
  5613. "zendframework/zend-di": "^2.6",
  5614. "zendframework/zend-loader": "^2.5",
  5615. "zendframework/zend-mvc": "^3.0 || ^2.7",
  5616. "zendframework/zend-servicemanager": "^3.0.3 || ^2.7.5"
  5617. },
  5618. "suggest": {
  5619. "zendframework/zend-console": "Zend\\Console component",
  5620. "zendframework/zend-loader": "Zend\\Loader component if you are not using Composer autoloading for your modules",
  5621. "zendframework/zend-mvc": "Zend\\Mvc component",
  5622. "zendframework/zend-servicemanager": "Zend\\ServiceManager component"
  5623. },
  5624. "type": "library",
  5625. "extra": {
  5626. "branch-alias": {
  5627. "dev-master": "2.8.x-dev",
  5628. "dev-develop": "2.9.x-dev"
  5629. }
  5630. },
  5631. "autoload": {
  5632. "psr-4": {
  5633. "Zend\\ModuleManager\\": "src/"
  5634. }
  5635. },
  5636. "notification-url": "https://packagist.org/downloads/",
  5637. "license": [
  5638. "BSD-3-Clause"
  5639. ],
  5640. "description": "Modular application system for zend-mvc applications",
  5641. "keywords": [
  5642. "ZendFramework",
  5643. "modulemanager",
  5644. "zf"
  5645. ],
  5646. "support": {
  5647. "chat": "https://zendframework-slack.herokuapp.com",
  5648. "docs": "https://docs.zendframework.com/zend-modulemanager/",
  5649. "forum": "https://discourse.zendframework.com/c/questions/components",
  5650. "issues": "https://github.com/zendframework/zend-modulemanager/issues",
  5651. "rss": "https://github.com/zendframework/zend-modulemanager/releases.atom",
  5652. "source": "https://github.com/zendframework/zend-modulemanager"
  5653. },
  5654. "abandoned": "laminas/laminas-modulemanager",
  5655. "time": "2019-10-28T13:29:38+00:00"
  5656. },
  5657. {
  5658. "name": "zendframework/zend-servicemanager",
  5659. "version": "2.7.11",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/zendframework/zend-servicemanager.git",
  5663. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5668. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5669. "shasum": ""
  5670. },
  5671. "require": {
  5672. "container-interop/container-interop": "~1.0",
  5673. "php": "^5.5 || ^7.0"
  5674. },
  5675. "require-dev": {
  5676. "athletic/athletic": "dev-master",
  5677. "fabpot/php-cs-fixer": "1.7.*",
  5678. "phpunit/phpunit": "~4.0",
  5679. "zendframework/zend-di": "~2.5",
  5680. "zendframework/zend-mvc": "~2.5"
  5681. },
  5682. "suggest": {
  5683. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  5684. "zendframework/zend-di": "Zend\\Di component"
  5685. },
  5686. "type": "library",
  5687. "extra": {
  5688. "branch-alias": {
  5689. "dev-master": "2.7-dev",
  5690. "dev-develop": "3.0-dev"
  5691. }
  5692. },
  5693. "autoload": {
  5694. "psr-4": {
  5695. "Zend\\ServiceManager\\": "src/"
  5696. }
  5697. },
  5698. "notification-url": "https://packagist.org/downloads/",
  5699. "license": [
  5700. "BSD-3-Clause"
  5701. ],
  5702. "homepage": "https://github.com/zendframework/zend-servicemanager",
  5703. "keywords": [
  5704. "servicemanager",
  5705. "zf2"
  5706. ],
  5707. "support": {
  5708. "issues": "https://github.com/zendframework/zend-servicemanager/issues",
  5709. "source": "https://github.com/zendframework/zend-servicemanager/tree/release-2.7.11"
  5710. },
  5711. "abandoned": "laminas/laminas-servicemanager",
  5712. "time": "2018-06-22T14:49:54+00:00"
  5713. },
  5714. {
  5715. "name": "zendframework/zend-stdlib",
  5716. "version": "3.2.1",
  5717. "source": {
  5718. "type": "git",
  5719. "url": "https://github.com/zendframework/zend-stdlib.git",
  5720. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  5721. },
  5722. "dist": {
  5723. "type": "zip",
  5724. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  5725. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  5726. "shasum": ""
  5727. },
  5728. "require": {
  5729. "php": "^5.6 || ^7.0"
  5730. },
  5731. "require-dev": {
  5732. "phpbench/phpbench": "^0.13",
  5733. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5734. "zendframework/zend-coding-standard": "~1.0.0"
  5735. },
  5736. "type": "library",
  5737. "extra": {
  5738. "branch-alias": {
  5739. "dev-master": "3.2.x-dev",
  5740. "dev-develop": "3.3.x-dev"
  5741. }
  5742. },
  5743. "autoload": {
  5744. "psr-4": {
  5745. "Zend\\Stdlib\\": "src/"
  5746. }
  5747. },
  5748. "notification-url": "https://packagist.org/downloads/",
  5749. "license": [
  5750. "BSD-3-Clause"
  5751. ],
  5752. "description": "SPL extensions, array utilities, error handlers, and more",
  5753. "keywords": [
  5754. "ZendFramework",
  5755. "stdlib",
  5756. "zf"
  5757. ],
  5758. "support": {
  5759. "docs": "https://docs.zendframework.com/zend-stdlib/",
  5760. "forum": "https://discourse.zendframework.com/c/questions/components",
  5761. "issues": "https://github.com/zendframework/zend-stdlib/issues",
  5762. "rss": "https://github.com/zendframework/zend-stdlib/releases.atom",
  5763. "slack": "https://zendframework-slack.herokuapp.com",
  5764. "source": "https://github.com/zendframework/zend-stdlib"
  5765. },
  5766. "abandoned": "laminas/laminas-stdlib",
  5767. "time": "2018-08-28T21:34:05+00:00"
  5768. },
  5769. {
  5770. "name": "zendframework/zend-view",
  5771. "version": "2.11.4",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://github.com/zendframework/zend-view.git",
  5775. "reference": "a8b1b2d9b52e191539be861a6529f8c8a0c06b9d"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://api.github.com/repos/zendframework/zend-view/zipball/a8b1b2d9b52e191539be861a6529f8c8a0c06b9d",
  5780. "reference": "a8b1b2d9b52e191539be861a6529f8c8a0c06b9d",
  5781. "shasum": ""
  5782. },
  5783. "require": {
  5784. "php": "^5.6 || ^7.0",
  5785. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  5786. "zendframework/zend-json": "^2.6.1 || ^3.0",
  5787. "zendframework/zend-loader": "^2.5",
  5788. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  5789. },
  5790. "require-dev": {
  5791. "phpunit/phpunit": "^5.7.15 || ^6.0.8",
  5792. "zendframework/zend-authentication": "^2.5",
  5793. "zendframework/zend-cache": "^2.6.1",
  5794. "zendframework/zend-coding-standard": "~1.0.0",
  5795. "zendframework/zend-config": "^2.6",
  5796. "zendframework/zend-console": "^2.6",
  5797. "zendframework/zend-escaper": "^2.5",
  5798. "zendframework/zend-feed": "^2.7",
  5799. "zendframework/zend-filter": "^2.6.1",
  5800. "zendframework/zend-http": "^2.5.4",
  5801. "zendframework/zend-i18n": "^2.6",
  5802. "zendframework/zend-log": "^2.7",
  5803. "zendframework/zend-modulemanager": "^2.7.1",
  5804. "zendframework/zend-mvc": "^2.7.14 || ^3.0",
  5805. "zendframework/zend-navigation": "^2.5",
  5806. "zendframework/zend-paginator": "^2.5",
  5807. "zendframework/zend-permissions-acl": "^2.6",
  5808. "zendframework/zend-router": "^3.0.1",
  5809. "zendframework/zend-serializer": "^2.6.1",
  5810. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  5811. "zendframework/zend-session": "^2.8.1",
  5812. "zendframework/zend-uri": "^2.5"
  5813. },
  5814. "suggest": {
  5815. "zendframework/zend-authentication": "Zend\\Authentication component",
  5816. "zendframework/zend-escaper": "Zend\\Escaper component",
  5817. "zendframework/zend-feed": "Zend\\Feed component",
  5818. "zendframework/zend-filter": "Zend\\Filter component",
  5819. "zendframework/zend-http": "Zend\\Http component",
  5820. "zendframework/zend-i18n": "Zend\\I18n component",
  5821. "zendframework/zend-mvc": "Zend\\Mvc component",
  5822. "zendframework/zend-mvc-plugin-flashmessenger": "zend-mvc-plugin-flashmessenger component, if you want to use the FlashMessenger view helper with zend-mvc versions 3 and up",
  5823. "zendframework/zend-navigation": "Zend\\Navigation component",
  5824. "zendframework/zend-paginator": "Zend\\Paginator component",
  5825. "zendframework/zend-permissions-acl": "Zend\\Permissions\\Acl component",
  5826. "zendframework/zend-servicemanager": "Zend\\ServiceManager component",
  5827. "zendframework/zend-uri": "Zend\\Uri component"
  5828. },
  5829. "bin": [
  5830. "bin/templatemap_generator.php"
  5831. ],
  5832. "type": "library",
  5833. "extra": {
  5834. "branch-alias": {
  5835. "dev-master": "2.11.x-dev",
  5836. "dev-develop": "2.12.x-dev"
  5837. }
  5838. },
  5839. "autoload": {
  5840. "psr-4": {
  5841. "Zend\\View\\": "src/"
  5842. }
  5843. },
  5844. "notification-url": "https://packagist.org/downloads/",
  5845. "license": [
  5846. "BSD-3-Clause"
  5847. ],
  5848. "description": "Flexible view layer supporting and providing multiple view layers, helpers, and more",
  5849. "keywords": [
  5850. "ZendFramework",
  5851. "view",
  5852. "zf"
  5853. ],
  5854. "support": {
  5855. "chat": "https://zendframework-slack.herokuapp.com",
  5856. "docs": "https://docs.zendframework.com/zend-view/",
  5857. "forum": "https://discourse.zendframework.com/c/questions/components",
  5858. "issues": "https://github.com/zendframework/zend-view/issues",
  5859. "rss": "https://github.com/zendframework/zend-view/releases.atom",
  5860. "source": "https://github.com/zendframework/zend-view"
  5861. },
  5862. "abandoned": "laminas/laminas-view",
  5863. "time": "2019-12-04T08:40:50+00:00"
  5864. }
  5865. ],
  5866. "aliases": [],
  5867. "minimum-stability": "stable",
  5868. "stability-flags": [],
  5869. "prefer-stable": false,
  5870. "prefer-lowest": false,
  5871. "platform": {
  5872. "php": ">=7.1",
  5873. "ext-mbstring": "*"
  5874. },
  5875. "platform-dev": [],
  5876. "plugin-api-version": "2.1.0"
  5877. }