composer.lock 208 KB

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