composer.lock 213 KB

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