composer.lock 204 KB

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