composer.lock 216 KB

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