composer.lock 269 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677
  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": "36dce3c2a72bd07cacbd5e9f38e568f4",
  8. "packages": [
  9. {
  10. "name": "alchemy/binary-driver",
  11. "version": "v2.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  15. "reference": "6ccde0e19e81e54da77b08da1a176d43e089f3a3"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/6ccde0e19e81e54da77b08da1a176d43e089f3a3",
  20. "reference": "6ccde0e19e81e54da77b08da1a176d43e089f3a3",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "evenement/evenement": "^2.0|^1.0",
  25. "monolog/monolog": "^1.3",
  26. "php": ">=5.5",
  27. "psr/log": "^1.0",
  28. "symfony/process": "^2.3|^3.0|^4.0"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^4.0|^5.0"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-0": {
  36. "Alchemy": "src"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "MIT"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Romain Neutron",
  46. "email": "imprec@gmail.com",
  47. "homepage": "http://www.lickmychip.com/"
  48. },
  49. {
  50. "name": "Phraseanet Team",
  51. "email": "info@alchemy.fr",
  52. "homepage": "http://www.phraseanet.com/"
  53. },
  54. {
  55. "name": "Nicolas Le Goff",
  56. "email": "legoff.n@gmail.com"
  57. },
  58. {
  59. "name": "Jens Hausdorf",
  60. "email": "mail@jens-hausdorf.de",
  61. "homepage": "https://jens-hausdorf.de",
  62. "role": "Maintainer"
  63. }
  64. ],
  65. "description": "A set of tools to build binary drivers",
  66. "keywords": [
  67. "binary",
  68. "driver"
  69. ],
  70. "time": "2018-08-06T10:18:33+00:00"
  71. },
  72. {
  73. "name": "aws/aws-sdk-php",
  74. "version": "3.93.3",
  75. "source": {
  76. "type": "git",
  77. "url": "https://github.com/aws/aws-sdk-php.git",
  78. "reference": "874c1040edab52df3873157aa54ea51833d48c0e"
  79. },
  80. "dist": {
  81. "type": "zip",
  82. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/874c1040edab52df3873157aa54ea51833d48c0e",
  83. "reference": "874c1040edab52df3873157aa54ea51833d48c0e",
  84. "shasum": ""
  85. },
  86. "require": {
  87. "ext-json": "*",
  88. "ext-pcre": "*",
  89. "ext-simplexml": "*",
  90. "guzzlehttp/guzzle": "^5.3.3|^6.2.1",
  91. "guzzlehttp/promises": "~1.0",
  92. "guzzlehttp/psr7": "^1.4.1",
  93. "mtdowling/jmespath.php": "~2.2",
  94. "php": ">=5.5"
  95. },
  96. "require-dev": {
  97. "andrewsville/php-token-reflection": "^1.4",
  98. "aws/aws-php-sns-message-validator": "~1.0",
  99. "behat/behat": "~3.0",
  100. "doctrine/cache": "~1.4",
  101. "ext-dom": "*",
  102. "ext-openssl": "*",
  103. "ext-pcntl": "*",
  104. "ext-sockets": "*",
  105. "nette/neon": "^2.3",
  106. "phpunit/phpunit": "^4.8.35|^5.4.3",
  107. "psr/cache": "^1.0",
  108. "psr/simple-cache": "^1.0"
  109. },
  110. "suggest": {
  111. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  112. "doctrine/cache": "To use the DoctrineCacheAdapter",
  113. "ext-curl": "To send requests using cURL",
  114. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  115. "ext-sockets": "To use client-side monitoring"
  116. },
  117. "type": "library",
  118. "extra": {
  119. "branch-alias": {
  120. "dev-master": "3.0-dev"
  121. }
  122. },
  123. "autoload": {
  124. "psr-4": {
  125. "Aws\\": "src/"
  126. },
  127. "files": [
  128. "src/functions.php"
  129. ]
  130. },
  131. "notification-url": "https://packagist.org/downloads/",
  132. "license": [
  133. "Apache-2.0"
  134. ],
  135. "authors": [
  136. {
  137. "name": "Amazon Web Services",
  138. "homepage": "http://aws.amazon.com"
  139. }
  140. ],
  141. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  142. "homepage": "http://aws.amazon.com/sdkforphp",
  143. "keywords": [
  144. "amazon",
  145. "aws",
  146. "cloud",
  147. "dynamodb",
  148. "ec2",
  149. "glacier",
  150. "s3",
  151. "sdk"
  152. ],
  153. "time": "2019-05-03T18:07:06+00:00"
  154. },
  155. {
  156. "name": "beyondcode/laravel-self-diagnosis",
  157. "version": "1.2.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/beyondcode/laravel-self-diagnosis.git",
  161. "reference": "0d9a06d774a8cc20806879a2e831075b17d8f0ac"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/beyondcode/laravel-self-diagnosis/zipball/0d9a06d774a8cc20806879a2e831075b17d8f0ac",
  166. "reference": "0d9a06d774a8cc20806879a2e831075b17d8f0ac",
  167. "shasum": ""
  168. },
  169. "require": {
  170. "composer/semver": "^1.4",
  171. "geerlingguy/ping": "^1.1",
  172. "illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
  173. "php": "^7.1",
  174. "vlucas/phpdotenv": "~2.5|~3.3"
  175. },
  176. "require-dev": {
  177. "larapack/dd": "^1.0",
  178. "mockery/mockery": "^1.0",
  179. "orchestra/testbench": "~3.5|~3.8",
  180. "phpunit/phpunit": "^7.0",
  181. "predis/predis": "^1.1",
  182. "scrutinizer/ocular": "^1.5"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "laravel": {
  187. "providers": [
  188. "BeyondCode\\SelfDiagnosis\\SelfDiagnosisServiceProvider"
  189. ]
  190. }
  191. },
  192. "autoload": {
  193. "psr-4": {
  194. "BeyondCode\\SelfDiagnosis\\": "src"
  195. }
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Marcel Pociot",
  204. "email": "marcel@beyondco.de",
  205. "homepage": "https://beyondcode.de",
  206. "role": "Developer"
  207. }
  208. ],
  209. "description": "Perform various self diagnosis tests on your Laravel application.",
  210. "homepage": "https://github.com/beyondcode/laravel-self-diagnosis",
  211. "keywords": [
  212. "beyondcode",
  213. "laravel-self-diagnosis"
  214. ],
  215. "time": "2019-03-20T15:23:20+00:00"
  216. },
  217. {
  218. "name": "cakephp/chronos",
  219. "version": "1.2.5",
  220. "source": {
  221. "type": "git",
  222. "url": "https://github.com/cakephp/chronos.git",
  223. "reference": "8a2b005a2db173e1b5493002afb8e1e13c71a62a"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/cakephp/chronos/zipball/8a2b005a2db173e1b5493002afb8e1e13c71a62a",
  228. "reference": "8a2b005a2db173e1b5493002afb8e1e13c71a62a",
  229. "shasum": ""
  230. },
  231. "require": {
  232. "php": "^5.5.9|^7"
  233. },
  234. "require-dev": {
  235. "athletic/athletic": "~0.1",
  236. "cakephp/cakephp-codesniffer": "^3.0",
  237. "phpbench/phpbench": "@dev",
  238. "phpstan/phpstan": "^0.6.4",
  239. "phpunit/phpunit": "<6.0 || ^7.0"
  240. },
  241. "type": "library",
  242. "autoload": {
  243. "psr-4": {
  244. "Cake\\Chronos\\": "src/"
  245. },
  246. "files": [
  247. "src/carbon_compat.php"
  248. ]
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "MIT"
  253. ],
  254. "authors": [
  255. {
  256. "name": "Brian Nesbitt",
  257. "email": "brian@nesbot.com",
  258. "homepage": "http://nesbot.com"
  259. },
  260. {
  261. "name": "The CakePHP Team",
  262. "homepage": "http://cakephp.org"
  263. }
  264. ],
  265. "description": "A simple API extension for DateTime.",
  266. "homepage": "http://cakephp.org",
  267. "keywords": [
  268. "date",
  269. "datetime",
  270. "time"
  271. ],
  272. "time": "2019-04-23T19:00:57+00:00"
  273. },
  274. {
  275. "name": "composer/semver",
  276. "version": "1.5.0",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/composer/semver.git",
  280. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  285. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "php": "^5.3.2 || ^7.0"
  290. },
  291. "require-dev": {
  292. "phpunit/phpunit": "^4.5 || ^5.0.5",
  293. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  294. },
  295. "type": "library",
  296. "extra": {
  297. "branch-alias": {
  298. "dev-master": "1.x-dev"
  299. }
  300. },
  301. "autoload": {
  302. "psr-4": {
  303. "Composer\\Semver\\": "src"
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Nils Adermann",
  313. "email": "naderman@naderman.de",
  314. "homepage": "http://www.naderman.de"
  315. },
  316. {
  317. "name": "Jordi Boggiano",
  318. "email": "j.boggiano@seld.be",
  319. "homepage": "http://seld.be"
  320. },
  321. {
  322. "name": "Rob Bast",
  323. "email": "rob.bast@gmail.com",
  324. "homepage": "http://robbast.nl"
  325. }
  326. ],
  327. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  328. "keywords": [
  329. "semantic",
  330. "semver",
  331. "validation",
  332. "versioning"
  333. ],
  334. "time": "2019-03-19T17:25:45+00:00"
  335. },
  336. {
  337. "name": "defuse/php-encryption",
  338. "version": "v2.2.1",
  339. "source": {
  340. "type": "git",
  341. "url": "https://github.com/defuse/php-encryption.git",
  342. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
  343. },
  344. "dist": {
  345. "type": "zip",
  346. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
  347. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
  348. "shasum": ""
  349. },
  350. "require": {
  351. "ext-openssl": "*",
  352. "paragonie/random_compat": ">= 2",
  353. "php": ">=5.4.0"
  354. },
  355. "require-dev": {
  356. "nikic/php-parser": "^2.0|^3.0|^4.0",
  357. "phpunit/phpunit": "^4|^5"
  358. },
  359. "bin": [
  360. "bin/generate-defuse-key"
  361. ],
  362. "type": "library",
  363. "autoload": {
  364. "psr-4": {
  365. "Defuse\\Crypto\\": "src"
  366. }
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "MIT"
  371. ],
  372. "authors": [
  373. {
  374. "name": "Taylor Hornby",
  375. "email": "taylor@defuse.ca",
  376. "homepage": "https://defuse.ca/"
  377. },
  378. {
  379. "name": "Scott Arciszewski",
  380. "email": "info@paragonie.com",
  381. "homepage": "https://paragonie.com"
  382. }
  383. ],
  384. "description": "Secure PHP Encryption Library",
  385. "keywords": [
  386. "aes",
  387. "authenticated encryption",
  388. "cipher",
  389. "crypto",
  390. "cryptography",
  391. "encrypt",
  392. "encryption",
  393. "openssl",
  394. "security",
  395. "symmetric key cryptography"
  396. ],
  397. "time": "2018-07-24T23:27:56+00:00"
  398. },
  399. {
  400. "name": "dnoegel/php-xdg-base-dir",
  401. "version": "0.1",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  405. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  410. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  411. "shasum": ""
  412. },
  413. "require": {
  414. "php": ">=5.3.2"
  415. },
  416. "require-dev": {
  417. "phpunit/phpunit": "@stable"
  418. },
  419. "type": "project",
  420. "autoload": {
  421. "psr-4": {
  422. "XdgBaseDir\\": "src/"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "MIT"
  428. ],
  429. "description": "implementation of xdg base directory specification for php",
  430. "time": "2014-10-24T07:27:01+00:00"
  431. },
  432. {
  433. "name": "doctrine/cache",
  434. "version": "v1.8.0",
  435. "source": {
  436. "type": "git",
  437. "url": "https://github.com/doctrine/cache.git",
  438. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  439. },
  440. "dist": {
  441. "type": "zip",
  442. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  443. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  444. "shasum": ""
  445. },
  446. "require": {
  447. "php": "~7.1"
  448. },
  449. "conflict": {
  450. "doctrine/common": ">2.2,<2.4"
  451. },
  452. "require-dev": {
  453. "alcaeus/mongo-php-adapter": "^1.1",
  454. "doctrine/coding-standard": "^4.0",
  455. "mongodb/mongodb": "^1.1",
  456. "phpunit/phpunit": "^7.0",
  457. "predis/predis": "~1.0"
  458. },
  459. "suggest": {
  460. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  461. },
  462. "type": "library",
  463. "extra": {
  464. "branch-alias": {
  465. "dev-master": "1.8.x-dev"
  466. }
  467. },
  468. "autoload": {
  469. "psr-4": {
  470. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "MIT"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Roman Borschel",
  480. "email": "roman@code-factory.org"
  481. },
  482. {
  483. "name": "Benjamin Eberlei",
  484. "email": "kontakt@beberlei.de"
  485. },
  486. {
  487. "name": "Guilherme Blanco",
  488. "email": "guilhermeblanco@gmail.com"
  489. },
  490. {
  491. "name": "Jonathan Wage",
  492. "email": "jonwage@gmail.com"
  493. },
  494. {
  495. "name": "Johannes Schmitt",
  496. "email": "schmittjoh@gmail.com"
  497. }
  498. ],
  499. "description": "Caching library offering an object-oriented API for many cache backends",
  500. "homepage": "https://www.doctrine-project.org",
  501. "keywords": [
  502. "cache",
  503. "caching"
  504. ],
  505. "time": "2018-08-21T18:01:43+00:00"
  506. },
  507. {
  508. "name": "doctrine/dbal",
  509. "version": "v2.9.2",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/doctrine/dbal.git",
  513. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  518. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "doctrine/cache": "^1.0",
  523. "doctrine/event-manager": "^1.0",
  524. "ext-pdo": "*",
  525. "php": "^7.1"
  526. },
  527. "require-dev": {
  528. "doctrine/coding-standard": "^5.0",
  529. "jetbrains/phpstorm-stubs": "^2018.1.2",
  530. "phpstan/phpstan": "^0.10.1",
  531. "phpunit/phpunit": "^7.4",
  532. "symfony/console": "^2.0.5|^3.0|^4.0",
  533. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  534. },
  535. "suggest": {
  536. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  537. },
  538. "bin": [
  539. "bin/doctrine-dbal"
  540. ],
  541. "type": "library",
  542. "extra": {
  543. "branch-alias": {
  544. "dev-master": "2.9.x-dev",
  545. "dev-develop": "3.0.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Roman Borschel",
  560. "email": "roman@code-factory.org"
  561. },
  562. {
  563. "name": "Benjamin Eberlei",
  564. "email": "kontakt@beberlei.de"
  565. },
  566. {
  567. "name": "Guilherme Blanco",
  568. "email": "guilhermeblanco@gmail.com"
  569. },
  570. {
  571. "name": "Jonathan Wage",
  572. "email": "jonwage@gmail.com"
  573. }
  574. ],
  575. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  576. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  577. "keywords": [
  578. "abstraction",
  579. "database",
  580. "dbal",
  581. "mysql",
  582. "persistence",
  583. "pgsql",
  584. "php",
  585. "queryobject"
  586. ],
  587. "time": "2018-12-31T03:27:51+00:00"
  588. },
  589. {
  590. "name": "doctrine/event-manager",
  591. "version": "v1.0.0",
  592. "source": {
  593. "type": "git",
  594. "url": "https://github.com/doctrine/event-manager.git",
  595. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  596. },
  597. "dist": {
  598. "type": "zip",
  599. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  600. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  601. "shasum": ""
  602. },
  603. "require": {
  604. "php": "^7.1"
  605. },
  606. "conflict": {
  607. "doctrine/common": "<2.9@dev"
  608. },
  609. "require-dev": {
  610. "doctrine/coding-standard": "^4.0",
  611. "phpunit/phpunit": "^7.0"
  612. },
  613. "type": "library",
  614. "extra": {
  615. "branch-alias": {
  616. "dev-master": "1.0.x-dev"
  617. }
  618. },
  619. "autoload": {
  620. "psr-4": {
  621. "Doctrine\\Common\\": "lib/Doctrine/Common"
  622. }
  623. },
  624. "notification-url": "https://packagist.org/downloads/",
  625. "license": [
  626. "MIT"
  627. ],
  628. "authors": [
  629. {
  630. "name": "Roman Borschel",
  631. "email": "roman@code-factory.org"
  632. },
  633. {
  634. "name": "Benjamin Eberlei",
  635. "email": "kontakt@beberlei.de"
  636. },
  637. {
  638. "name": "Guilherme Blanco",
  639. "email": "guilhermeblanco@gmail.com"
  640. },
  641. {
  642. "name": "Jonathan Wage",
  643. "email": "jonwage@gmail.com"
  644. },
  645. {
  646. "name": "Johannes Schmitt",
  647. "email": "schmittjoh@gmail.com"
  648. },
  649. {
  650. "name": "Marco Pivetta",
  651. "email": "ocramius@gmail.com"
  652. }
  653. ],
  654. "description": "Doctrine Event Manager component",
  655. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  656. "keywords": [
  657. "event",
  658. "eventdispatcher",
  659. "eventmanager"
  660. ],
  661. "time": "2018-06-11T11:59:03+00:00"
  662. },
  663. {
  664. "name": "doctrine/inflector",
  665. "version": "v1.3.0",
  666. "source": {
  667. "type": "git",
  668. "url": "https://github.com/doctrine/inflector.git",
  669. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  670. },
  671. "dist": {
  672. "type": "zip",
  673. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  674. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  675. "shasum": ""
  676. },
  677. "require": {
  678. "php": "^7.1"
  679. },
  680. "require-dev": {
  681. "phpunit/phpunit": "^6.2"
  682. },
  683. "type": "library",
  684. "extra": {
  685. "branch-alias": {
  686. "dev-master": "1.3.x-dev"
  687. }
  688. },
  689. "autoload": {
  690. "psr-4": {
  691. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  692. }
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Roman Borschel",
  701. "email": "roman@code-factory.org"
  702. },
  703. {
  704. "name": "Benjamin Eberlei",
  705. "email": "kontakt@beberlei.de"
  706. },
  707. {
  708. "name": "Guilherme Blanco",
  709. "email": "guilhermeblanco@gmail.com"
  710. },
  711. {
  712. "name": "Jonathan Wage",
  713. "email": "jonwage@gmail.com"
  714. },
  715. {
  716. "name": "Johannes Schmitt",
  717. "email": "schmittjoh@gmail.com"
  718. }
  719. ],
  720. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  721. "homepage": "http://www.doctrine-project.org",
  722. "keywords": [
  723. "inflection",
  724. "pluralize",
  725. "singularize",
  726. "string"
  727. ],
  728. "time": "2018-01-09T20:05:19+00:00"
  729. },
  730. {
  731. "name": "doctrine/lexer",
  732. "version": "v1.0.1",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/doctrine/lexer.git",
  736. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  741. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "php": ">=5.3.2"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "branch-alias": {
  750. "dev-master": "1.0.x-dev"
  751. }
  752. },
  753. "autoload": {
  754. "psr-0": {
  755. "Doctrine\\Common\\Lexer\\": "lib/"
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "MIT"
  761. ],
  762. "authors": [
  763. {
  764. "name": "Roman Borschel",
  765. "email": "roman@code-factory.org"
  766. },
  767. {
  768. "name": "Guilherme Blanco",
  769. "email": "guilhermeblanco@gmail.com"
  770. },
  771. {
  772. "name": "Johannes Schmitt",
  773. "email": "schmittjoh@gmail.com"
  774. }
  775. ],
  776. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  777. "homepage": "http://www.doctrine-project.org",
  778. "keywords": [
  779. "lexer",
  780. "parser"
  781. ],
  782. "time": "2014-09-09T13:34:57+00:00"
  783. },
  784. {
  785. "name": "dragonmantank/cron-expression",
  786. "version": "v2.3.0",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/dragonmantank/cron-expression.git",
  790. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  795. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "php": "^7.0"
  800. },
  801. "require-dev": {
  802. "phpunit/phpunit": "^6.4|^7.0"
  803. },
  804. "type": "library",
  805. "extra": {
  806. "branch-alias": {
  807. "dev-master": "2.3-dev"
  808. }
  809. },
  810. "autoload": {
  811. "psr-4": {
  812. "Cron\\": "src/Cron/"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "MIT"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Michael Dowling",
  822. "email": "mtdowling@gmail.com",
  823. "homepage": "https://github.com/mtdowling"
  824. },
  825. {
  826. "name": "Chris Tankersley",
  827. "email": "chris@ctankersley.com",
  828. "homepage": "https://github.com/dragonmantank"
  829. }
  830. ],
  831. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  832. "keywords": [
  833. "cron",
  834. "schedule"
  835. ],
  836. "time": "2019-03-31T00:38:28+00:00"
  837. },
  838. {
  839. "name": "egulias/email-validator",
  840. "version": "2.1.7",
  841. "source": {
  842. "type": "git",
  843. "url": "https://github.com/egulias/EmailValidator.git",
  844. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  845. },
  846. "dist": {
  847. "type": "zip",
  848. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  849. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  850. "shasum": ""
  851. },
  852. "require": {
  853. "doctrine/lexer": "^1.0.1",
  854. "php": ">= 5.5"
  855. },
  856. "require-dev": {
  857. "dominicsayers/isemail": "dev-master",
  858. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  859. "satooshi/php-coveralls": "^1.0.1"
  860. },
  861. "suggest": {
  862. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  863. },
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-master": "2.0.x-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "Egulias\\EmailValidator\\": "EmailValidator"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Eduardo Gulias Davis"
  882. }
  883. ],
  884. "description": "A library for validating emails against several RFCs",
  885. "homepage": "https://github.com/egulias/EmailValidator",
  886. "keywords": [
  887. "email",
  888. "emailvalidation",
  889. "emailvalidator",
  890. "validation",
  891. "validator"
  892. ],
  893. "time": "2018-12-04T22:38:24+00:00"
  894. },
  895. {
  896. "name": "erusev/parsedown",
  897. "version": "1.7.3",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/erusev/parsedown.git",
  901. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  906. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  907. "shasum": ""
  908. },
  909. "require": {
  910. "ext-mbstring": "*",
  911. "php": ">=5.3.0"
  912. },
  913. "require-dev": {
  914. "phpunit/phpunit": "^4.8.35"
  915. },
  916. "type": "library",
  917. "autoload": {
  918. "psr-0": {
  919. "Parsedown": ""
  920. }
  921. },
  922. "notification-url": "https://packagist.org/downloads/",
  923. "license": [
  924. "MIT"
  925. ],
  926. "authors": [
  927. {
  928. "name": "Emanuil Rusev",
  929. "email": "hello@erusev.com",
  930. "homepage": "http://erusev.com"
  931. }
  932. ],
  933. "description": "Parser for Markdown.",
  934. "homepage": "http://parsedown.org",
  935. "keywords": [
  936. "markdown",
  937. "parser"
  938. ],
  939. "time": "2019-03-17T18:48:37+00:00"
  940. },
  941. {
  942. "name": "evenement/evenement",
  943. "version": "v2.1.0",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/igorw/evenement.git",
  947. "reference": "6ba9a777870ab49f417e703229d53931ed40fd7a"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/igorw/evenement/zipball/6ba9a777870ab49f417e703229d53931ed40fd7a",
  952. "reference": "6ba9a777870ab49f417e703229d53931ed40fd7a",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "php": ">=5.4.0"
  957. },
  958. "require-dev": {
  959. "phpunit/phpunit": "^6.0||^5.7||^4.8.35"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-master": "2.0-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-0": {
  969. "Evenement": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Igor Wiedler",
  979. "email": "igor@wiedler.ch"
  980. }
  981. ],
  982. "description": "Événement is a very simple event dispatching library for PHP",
  983. "keywords": [
  984. "event-dispatcher",
  985. "event-emitter"
  986. ],
  987. "time": "2017-07-17T17:39:19+00:00"
  988. },
  989. {
  990. "name": "ezyang/htmlpurifier",
  991. "version": "v4.10.0",
  992. "source": {
  993. "type": "git",
  994. "url": "https://github.com/ezyang/htmlpurifier.git",
  995. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  996. },
  997. "dist": {
  998. "type": "zip",
  999. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  1000. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  1001. "shasum": ""
  1002. },
  1003. "require": {
  1004. "php": ">=5.2"
  1005. },
  1006. "require-dev": {
  1007. "simpletest/simpletest": "^1.1"
  1008. },
  1009. "type": "library",
  1010. "autoload": {
  1011. "psr-0": {
  1012. "HTMLPurifier": "library/"
  1013. },
  1014. "files": [
  1015. "library/HTMLPurifier.composer.php"
  1016. ]
  1017. },
  1018. "notification-url": "https://packagist.org/downloads/",
  1019. "license": [
  1020. "LGPL"
  1021. ],
  1022. "authors": [
  1023. {
  1024. "name": "Edward Z. Yang",
  1025. "email": "admin@htmlpurifier.org",
  1026. "homepage": "http://ezyang.com"
  1027. }
  1028. ],
  1029. "description": "Standards compliant HTML filter written in PHP",
  1030. "homepage": "http://htmlpurifier.org/",
  1031. "keywords": [
  1032. "html"
  1033. ],
  1034. "time": "2018-02-23T01:58:20+00:00"
  1035. },
  1036. {
  1037. "name": "fideloper/proxy",
  1038. "version": "4.1.0",
  1039. "source": {
  1040. "type": "git",
  1041. "url": "https://github.com/fideloper/TrustedProxy.git",
  1042. "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb"
  1043. },
  1044. "dist": {
  1045. "type": "zip",
  1046. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
  1047. "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
  1048. "shasum": ""
  1049. },
  1050. "require": {
  1051. "illuminate/contracts": "~5.0",
  1052. "php": ">=5.4.0"
  1053. },
  1054. "require-dev": {
  1055. "illuminate/http": "~5.6",
  1056. "mockery/mockery": "~1.0",
  1057. "phpunit/phpunit": "^6.0"
  1058. },
  1059. "type": "library",
  1060. "extra": {
  1061. "laravel": {
  1062. "providers": [
  1063. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1064. ]
  1065. }
  1066. },
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Fideloper\\Proxy\\": "src/"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "Chris Fidao",
  1079. "email": "fideloper@gmail.com"
  1080. }
  1081. ],
  1082. "description": "Set trusted proxies for Laravel",
  1083. "keywords": [
  1084. "load balancing",
  1085. "proxy",
  1086. "trusted proxy"
  1087. ],
  1088. "time": "2019-01-10T14:06:47+00:00"
  1089. },
  1090. {
  1091. "name": "firebase/php-jwt",
  1092. "version": "v5.0.0",
  1093. "source": {
  1094. "type": "git",
  1095. "url": "https://github.com/firebase/php-jwt.git",
  1096. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  1097. },
  1098. "dist": {
  1099. "type": "zip",
  1100. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1101. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1102. "shasum": ""
  1103. },
  1104. "require": {
  1105. "php": ">=5.3.0"
  1106. },
  1107. "require-dev": {
  1108. "phpunit/phpunit": " 4.8.35"
  1109. },
  1110. "type": "library",
  1111. "autoload": {
  1112. "psr-4": {
  1113. "Firebase\\JWT\\": "src"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "BSD-3-Clause"
  1119. ],
  1120. "authors": [
  1121. {
  1122. "name": "Neuman Vong",
  1123. "email": "neuman+pear@twilio.com",
  1124. "role": "Developer"
  1125. },
  1126. {
  1127. "name": "Anant Narayanan",
  1128. "email": "anant@php.net",
  1129. "role": "Developer"
  1130. }
  1131. ],
  1132. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1133. "homepage": "https://github.com/firebase/php-jwt",
  1134. "time": "2017-06-27T22:17:23+00:00"
  1135. },
  1136. {
  1137. "name": "geerlingguy/ping",
  1138. "version": "1.1.2",
  1139. "source": {
  1140. "type": "git",
  1141. "url": "https://github.com/geerlingguy/Ping.git",
  1142. "reference": "b16248c0a59a6555437744db8b78c0589cfc32f9"
  1143. },
  1144. "dist": {
  1145. "type": "zip",
  1146. "url": "https://api.github.com/repos/geerlingguy/Ping/zipball/b16248c0a59a6555437744db8b78c0589cfc32f9",
  1147. "reference": "b16248c0a59a6555437744db8b78c0589cfc32f9",
  1148. "shasum": ""
  1149. },
  1150. "type": "library",
  1151. "autoload": {
  1152. "classmap": [
  1153. "JJG/Ping.php"
  1154. ]
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Jeff Geerling",
  1163. "email": "jeff@jeffgeerling.com"
  1164. }
  1165. ],
  1166. "description": "A PHP class to ping hosts.",
  1167. "time": "2017-02-02T15:38:40+00:00"
  1168. },
  1169. {
  1170. "name": "guzzlehttp/guzzle",
  1171. "version": "6.3.3",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/guzzle/guzzle.git",
  1175. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1180. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "guzzlehttp/promises": "^1.0",
  1185. "guzzlehttp/psr7": "^1.4",
  1186. "php": ">=5.5"
  1187. },
  1188. "require-dev": {
  1189. "ext-curl": "*",
  1190. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1191. "psr/log": "^1.0"
  1192. },
  1193. "suggest": {
  1194. "psr/log": "Required for using the Log middleware"
  1195. },
  1196. "type": "library",
  1197. "extra": {
  1198. "branch-alias": {
  1199. "dev-master": "6.3-dev"
  1200. }
  1201. },
  1202. "autoload": {
  1203. "files": [
  1204. "src/functions_include.php"
  1205. ],
  1206. "psr-4": {
  1207. "GuzzleHttp\\": "src/"
  1208. }
  1209. },
  1210. "notification-url": "https://packagist.org/downloads/",
  1211. "license": [
  1212. "MIT"
  1213. ],
  1214. "authors": [
  1215. {
  1216. "name": "Michael Dowling",
  1217. "email": "mtdowling@gmail.com",
  1218. "homepage": "https://github.com/mtdowling"
  1219. }
  1220. ],
  1221. "description": "Guzzle is a PHP HTTP client library",
  1222. "homepage": "http://guzzlephp.org/",
  1223. "keywords": [
  1224. "client",
  1225. "curl",
  1226. "framework",
  1227. "http",
  1228. "http client",
  1229. "rest",
  1230. "web service"
  1231. ],
  1232. "time": "2018-04-22T15:46:56+00:00"
  1233. },
  1234. {
  1235. "name": "guzzlehttp/promises",
  1236. "version": "v1.3.1",
  1237. "source": {
  1238. "type": "git",
  1239. "url": "https://github.com/guzzle/promises.git",
  1240. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1241. },
  1242. "dist": {
  1243. "type": "zip",
  1244. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1245. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1246. "shasum": ""
  1247. },
  1248. "require": {
  1249. "php": ">=5.5.0"
  1250. },
  1251. "require-dev": {
  1252. "phpunit/phpunit": "^4.0"
  1253. },
  1254. "type": "library",
  1255. "extra": {
  1256. "branch-alias": {
  1257. "dev-master": "1.4-dev"
  1258. }
  1259. },
  1260. "autoload": {
  1261. "psr-4": {
  1262. "GuzzleHttp\\Promise\\": "src/"
  1263. },
  1264. "files": [
  1265. "src/functions_include.php"
  1266. ]
  1267. },
  1268. "notification-url": "https://packagist.org/downloads/",
  1269. "license": [
  1270. "MIT"
  1271. ],
  1272. "authors": [
  1273. {
  1274. "name": "Michael Dowling",
  1275. "email": "mtdowling@gmail.com",
  1276. "homepage": "https://github.com/mtdowling"
  1277. }
  1278. ],
  1279. "description": "Guzzle promises library",
  1280. "keywords": [
  1281. "promise"
  1282. ],
  1283. "time": "2016-12-20T10:07:11+00:00"
  1284. },
  1285. {
  1286. "name": "guzzlehttp/psr7",
  1287. "version": "1.5.2",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/guzzle/psr7.git",
  1291. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  1296. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  1297. "shasum": ""
  1298. },
  1299. "require": {
  1300. "php": ">=5.4.0",
  1301. "psr/http-message": "~1.0",
  1302. "ralouphie/getallheaders": "^2.0.5"
  1303. },
  1304. "provide": {
  1305. "psr/http-message-implementation": "1.0"
  1306. },
  1307. "require-dev": {
  1308. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1309. },
  1310. "type": "library",
  1311. "extra": {
  1312. "branch-alias": {
  1313. "dev-master": "1.5-dev"
  1314. }
  1315. },
  1316. "autoload": {
  1317. "psr-4": {
  1318. "GuzzleHttp\\Psr7\\": "src/"
  1319. },
  1320. "files": [
  1321. "src/functions_include.php"
  1322. ]
  1323. },
  1324. "notification-url": "https://packagist.org/downloads/",
  1325. "license": [
  1326. "MIT"
  1327. ],
  1328. "authors": [
  1329. {
  1330. "name": "Michael Dowling",
  1331. "email": "mtdowling@gmail.com",
  1332. "homepage": "https://github.com/mtdowling"
  1333. },
  1334. {
  1335. "name": "Tobias Schultze",
  1336. "homepage": "https://github.com/Tobion"
  1337. }
  1338. ],
  1339. "description": "PSR-7 message implementation that also provides common utility methods",
  1340. "keywords": [
  1341. "http",
  1342. "message",
  1343. "psr-7",
  1344. "request",
  1345. "response",
  1346. "stream",
  1347. "uri",
  1348. "url"
  1349. ],
  1350. "time": "2018-12-04T20:46:45+00:00"
  1351. },
  1352. {
  1353. "name": "intervention/image",
  1354. "version": "2.4.2",
  1355. "source": {
  1356. "type": "git",
  1357. "url": "https://github.com/Intervention/image.git",
  1358. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
  1359. },
  1360. "dist": {
  1361. "type": "zip",
  1362. "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
  1363. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
  1364. "shasum": ""
  1365. },
  1366. "require": {
  1367. "ext-fileinfo": "*",
  1368. "guzzlehttp/psr7": "~1.1",
  1369. "php": ">=5.4.0"
  1370. },
  1371. "require-dev": {
  1372. "mockery/mockery": "~0.9.2",
  1373. "phpunit/phpunit": "^4.8 || ^5.7"
  1374. },
  1375. "suggest": {
  1376. "ext-gd": "to use GD library based image processing.",
  1377. "ext-imagick": "to use Imagick based image processing.",
  1378. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1379. },
  1380. "type": "library",
  1381. "extra": {
  1382. "branch-alias": {
  1383. "dev-master": "2.4-dev"
  1384. },
  1385. "laravel": {
  1386. "providers": [
  1387. "Intervention\\Image\\ImageServiceProvider"
  1388. ],
  1389. "aliases": {
  1390. "Image": "Intervention\\Image\\Facades\\Image"
  1391. }
  1392. }
  1393. },
  1394. "autoload": {
  1395. "psr-4": {
  1396. "Intervention\\Image\\": "src/Intervention/Image"
  1397. }
  1398. },
  1399. "notification-url": "https://packagist.org/downloads/",
  1400. "license": [
  1401. "MIT"
  1402. ],
  1403. "authors": [
  1404. {
  1405. "name": "Oliver Vogel",
  1406. "email": "oliver@olivervogel.com",
  1407. "homepage": "http://olivervogel.com/"
  1408. }
  1409. ],
  1410. "description": "Image handling and manipulation library with support for Laravel integration",
  1411. "homepage": "http://image.intervention.io/",
  1412. "keywords": [
  1413. "gd",
  1414. "image",
  1415. "imagick",
  1416. "laravel",
  1417. "thumbnail",
  1418. "watermark"
  1419. ],
  1420. "time": "2018-05-29T14:19:03+00:00"
  1421. },
  1422. {
  1423. "name": "jakub-onderka/php-console-color",
  1424. "version": "v0.2",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1428. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1433. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1434. "shasum": ""
  1435. },
  1436. "require": {
  1437. "php": ">=5.4.0"
  1438. },
  1439. "require-dev": {
  1440. "jakub-onderka/php-code-style": "1.0",
  1441. "jakub-onderka/php-parallel-lint": "1.0",
  1442. "jakub-onderka/php-var-dump-check": "0.*",
  1443. "phpunit/phpunit": "~4.3",
  1444. "squizlabs/php_codesniffer": "1.*"
  1445. },
  1446. "type": "library",
  1447. "autoload": {
  1448. "psr-4": {
  1449. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "BSD-2-Clause"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Jakub Onderka",
  1459. "email": "jakub.onderka@gmail.com"
  1460. }
  1461. ],
  1462. "time": "2018-09-29T17:23:10+00:00"
  1463. },
  1464. {
  1465. "name": "jakub-onderka/php-console-highlighter",
  1466. "version": "v0.4",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1470. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1475. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "ext-tokenizer": "*",
  1480. "jakub-onderka/php-console-color": "~0.2",
  1481. "php": ">=5.4.0"
  1482. },
  1483. "require-dev": {
  1484. "jakub-onderka/php-code-style": "~1.0",
  1485. "jakub-onderka/php-parallel-lint": "~1.0",
  1486. "jakub-onderka/php-var-dump-check": "~0.1",
  1487. "phpunit/phpunit": "~4.0",
  1488. "squizlabs/php_codesniffer": "~1.5"
  1489. },
  1490. "type": "library",
  1491. "autoload": {
  1492. "psr-4": {
  1493. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1494. }
  1495. },
  1496. "notification-url": "https://packagist.org/downloads/",
  1497. "license": [
  1498. "MIT"
  1499. ],
  1500. "authors": [
  1501. {
  1502. "name": "Jakub Onderka",
  1503. "email": "acci@acci.cz",
  1504. "homepage": "http://www.acci.cz/"
  1505. }
  1506. ],
  1507. "description": "Highlight PHP code in terminal",
  1508. "time": "2018-09-29T18:48:56+00:00"
  1509. },
  1510. {
  1511. "name": "jaybizzle/crawler-detect",
  1512. "version": "v1.2.81",
  1513. "source": {
  1514. "type": "git",
  1515. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1516. "reference": "ffb1880f8e9610569d3bc70dc90bf07db311471d"
  1517. },
  1518. "dist": {
  1519. "type": "zip",
  1520. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/ffb1880f8e9610569d3bc70dc90bf07db311471d",
  1521. "reference": "ffb1880f8e9610569d3bc70dc90bf07db311471d",
  1522. "shasum": ""
  1523. },
  1524. "require": {
  1525. "php": ">=5.3.0"
  1526. },
  1527. "require-dev": {
  1528. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  1529. "satooshi/php-coveralls": "1.*"
  1530. },
  1531. "type": "library",
  1532. "autoload": {
  1533. "psr-4": {
  1534. "Jaybizzle\\CrawlerDetect\\": "src/"
  1535. }
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "MIT"
  1540. ],
  1541. "authors": [
  1542. {
  1543. "name": "Mark Beech",
  1544. "email": "m@rkbee.ch",
  1545. "role": "Developer"
  1546. }
  1547. ],
  1548. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1549. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1550. "keywords": [
  1551. "crawler",
  1552. "crawler detect",
  1553. "crawler detector",
  1554. "crawlerdetect",
  1555. "php crawler detect"
  1556. ],
  1557. "time": "2019-04-23T20:02:21+00:00"
  1558. },
  1559. {
  1560. "name": "jenssegers/agent",
  1561. "version": "v2.6.3",
  1562. "source": {
  1563. "type": "git",
  1564. "url": "https://github.com/jenssegers/agent.git",
  1565. "reference": "bcb895395e460478e101f41cdab139c48dc721ce"
  1566. },
  1567. "dist": {
  1568. "type": "zip",
  1569. "url": "https://api.github.com/repos/jenssegers/agent/zipball/bcb895395e460478e101f41cdab139c48dc721ce",
  1570. "reference": "bcb895395e460478e101f41cdab139c48dc721ce",
  1571. "shasum": ""
  1572. },
  1573. "require": {
  1574. "jaybizzle/crawler-detect": "^1.2",
  1575. "mobiledetect/mobiledetectlib": "^2.7.6",
  1576. "php": ">=5.6"
  1577. },
  1578. "require-dev": {
  1579. "php-coveralls/php-coveralls": "^2.1",
  1580. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1581. },
  1582. "suggest": {
  1583. "illuminate/support": "^4.0|^5.0"
  1584. },
  1585. "type": "library",
  1586. "extra": {
  1587. "branch-alias": {
  1588. "dev-master": "3.0-dev"
  1589. },
  1590. "laravel": {
  1591. "providers": [
  1592. "Jenssegers\\Agent\\AgentServiceProvider"
  1593. ],
  1594. "aliases": {
  1595. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1596. }
  1597. }
  1598. },
  1599. "autoload": {
  1600. "psr-4": {
  1601. "Jenssegers\\Agent\\": "src/"
  1602. }
  1603. },
  1604. "notification-url": "https://packagist.org/downloads/",
  1605. "license": [
  1606. "MIT"
  1607. ],
  1608. "authors": [
  1609. {
  1610. "name": "Jens Segers",
  1611. "homepage": "https://jenssegers.com"
  1612. }
  1613. ],
  1614. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1615. "homepage": "https://github.com/jenssegers/agent",
  1616. "keywords": [
  1617. "Agent",
  1618. "browser",
  1619. "desktop",
  1620. "laravel",
  1621. "mobile",
  1622. "platform",
  1623. "user agent",
  1624. "useragent"
  1625. ],
  1626. "time": "2019-01-19T21:32:55+00:00"
  1627. },
  1628. {
  1629. "name": "laravel/framework",
  1630. "version": "v5.8.15",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/laravel/framework.git",
  1634. "reference": "8a34004aed6ff0aa4072360e3e5bd875edebc223"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/laravel/framework/zipball/8a34004aed6ff0aa4072360e3e5bd875edebc223",
  1639. "reference": "8a34004aed6ff0aa4072360e3e5bd875edebc223",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "doctrine/inflector": "^1.1",
  1644. "dragonmantank/cron-expression": "^2.0",
  1645. "egulias/email-validator": "^2.0",
  1646. "erusev/parsedown": "^1.7",
  1647. "ext-json": "*",
  1648. "ext-mbstring": "*",
  1649. "ext-openssl": "*",
  1650. "league/flysystem": "^1.0.8",
  1651. "monolog/monolog": "^1.12",
  1652. "nesbot/carbon": "^1.26.3 || ^2.0",
  1653. "opis/closure": "^3.1",
  1654. "php": "^7.1.3",
  1655. "psr/container": "^1.0",
  1656. "psr/simple-cache": "^1.0",
  1657. "ramsey/uuid": "^3.7",
  1658. "swiftmailer/swiftmailer": "^6.0",
  1659. "symfony/console": "^4.2",
  1660. "symfony/debug": "^4.2",
  1661. "symfony/finder": "^4.2",
  1662. "symfony/http-foundation": "^4.2",
  1663. "symfony/http-kernel": "^4.2",
  1664. "symfony/process": "^4.2",
  1665. "symfony/routing": "^4.2",
  1666. "symfony/var-dumper": "^4.2",
  1667. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1668. "vlucas/phpdotenv": "^3.3"
  1669. },
  1670. "conflict": {
  1671. "tightenco/collect": "<5.5.33"
  1672. },
  1673. "replace": {
  1674. "illuminate/auth": "self.version",
  1675. "illuminate/broadcasting": "self.version",
  1676. "illuminate/bus": "self.version",
  1677. "illuminate/cache": "self.version",
  1678. "illuminate/config": "self.version",
  1679. "illuminate/console": "self.version",
  1680. "illuminate/container": "self.version",
  1681. "illuminate/contracts": "self.version",
  1682. "illuminate/cookie": "self.version",
  1683. "illuminate/database": "self.version",
  1684. "illuminate/encryption": "self.version",
  1685. "illuminate/events": "self.version",
  1686. "illuminate/filesystem": "self.version",
  1687. "illuminate/hashing": "self.version",
  1688. "illuminate/http": "self.version",
  1689. "illuminate/log": "self.version",
  1690. "illuminate/mail": "self.version",
  1691. "illuminate/notifications": "self.version",
  1692. "illuminate/pagination": "self.version",
  1693. "illuminate/pipeline": "self.version",
  1694. "illuminate/queue": "self.version",
  1695. "illuminate/redis": "self.version",
  1696. "illuminate/routing": "self.version",
  1697. "illuminate/session": "self.version",
  1698. "illuminate/support": "self.version",
  1699. "illuminate/translation": "self.version",
  1700. "illuminate/validation": "self.version",
  1701. "illuminate/view": "self.version"
  1702. },
  1703. "require-dev": {
  1704. "aws/aws-sdk-php": "^3.0",
  1705. "doctrine/dbal": "^2.6",
  1706. "filp/whoops": "^2.1.4",
  1707. "guzzlehttp/guzzle": "^6.3",
  1708. "league/flysystem-cached-adapter": "^1.0",
  1709. "mockery/mockery": "^1.0",
  1710. "moontoast/math": "^1.1",
  1711. "orchestra/testbench-core": "3.8.*",
  1712. "pda/pheanstalk": "^4.0",
  1713. "phpunit/phpunit": "^7.5|^8.0",
  1714. "predis/predis": "^1.1.1",
  1715. "symfony/css-selector": "^4.2",
  1716. "symfony/dom-crawler": "^4.2",
  1717. "true/punycode": "^2.1"
  1718. },
  1719. "suggest": {
  1720. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  1721. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1722. "ext-pcntl": "Required to use all features of the queue worker.",
  1723. "ext-posix": "Required to use all features of the queue worker.",
  1724. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  1725. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1726. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  1727. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1728. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1729. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1730. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  1731. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1732. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1733. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  1734. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1735. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  1736. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  1737. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  1738. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  1739. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  1740. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1741. },
  1742. "type": "library",
  1743. "extra": {
  1744. "branch-alias": {
  1745. "dev-master": "5.8-dev"
  1746. }
  1747. },
  1748. "autoload": {
  1749. "files": [
  1750. "src/Illuminate/Foundation/helpers.php",
  1751. "src/Illuminate/Support/helpers.php"
  1752. ],
  1753. "psr-4": {
  1754. "Illuminate\\": "src/Illuminate/"
  1755. }
  1756. },
  1757. "notification-url": "https://packagist.org/downloads/",
  1758. "license": [
  1759. "MIT"
  1760. ],
  1761. "authors": [
  1762. {
  1763. "name": "Taylor Otwell",
  1764. "email": "taylor@laravel.com"
  1765. }
  1766. ],
  1767. "description": "The Laravel Framework.",
  1768. "homepage": "https://laravel.com",
  1769. "keywords": [
  1770. "framework",
  1771. "laravel"
  1772. ],
  1773. "time": "2019-04-30T14:05:03+00:00"
  1774. },
  1775. {
  1776. "name": "laravel/horizon",
  1777. "version": "v3.1.2",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/laravel/horizon.git",
  1781. "reference": "32313d787a7a7575c1866e8ed12ec944c1513b7f"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/laravel/horizon/zipball/32313d787a7a7575c1866e8ed12ec944c1513b7f",
  1786. "reference": "32313d787a7a7575c1866e8ed12ec944c1513b7f",
  1787. "shasum": ""
  1788. },
  1789. "require": {
  1790. "cakephp/chronos": "^1.0",
  1791. "ext-json": "*",
  1792. "ext-pcntl": "*",
  1793. "ext-posix": "*",
  1794. "illuminate/contracts": "~5.7.0|~5.8.0|~5.9.0",
  1795. "illuminate/queue": "~5.7.0|~5.8.0|~5.9.0",
  1796. "illuminate/support": "~5.7.0|~5.8.0|~5.9.0",
  1797. "php": ">=7.1.0",
  1798. "predis/predis": "^1.1",
  1799. "ramsey/uuid": "^3.5",
  1800. "symfony/debug": "^4.2",
  1801. "symfony/process": "^4.2"
  1802. },
  1803. "require-dev": {
  1804. "mockery/mockery": "^1.0",
  1805. "orchestra/testbench": "^3.7",
  1806. "phpunit/phpunit": "^7.0"
  1807. },
  1808. "type": "library",
  1809. "extra": {
  1810. "branch-alias": {
  1811. "dev-master": "3.0-dev"
  1812. },
  1813. "laravel": {
  1814. "providers": [
  1815. "Laravel\\Horizon\\HorizonServiceProvider"
  1816. ],
  1817. "aliases": {
  1818. "Horizon": "Laravel\\Horizon\\Horizon"
  1819. }
  1820. }
  1821. },
  1822. "autoload": {
  1823. "psr-4": {
  1824. "Laravel\\Horizon\\": "src/"
  1825. }
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "MIT"
  1830. ],
  1831. "authors": [
  1832. {
  1833. "name": "Taylor Otwell",
  1834. "email": "taylor@laravel.com"
  1835. }
  1836. ],
  1837. "description": "Dashboard and code-driven configuration for Laravel queues.",
  1838. "keywords": [
  1839. "laravel",
  1840. "queue"
  1841. ],
  1842. "time": "2019-04-30T15:20:11+00:00"
  1843. },
  1844. {
  1845. "name": "laravel/passport",
  1846. "version": "v7.2.2",
  1847. "source": {
  1848. "type": "git",
  1849. "url": "https://github.com/laravel/passport.git",
  1850. "reference": "c0c3fca80d8f5af90dcbf65e62bdd1abee9ac25d"
  1851. },
  1852. "dist": {
  1853. "type": "zip",
  1854. "url": "https://api.github.com/repos/laravel/passport/zipball/c0c3fca80d8f5af90dcbf65e62bdd1abee9ac25d",
  1855. "reference": "c0c3fca80d8f5af90dcbf65e62bdd1abee9ac25d",
  1856. "shasum": ""
  1857. },
  1858. "require": {
  1859. "ext-json": "*",
  1860. "firebase/php-jwt": "~3.0|~4.0|~5.0",
  1861. "guzzlehttp/guzzle": "~6.0",
  1862. "illuminate/auth": "~5.6.0|~5.7.0|~5.8.0|~5.9.0",
  1863. "illuminate/console": "~5.6.0|~5.7.0|~5.8.0|~5.9.0",
  1864. "illuminate/container": "~5.6.0|~5.7.0|~5.8.0|~5.9.0",
  1865. "illuminate/contracts": "~5.6.0|~5.7.0|~5.8.0|~5.9.0",
  1866. "illuminate/database": "~5.6.0|~5.7.0|~5.8.0|~5.9.0",
  1867. "illuminate/encryption": "~5.6.0|~5.7.0|~5.8.0|~5.9.0",
  1868. "illuminate/http": "~5.6.0|~5.7.0|~5.8.0|~5.9.0",
  1869. "illuminate/support": "~5.6.0|~5.7.0|~5.8.0|~5.9.0",
  1870. "league/oauth2-server": "^7.0",
  1871. "php": ">=7.1",
  1872. "phpseclib/phpseclib": "^2.0",
  1873. "symfony/psr-http-message-bridge": "~1.0",
  1874. "zendframework/zend-diactoros": "~1.0|~2.0"
  1875. },
  1876. "require-dev": {
  1877. "mockery/mockery": "~1.0",
  1878. "phpunit/phpunit": "~7.4"
  1879. },
  1880. "type": "library",
  1881. "extra": {
  1882. "branch-alias": {
  1883. "dev-master": "7.0-dev"
  1884. },
  1885. "laravel": {
  1886. "providers": [
  1887. "Laravel\\Passport\\PassportServiceProvider"
  1888. ]
  1889. }
  1890. },
  1891. "autoload": {
  1892. "psr-4": {
  1893. "Laravel\\Passport\\": "src/"
  1894. }
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "Taylor Otwell",
  1903. "email": "taylor@laravel.com"
  1904. }
  1905. ],
  1906. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  1907. "keywords": [
  1908. "laravel",
  1909. "oauth",
  1910. "passport"
  1911. ],
  1912. "time": "2019-03-13T14:21:06+00:00"
  1913. },
  1914. {
  1915. "name": "laravel/tinker",
  1916. "version": "v1.0.8",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/laravel/tinker.git",
  1920. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  1925. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  1926. "shasum": ""
  1927. },
  1928. "require": {
  1929. "illuminate/console": "~5.1",
  1930. "illuminate/contracts": "~5.1",
  1931. "illuminate/support": "~5.1",
  1932. "php": ">=5.5.9",
  1933. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1934. "symfony/var-dumper": "~3.0|~4.0"
  1935. },
  1936. "require-dev": {
  1937. "phpunit/phpunit": "~4.0|~5.0"
  1938. },
  1939. "suggest": {
  1940. "illuminate/database": "The Illuminate Database package (~5.1)."
  1941. },
  1942. "type": "library",
  1943. "extra": {
  1944. "branch-alias": {
  1945. "dev-master": "1.0-dev"
  1946. },
  1947. "laravel": {
  1948. "providers": [
  1949. "Laravel\\Tinker\\TinkerServiceProvider"
  1950. ]
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Laravel\\Tinker\\": "src/"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Taylor Otwell",
  1965. "email": "taylor@laravel.com"
  1966. }
  1967. ],
  1968. "description": "Powerful REPL for the Laravel framework.",
  1969. "keywords": [
  1970. "REPL",
  1971. "Tinker",
  1972. "laravel",
  1973. "psysh"
  1974. ],
  1975. "time": "2018-10-12T19:39:35+00:00"
  1976. },
  1977. {
  1978. "name": "lcobucci/jwt",
  1979. "version": "3.2.5",
  1980. "source": {
  1981. "type": "git",
  1982. "url": "https://github.com/lcobucci/jwt.git",
  1983. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b"
  1984. },
  1985. "dist": {
  1986. "type": "zip",
  1987. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b",
  1988. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b",
  1989. "shasum": ""
  1990. },
  1991. "require": {
  1992. "ext-openssl": "*",
  1993. "php": ">=5.5"
  1994. },
  1995. "require-dev": {
  1996. "mdanter/ecc": "~0.3.1",
  1997. "mikey179/vfsstream": "~1.5",
  1998. "phpmd/phpmd": "~2.2",
  1999. "phpunit/php-invoker": "~1.1",
  2000. "phpunit/phpunit": "~4.5",
  2001. "squizlabs/php_codesniffer": "~2.3"
  2002. },
  2003. "suggest": {
  2004. "mdanter/ecc": "Required to use Elliptic Curves based algorithms."
  2005. },
  2006. "type": "library",
  2007. "extra": {
  2008. "branch-alias": {
  2009. "dev-master": "3.1-dev"
  2010. }
  2011. },
  2012. "autoload": {
  2013. "psr-4": {
  2014. "Lcobucci\\JWT\\": "src"
  2015. }
  2016. },
  2017. "notification-url": "https://packagist.org/downloads/",
  2018. "license": [
  2019. "BSD-3-Clause"
  2020. ],
  2021. "authors": [
  2022. {
  2023. "name": "Luís Otávio Cobucci Oblonczyk",
  2024. "email": "lcobucci@gmail.com",
  2025. "role": "Developer"
  2026. }
  2027. ],
  2028. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2029. "keywords": [
  2030. "JWS",
  2031. "jwt"
  2032. ],
  2033. "time": "2018-11-11T12:22:26+00:00"
  2034. },
  2035. {
  2036. "name": "league/event",
  2037. "version": "2.2.0",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://github.com/thephpleague/event.git",
  2041. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2046. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2047. "shasum": ""
  2048. },
  2049. "require": {
  2050. "php": ">=5.4.0"
  2051. },
  2052. "require-dev": {
  2053. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2054. "phpspec/phpspec": "^2.2"
  2055. },
  2056. "type": "library",
  2057. "extra": {
  2058. "branch-alias": {
  2059. "dev-master": "2.2-dev"
  2060. }
  2061. },
  2062. "autoload": {
  2063. "psr-4": {
  2064. "League\\Event\\": "src/"
  2065. }
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "Frank de Jonge",
  2074. "email": "info@frenky.net"
  2075. }
  2076. ],
  2077. "description": "Event package",
  2078. "keywords": [
  2079. "emitter",
  2080. "event",
  2081. "listener"
  2082. ],
  2083. "time": "2018-11-26T11:52:41+00:00"
  2084. },
  2085. {
  2086. "name": "league/flysystem",
  2087. "version": "1.0.51",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/thephpleague/flysystem.git",
  2091. "reference": "755ba7bf3fb9031e6581d091db84d78275874396"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/755ba7bf3fb9031e6581d091db84d78275874396",
  2096. "reference": "755ba7bf3fb9031e6581d091db84d78275874396",
  2097. "shasum": ""
  2098. },
  2099. "require": {
  2100. "ext-fileinfo": "*",
  2101. "php": ">=5.5.9"
  2102. },
  2103. "conflict": {
  2104. "league/flysystem-sftp": "<1.0.6"
  2105. },
  2106. "require-dev": {
  2107. "phpspec/phpspec": "^3.4",
  2108. "phpunit/phpunit": "^5.7.10"
  2109. },
  2110. "suggest": {
  2111. "ext-fileinfo": "Required for MimeType",
  2112. "ext-ftp": "Allows you to use FTP server storage",
  2113. "ext-openssl": "Allows you to use FTPS server storage",
  2114. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2115. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2116. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2117. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2118. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2119. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2120. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2121. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2122. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2123. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2124. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2125. },
  2126. "type": "library",
  2127. "extra": {
  2128. "branch-alias": {
  2129. "dev-master": "1.1-dev"
  2130. }
  2131. },
  2132. "autoload": {
  2133. "psr-4": {
  2134. "League\\Flysystem\\": "src/"
  2135. }
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Frank de Jonge",
  2144. "email": "info@frenky.net"
  2145. }
  2146. ],
  2147. "description": "Filesystem abstraction: Many filesystems, one API.",
  2148. "keywords": [
  2149. "Cloud Files",
  2150. "WebDAV",
  2151. "abstraction",
  2152. "aws",
  2153. "cloud",
  2154. "copy.com",
  2155. "dropbox",
  2156. "file systems",
  2157. "files",
  2158. "filesystem",
  2159. "filesystems",
  2160. "ftp",
  2161. "rackspace",
  2162. "remote",
  2163. "s3",
  2164. "sftp",
  2165. "storage"
  2166. ],
  2167. "time": "2019-03-30T13:22:34+00:00"
  2168. },
  2169. {
  2170. "name": "league/flysystem-aws-s3-v3",
  2171. "version": "1.0.22",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2175. "reference": "883b02c80ca9cd68cf58a9b4b2185beef24b836b"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/883b02c80ca9cd68cf58a9b4b2185beef24b836b",
  2180. "reference": "883b02c80ca9cd68cf58a9b4b2185beef24b836b",
  2181. "shasum": ""
  2182. },
  2183. "require": {
  2184. "aws/aws-sdk-php": "^3.0.0",
  2185. "league/flysystem": "^1.0.40",
  2186. "php": ">=5.5.0"
  2187. },
  2188. "require-dev": {
  2189. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2190. "phpspec/phpspec": "^2.0.0"
  2191. },
  2192. "type": "library",
  2193. "extra": {
  2194. "branch-alias": {
  2195. "dev-master": "1.0-dev"
  2196. }
  2197. },
  2198. "autoload": {
  2199. "psr-4": {
  2200. "League\\Flysystem\\AwsS3v3\\": "src/"
  2201. }
  2202. },
  2203. "notification-url": "https://packagist.org/downloads/",
  2204. "license": [
  2205. "MIT"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "Frank de Jonge",
  2210. "email": "info@frenky.net"
  2211. }
  2212. ],
  2213. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  2214. "time": "2019-01-31T15:07:25+00:00"
  2215. },
  2216. {
  2217. "name": "league/flysystem-cached-adapter",
  2218. "version": "1.0.9",
  2219. "source": {
  2220. "type": "git",
  2221. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  2222. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  2223. },
  2224. "dist": {
  2225. "type": "zip",
  2226. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  2227. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  2228. "shasum": ""
  2229. },
  2230. "require": {
  2231. "league/flysystem": "~1.0",
  2232. "psr/cache": "^1.0.0"
  2233. },
  2234. "require-dev": {
  2235. "mockery/mockery": "~0.9",
  2236. "phpspec/phpspec": "^3.4",
  2237. "phpunit/phpunit": "^5.7",
  2238. "predis/predis": "~1.0",
  2239. "tedivm/stash": "~0.12"
  2240. },
  2241. "suggest": {
  2242. "ext-phpredis": "Pure C implemented extension for PHP"
  2243. },
  2244. "type": "library",
  2245. "autoload": {
  2246. "psr-4": {
  2247. "League\\Flysystem\\Cached\\": "src/"
  2248. }
  2249. },
  2250. "notification-url": "https://packagist.org/downloads/",
  2251. "license": [
  2252. "MIT"
  2253. ],
  2254. "authors": [
  2255. {
  2256. "name": "frankdejonge",
  2257. "email": "info@frenky.net"
  2258. }
  2259. ],
  2260. "description": "An adapter decorator to enable meta-data caching.",
  2261. "time": "2018-07-09T20:51:04+00:00"
  2262. },
  2263. {
  2264. "name": "league/oauth2-server",
  2265. "version": "7.4.0",
  2266. "source": {
  2267. "type": "git",
  2268. "url": "https://github.com/thephpleague/oauth2-server.git",
  2269. "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf"
  2270. },
  2271. "dist": {
  2272. "type": "zip",
  2273. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf",
  2274. "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf",
  2275. "shasum": ""
  2276. },
  2277. "require": {
  2278. "defuse/php-encryption": "^2.1",
  2279. "ext-openssl": "*",
  2280. "lcobucci/jwt": "^3.2.2",
  2281. "league/event": "^2.1",
  2282. "php": ">=7.0.0",
  2283. "psr/http-message": "^1.0.1"
  2284. },
  2285. "replace": {
  2286. "league/oauth2server": "*",
  2287. "lncd/oauth2": "*"
  2288. },
  2289. "require-dev": {
  2290. "phpstan/phpstan": "^0.9.2",
  2291. "phpstan/phpstan-phpunit": "^0.9.4",
  2292. "phpstan/phpstan-strict-rules": "^0.9.0",
  2293. "phpunit/phpunit": "^6.3 || ^7.0",
  2294. "roave/security-advisories": "dev-master",
  2295. "zendframework/zend-diactoros": "^1.3.2"
  2296. },
  2297. "type": "library",
  2298. "autoload": {
  2299. "psr-4": {
  2300. "League\\OAuth2\\Server\\": "src/"
  2301. }
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "MIT"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Alex Bilbie",
  2310. "email": "hello@alexbilbie.com",
  2311. "homepage": "http://www.alexbilbie.com",
  2312. "role": "Developer"
  2313. },
  2314. {
  2315. "name": "Andy Millington",
  2316. "email": "andrew@noexceptions.io",
  2317. "homepage": "https://www.noexceptions.io",
  2318. "role": "Developer"
  2319. }
  2320. ],
  2321. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  2322. "homepage": "https://oauth2.thephpleague.com/",
  2323. "keywords": [
  2324. "Authentication",
  2325. "api",
  2326. "auth",
  2327. "authorisation",
  2328. "authorization",
  2329. "oauth",
  2330. "oauth 2",
  2331. "oauth 2.0",
  2332. "oauth2",
  2333. "protect",
  2334. "resource",
  2335. "secure",
  2336. "server"
  2337. ],
  2338. "time": "2019-05-05T09:22:01+00:00"
  2339. },
  2340. {
  2341. "name": "mobiledetect/mobiledetectlib",
  2342. "version": "2.8.33",
  2343. "source": {
  2344. "type": "git",
  2345. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2346. "reference": "cd385290f9a0d609d2eddd165a1e44ec1bf12102"
  2347. },
  2348. "dist": {
  2349. "type": "zip",
  2350. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/cd385290f9a0d609d2eddd165a1e44ec1bf12102",
  2351. "reference": "cd385290f9a0d609d2eddd165a1e44ec1bf12102",
  2352. "shasum": ""
  2353. },
  2354. "require": {
  2355. "php": ">=5.0.0"
  2356. },
  2357. "require-dev": {
  2358. "phpunit/phpunit": "~4.8.35||~5.7"
  2359. },
  2360. "type": "library",
  2361. "autoload": {
  2362. "classmap": [
  2363. "Mobile_Detect.php"
  2364. ],
  2365. "psr-0": {
  2366. "Detection": "namespaced/"
  2367. }
  2368. },
  2369. "notification-url": "https://packagist.org/downloads/",
  2370. "license": [
  2371. "MIT"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "Serban Ghita",
  2376. "email": "serbanghita@gmail.com",
  2377. "homepage": "http://mobiledetect.net",
  2378. "role": "Developer"
  2379. }
  2380. ],
  2381. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2382. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2383. "keywords": [
  2384. "detect mobile devices",
  2385. "mobile",
  2386. "mobile detect",
  2387. "mobile detector",
  2388. "php mobile detect"
  2389. ],
  2390. "time": "2018-09-01T15:05:15+00:00"
  2391. },
  2392. {
  2393. "name": "monolog/monolog",
  2394. "version": "1.24.0",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/Seldaek/monolog.git",
  2398. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2403. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": ">=5.3.0",
  2408. "psr/log": "~1.0"
  2409. },
  2410. "provide": {
  2411. "psr/log-implementation": "1.0.0"
  2412. },
  2413. "require-dev": {
  2414. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2415. "doctrine/couchdb": "~1.0@dev",
  2416. "graylog2/gelf-php": "~1.0",
  2417. "jakub-onderka/php-parallel-lint": "0.9",
  2418. "php-amqplib/php-amqplib": "~2.4",
  2419. "php-console/php-console": "^3.1.3",
  2420. "phpunit/phpunit": "~4.5",
  2421. "phpunit/phpunit-mock-objects": "2.3.0",
  2422. "ruflin/elastica": ">=0.90 <3.0",
  2423. "sentry/sentry": "^0.13",
  2424. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2425. },
  2426. "suggest": {
  2427. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2428. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2429. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2430. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2431. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2432. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2433. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2434. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2435. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2436. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2437. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2438. },
  2439. "type": "library",
  2440. "extra": {
  2441. "branch-alias": {
  2442. "dev-master": "2.0.x-dev"
  2443. }
  2444. },
  2445. "autoload": {
  2446. "psr-4": {
  2447. "Monolog\\": "src/Monolog"
  2448. }
  2449. },
  2450. "notification-url": "https://packagist.org/downloads/",
  2451. "license": [
  2452. "MIT"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "Jordi Boggiano",
  2457. "email": "j.boggiano@seld.be",
  2458. "homepage": "http://seld.be"
  2459. }
  2460. ],
  2461. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2462. "homepage": "http://github.com/Seldaek/monolog",
  2463. "keywords": [
  2464. "log",
  2465. "logging",
  2466. "psr-3"
  2467. ],
  2468. "time": "2018-11-05T09:00:11+00:00"
  2469. },
  2470. {
  2471. "name": "moontoast/math",
  2472. "version": "1.1.2",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/ramsey/moontoast-math.git",
  2476. "reference": "c2792a25df5cad4ff3d760dd37078fc5b6fccc79"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/c2792a25df5cad4ff3d760dd37078fc5b6fccc79",
  2481. "reference": "c2792a25df5cad4ff3d760dd37078fc5b6fccc79",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "ext-bcmath": "*",
  2486. "php": ">=5.3.3"
  2487. },
  2488. "require-dev": {
  2489. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2490. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  2491. "satooshi/php-coveralls": "^0.6.1",
  2492. "squizlabs/php_codesniffer": "^2.3"
  2493. },
  2494. "type": "library",
  2495. "autoload": {
  2496. "psr-4": {
  2497. "Moontoast\\Math\\": "src/Moontoast/Math/"
  2498. }
  2499. },
  2500. "notification-url": "https://packagist.org/downloads/",
  2501. "license": [
  2502. "Apache-2.0"
  2503. ],
  2504. "authors": [
  2505. {
  2506. "name": "Ben Ramsey",
  2507. "email": "ben@benramsey.com",
  2508. "homepage": "https://benramsey.com"
  2509. }
  2510. ],
  2511. "description": "A mathematics library, providing functionality for large numbers",
  2512. "homepage": "https://github.com/ramsey/moontoast-math",
  2513. "keywords": [
  2514. "bcmath",
  2515. "math"
  2516. ],
  2517. "time": "2017-02-16T16:54:46+00:00"
  2518. },
  2519. {
  2520. "name": "mtdowling/jmespath.php",
  2521. "version": "2.4.0",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/jmespath/jmespath.php.git",
  2525. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  2530. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "php": ">=5.4.0"
  2535. },
  2536. "require-dev": {
  2537. "phpunit/phpunit": "~4.0"
  2538. },
  2539. "bin": [
  2540. "bin/jp.php"
  2541. ],
  2542. "type": "library",
  2543. "extra": {
  2544. "branch-alias": {
  2545. "dev-master": "2.0-dev"
  2546. }
  2547. },
  2548. "autoload": {
  2549. "psr-4": {
  2550. "JmesPath\\": "src/"
  2551. },
  2552. "files": [
  2553. "src/JmesPath.php"
  2554. ]
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "Michael Dowling",
  2563. "email": "mtdowling@gmail.com",
  2564. "homepage": "https://github.com/mtdowling"
  2565. }
  2566. ],
  2567. "description": "Declaratively specify how to extract elements from a JSON document",
  2568. "keywords": [
  2569. "json",
  2570. "jsonpath"
  2571. ],
  2572. "time": "2016-12-03T22:08:25+00:00"
  2573. },
  2574. {
  2575. "name": "nesbot/carbon",
  2576. "version": "2.17.1",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/briannesbitt/Carbon.git",
  2580. "reference": "96acbc0c03782e8115156dd4dd8b736267155066"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/96acbc0c03782e8115156dd4dd8b736267155066",
  2585. "reference": "96acbc0c03782e8115156dd4dd8b736267155066",
  2586. "shasum": ""
  2587. },
  2588. "require": {
  2589. "ext-json": "*",
  2590. "php": "^7.1.8 || ^8.0",
  2591. "symfony/translation": "^3.4 || ^4.0"
  2592. },
  2593. "require-dev": {
  2594. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2595. "kylekatarnls/multi-tester": "^1.1",
  2596. "phpmd/phpmd": "^2.6",
  2597. "phpstan/phpstan": "^0.11",
  2598. "phpunit/phpunit": "^7.5 || ^8.0",
  2599. "squizlabs/php_codesniffer": "^3.4"
  2600. },
  2601. "type": "library",
  2602. "extra": {
  2603. "laravel": {
  2604. "providers": [
  2605. "Carbon\\Laravel\\ServiceProvider"
  2606. ]
  2607. }
  2608. },
  2609. "autoload": {
  2610. "psr-4": {
  2611. "Carbon\\": "src/Carbon/"
  2612. }
  2613. },
  2614. "notification-url": "https://packagist.org/downloads/",
  2615. "license": [
  2616. "MIT"
  2617. ],
  2618. "authors": [
  2619. {
  2620. "name": "Brian Nesbitt",
  2621. "email": "brian@nesbot.com",
  2622. "homepage": "http://nesbot.com"
  2623. }
  2624. ],
  2625. "description": "A simple API extension for DateTime.",
  2626. "homepage": "http://carbon.nesbot.com",
  2627. "keywords": [
  2628. "date",
  2629. "datetime",
  2630. "time"
  2631. ],
  2632. "time": "2019-04-27T18:04:27+00:00"
  2633. },
  2634. {
  2635. "name": "neutron/temporary-filesystem",
  2636. "version": "2.3.0",
  2637. "source": {
  2638. "type": "git",
  2639. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  2640. "reference": "694aa3885f653dd429584e825ffbab79441d285f"
  2641. },
  2642. "dist": {
  2643. "type": "zip",
  2644. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/694aa3885f653dd429584e825ffbab79441d285f",
  2645. "reference": "694aa3885f653dd429584e825ffbab79441d285f",
  2646. "shasum": ""
  2647. },
  2648. "require": {
  2649. "php": "^5.6 || ^7.0",
  2650. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0"
  2651. },
  2652. "require-dev": {
  2653. "phpunit/phpunit": "^5.0"
  2654. },
  2655. "type": "library",
  2656. "autoload": {
  2657. "psr-0": {
  2658. "Neutron": "src"
  2659. }
  2660. },
  2661. "notification-url": "https://packagist.org/downloads/",
  2662. "license": [
  2663. "MIT"
  2664. ],
  2665. "authors": [
  2666. {
  2667. "name": "Romain Neutron",
  2668. "email": "imprec@gmail.com"
  2669. }
  2670. ],
  2671. "description": "Symfony filesystem extension to handle temporary files",
  2672. "time": "2018-02-07T21:11:57+00:00"
  2673. },
  2674. {
  2675. "name": "nikic/php-parser",
  2676. "version": "v4.2.1",
  2677. "source": {
  2678. "type": "git",
  2679. "url": "https://github.com/nikic/PHP-Parser.git",
  2680. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  2681. },
  2682. "dist": {
  2683. "type": "zip",
  2684. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  2685. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  2686. "shasum": ""
  2687. },
  2688. "require": {
  2689. "ext-tokenizer": "*",
  2690. "php": ">=7.0"
  2691. },
  2692. "require-dev": {
  2693. "phpunit/phpunit": "^6.5 || ^7.0"
  2694. },
  2695. "bin": [
  2696. "bin/php-parse"
  2697. ],
  2698. "type": "library",
  2699. "extra": {
  2700. "branch-alias": {
  2701. "dev-master": "4.2-dev"
  2702. }
  2703. },
  2704. "autoload": {
  2705. "psr-4": {
  2706. "PhpParser\\": "lib/PhpParser"
  2707. }
  2708. },
  2709. "notification-url": "https://packagist.org/downloads/",
  2710. "license": [
  2711. "BSD-3-Clause"
  2712. ],
  2713. "authors": [
  2714. {
  2715. "name": "Nikita Popov"
  2716. }
  2717. ],
  2718. "description": "A PHP parser written in PHP",
  2719. "keywords": [
  2720. "parser",
  2721. "php"
  2722. ],
  2723. "time": "2019-02-16T20:54:15+00:00"
  2724. },
  2725. {
  2726. "name": "opis/closure",
  2727. "version": "3.2.0",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/opis/closure.git",
  2731. "reference": "09b4389715a7eec100176ea58286649181753508"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/opis/closure/zipball/09b4389715a7eec100176ea58286649181753508",
  2736. "reference": "09b4389715a7eec100176ea58286649181753508",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "php": "^5.4 || ^7.0"
  2741. },
  2742. "require-dev": {
  2743. "jeremeamia/superclosure": "^2.0",
  2744. "phpunit/phpunit": "^4.0|^5.0|^6.0|^7.0"
  2745. },
  2746. "type": "library",
  2747. "extra": {
  2748. "branch-alias": {
  2749. "dev-master": "3.2.x-dev"
  2750. }
  2751. },
  2752. "autoload": {
  2753. "psr-4": {
  2754. "Opis\\Closure\\": "src/"
  2755. },
  2756. "files": [
  2757. "functions.php"
  2758. ]
  2759. },
  2760. "notification-url": "https://packagist.org/downloads/",
  2761. "license": [
  2762. "MIT"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "Marius Sarca",
  2767. "email": "marius.sarca@gmail.com"
  2768. },
  2769. {
  2770. "name": "Sorin Sarca",
  2771. "email": "sarca_sorin@hotmail.com"
  2772. }
  2773. ],
  2774. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2775. "homepage": "https://opis.io/closure",
  2776. "keywords": [
  2777. "anonymous functions",
  2778. "closure",
  2779. "function",
  2780. "serializable",
  2781. "serialization",
  2782. "serialize"
  2783. ],
  2784. "time": "2019-05-05T12:50:25+00:00"
  2785. },
  2786. {
  2787. "name": "paragonie/constant_time_encoding",
  2788. "version": "v2.2.3",
  2789. "source": {
  2790. "type": "git",
  2791. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2792. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb"
  2793. },
  2794. "dist": {
  2795. "type": "zip",
  2796. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2797. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2798. "shasum": ""
  2799. },
  2800. "require": {
  2801. "php": "^7"
  2802. },
  2803. "require-dev": {
  2804. "phpunit/phpunit": "^6|^7",
  2805. "vimeo/psalm": "^1|^2"
  2806. },
  2807. "type": "library",
  2808. "autoload": {
  2809. "psr-4": {
  2810. "ParagonIE\\ConstantTime\\": "src/"
  2811. }
  2812. },
  2813. "notification-url": "https://packagist.org/downloads/",
  2814. "license": [
  2815. "MIT"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "Paragon Initiative Enterprises",
  2820. "email": "security@paragonie.com",
  2821. "homepage": "https://paragonie.com",
  2822. "role": "Maintainer"
  2823. },
  2824. {
  2825. "name": "Steve 'Sc00bz' Thomas",
  2826. "email": "steve@tobtu.com",
  2827. "homepage": "https://www.tobtu.com",
  2828. "role": "Original Developer"
  2829. }
  2830. ],
  2831. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2832. "keywords": [
  2833. "base16",
  2834. "base32",
  2835. "base32_decode",
  2836. "base32_encode",
  2837. "base64",
  2838. "base64_decode",
  2839. "base64_encode",
  2840. "bin2hex",
  2841. "encoding",
  2842. "hex",
  2843. "hex2bin",
  2844. "rfc4648"
  2845. ],
  2846. "time": "2019-01-03T20:26:31+00:00"
  2847. },
  2848. {
  2849. "name": "paragonie/random_compat",
  2850. "version": "v2.0.18",
  2851. "source": {
  2852. "type": "git",
  2853. "url": "https://github.com/paragonie/random_compat.git",
  2854. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  2855. },
  2856. "dist": {
  2857. "type": "zip",
  2858. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2859. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2860. "shasum": ""
  2861. },
  2862. "require": {
  2863. "php": ">=5.2.0"
  2864. },
  2865. "require-dev": {
  2866. "phpunit/phpunit": "4.*|5.*"
  2867. },
  2868. "suggest": {
  2869. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2870. },
  2871. "type": "library",
  2872. "autoload": {
  2873. "files": [
  2874. "lib/random.php"
  2875. ]
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "Paragon Initiative Enterprises",
  2884. "email": "security@paragonie.com",
  2885. "homepage": "https://paragonie.com"
  2886. }
  2887. ],
  2888. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2889. "keywords": [
  2890. "csprng",
  2891. "polyfill",
  2892. "pseudorandom",
  2893. "random"
  2894. ],
  2895. "time": "2019-01-03T20:59:08+00:00"
  2896. },
  2897. {
  2898. "name": "pbmedia/laravel-ffmpeg",
  2899. "version": "4.0.0",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/pascalbaljetmedia/laravel-ffmpeg.git",
  2903. "reference": "6b7ac695b56c3847a736de614d4533245541cb6c"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/pascalbaljetmedia/laravel-ffmpeg/zipball/6b7ac695b56c3847a736de614d4533245541cb6c",
  2908. "reference": "6b7ac695b56c3847a736de614d4533245541cb6c",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "illuminate/config": "5.8.*",
  2913. "illuminate/filesystem": "5.8.*",
  2914. "illuminate/log": "5.8.*",
  2915. "illuminate/support": "5.8.*",
  2916. "league/flysystem": "~1.0",
  2917. "php": "^7.1.3",
  2918. "php-ffmpeg/php-ffmpeg": "^0.13",
  2919. "symfony/process": "~4.0"
  2920. },
  2921. "require-dev": {
  2922. "mockery/mockery": "^1.0",
  2923. "phpunit/phpunit": "7.5"
  2924. },
  2925. "type": "library",
  2926. "extra": {
  2927. "laravel": {
  2928. "providers": [
  2929. "Pbmedia\\LaravelFFMpeg\\FFMpegServiceProvider"
  2930. ],
  2931. "aliases": {
  2932. "FFMpeg": "Pbmedia\\LaravelFFMpeg\\FFMpegFacade"
  2933. }
  2934. }
  2935. },
  2936. "autoload": {
  2937. "psr-4": {
  2938. "Pbmedia\\LaravelFFMpeg\\": "src"
  2939. }
  2940. },
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Pascal Baljet",
  2948. "email": "pascal@pascalbaljetmedia.com",
  2949. "homepage": "http://www.pascalbaljetmedia.com",
  2950. "role": "Developer"
  2951. }
  2952. ],
  2953. "description": "FFMpeg for Laravel",
  2954. "homepage": "https://github.com/pbmedia/laravel-ffmpeg",
  2955. "keywords": [
  2956. "laravel-ffmpeg",
  2957. "pbmedia"
  2958. ],
  2959. "time": "2019-02-27T17:33:08+00:00"
  2960. },
  2961. {
  2962. "name": "php-ffmpeg/php-ffmpeg",
  2963. "version": "v0.13",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  2967. "reference": "c11b79ab5b0174aa1a56c54c67491169e78a4c17"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/c11b79ab5b0174aa1a56c54c67491169e78a4c17",
  2972. "reference": "c11b79ab5b0174aa1a56c54c67491169e78a4c17",
  2973. "shasum": ""
  2974. },
  2975. "require": {
  2976. "alchemy/binary-driver": "^1.5 || ~2.0.0",
  2977. "doctrine/cache": "^1.0",
  2978. "evenement/evenement": "^2.0 || ^1.0",
  2979. "neutron/temporary-filesystem": "^2.1.1",
  2980. "php": "^5.3.9 || ^7.0"
  2981. },
  2982. "require-dev": {
  2983. "phpunit/phpunit": "^4.8.36",
  2984. "sami/sami": "~1.0",
  2985. "silex/silex": "~1.0"
  2986. },
  2987. "suggest": {
  2988. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  2989. },
  2990. "type": "library",
  2991. "extra": {
  2992. "branch-alias": {
  2993. "dev-master": "0.7-dev"
  2994. }
  2995. },
  2996. "autoload": {
  2997. "psr-0": {
  2998. "FFMpeg": "src"
  2999. }
  3000. },
  3001. "notification-url": "https://packagist.org/downloads/",
  3002. "license": [
  3003. "MIT"
  3004. ],
  3005. "authors": [
  3006. {
  3007. "name": "Romain Neutron",
  3008. "email": "imprec@gmail.com",
  3009. "homepage": "http://www.lickmychip.com/"
  3010. },
  3011. {
  3012. "name": "Phraseanet Team",
  3013. "email": "info@alchemy.fr",
  3014. "homepage": "http://www.phraseanet.com/"
  3015. },
  3016. {
  3017. "name": "Patrik Karisch",
  3018. "email": "patrik@karisch.guru",
  3019. "homepage": "http://www.karisch.guru"
  3020. },
  3021. {
  3022. "name": "Romain Biard",
  3023. "email": "romain.biard@gmail.com",
  3024. "homepage": "https://www.strime.io/"
  3025. },
  3026. {
  3027. "name": "Jens Hausdorf",
  3028. "email": "hello@jens-hausdorf.de",
  3029. "homepage": "https://jens-hausdorf.de"
  3030. }
  3031. ],
  3032. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  3033. "keywords": [
  3034. "audio",
  3035. "audio processing",
  3036. "avconv",
  3037. "avprobe",
  3038. "ffmpeg",
  3039. "ffprobe",
  3040. "video",
  3041. "video processing"
  3042. ],
  3043. "time": "2018-08-06T20:02:43+00:00"
  3044. },
  3045. {
  3046. "name": "phpoption/phpoption",
  3047. "version": "1.5.0",
  3048. "source": {
  3049. "type": "git",
  3050. "url": "https://github.com/schmittjoh/php-option.git",
  3051. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  3052. },
  3053. "dist": {
  3054. "type": "zip",
  3055. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  3056. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  3057. "shasum": ""
  3058. },
  3059. "require": {
  3060. "php": ">=5.3.0"
  3061. },
  3062. "require-dev": {
  3063. "phpunit/phpunit": "4.7.*"
  3064. },
  3065. "type": "library",
  3066. "extra": {
  3067. "branch-alias": {
  3068. "dev-master": "1.3-dev"
  3069. }
  3070. },
  3071. "autoload": {
  3072. "psr-0": {
  3073. "PhpOption\\": "src/"
  3074. }
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "Apache2"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "Johannes M. Schmitt",
  3083. "email": "schmittjoh@gmail.com"
  3084. }
  3085. ],
  3086. "description": "Option Type for PHP",
  3087. "keywords": [
  3088. "language",
  3089. "option",
  3090. "php",
  3091. "type"
  3092. ],
  3093. "time": "2015-07-25T16:39:46+00:00"
  3094. },
  3095. {
  3096. "name": "phpseclib/phpseclib",
  3097. "version": "2.0.15",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/phpseclib/phpseclib.git",
  3101. "reference": "11cf67cf78dc4acb18dc9149a57be4aee5036ce0"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/11cf67cf78dc4acb18dc9149a57be4aee5036ce0",
  3106. "reference": "11cf67cf78dc4acb18dc9149a57be4aee5036ce0",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "php": ">=5.3.3"
  3111. },
  3112. "require-dev": {
  3113. "phing/phing": "~2.7",
  3114. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  3115. "sami/sami": "~2.0",
  3116. "squizlabs/php_codesniffer": "~2.0"
  3117. },
  3118. "suggest": {
  3119. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3120. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3121. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3122. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3123. },
  3124. "type": "library",
  3125. "autoload": {
  3126. "files": [
  3127. "phpseclib/bootstrap.php"
  3128. ],
  3129. "psr-4": {
  3130. "phpseclib\\": "phpseclib/"
  3131. }
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "MIT"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Jim Wigginton",
  3140. "email": "terrafrost@php.net",
  3141. "role": "Lead Developer"
  3142. },
  3143. {
  3144. "name": "Patrick Monnerat",
  3145. "email": "pm@datasphere.ch",
  3146. "role": "Developer"
  3147. },
  3148. {
  3149. "name": "Andreas Fischer",
  3150. "email": "bantu@phpbb.com",
  3151. "role": "Developer"
  3152. },
  3153. {
  3154. "name": "Hans-Jürgen Petrich",
  3155. "email": "petrich@tronic-media.com",
  3156. "role": "Developer"
  3157. },
  3158. {
  3159. "name": "Graham Campbell",
  3160. "email": "graham@alt-three.com",
  3161. "role": "Developer"
  3162. }
  3163. ],
  3164. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3165. "homepage": "http://phpseclib.sourceforge.net",
  3166. "keywords": [
  3167. "BigInteger",
  3168. "aes",
  3169. "asn.1",
  3170. "asn1",
  3171. "blowfish",
  3172. "crypto",
  3173. "cryptography",
  3174. "encryption",
  3175. "rsa",
  3176. "security",
  3177. "sftp",
  3178. "signature",
  3179. "signing",
  3180. "ssh",
  3181. "twofish",
  3182. "x.509",
  3183. "x509"
  3184. ],
  3185. "time": "2019-03-10T16:53:45+00:00"
  3186. },
  3187. {
  3188. "name": "pixelfed/bacon-qr-code",
  3189. "version": "3.1.0",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/pixelfed/BaconQrCode.git",
  3193. "reference": "912bb5dba5eea165e500abb8ed36e59971d6d724"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/pixelfed/BaconQrCode/zipball/912bb5dba5eea165e500abb8ed36e59971d6d724",
  3198. "reference": "912bb5dba5eea165e500abb8ed36e59971d6d724",
  3199. "shasum": ""
  3200. },
  3201. "require": {
  3202. "ext-iconv": "*",
  3203. "php": "^7.1"
  3204. },
  3205. "suggest": {
  3206. "ext-imagick": "to generate QR code images"
  3207. },
  3208. "type": "library",
  3209. "autoload": {
  3210. "psr-4": {
  3211. "BaconQrCode\\": "src/"
  3212. }
  3213. },
  3214. "notification-url": "https://packagist.org/downloads/",
  3215. "license": [
  3216. "BSD-2-Clause"
  3217. ],
  3218. "authors": [
  3219. {
  3220. "name": "Ben Scholzen 'DASPRiD'",
  3221. "email": "mail@dasprids.de",
  3222. "homepage": "http://www.dasprids.de",
  3223. "role": "Developer"
  3224. }
  3225. ],
  3226. "description": "BaconQrCode is a QR code generator for PHP.",
  3227. "homepage": "https://github.com/pixelfed/BaconQrCode",
  3228. "time": "2018-09-03T06:48:07+00:00"
  3229. },
  3230. {
  3231. "name": "pixelfed/dotenv-editor",
  3232. "version": "2.0.0",
  3233. "source": {
  3234. "type": "git",
  3235. "url": "https://github.com/pixelfed/Laravel-Dotenv-Editor.git",
  3236. "reference": "b53cb2707bb856e92cf1a282b4e5ee17a45ccb2c"
  3237. },
  3238. "dist": {
  3239. "type": "zip",
  3240. "url": "https://api.github.com/repos/pixelfed/Laravel-Dotenv-Editor/zipball/b53cb2707bb856e92cf1a282b4e5ee17a45ccb2c",
  3241. "reference": "b53cb2707bb856e92cf1a282b4e5ee17a45ccb2c",
  3242. "shasum": ""
  3243. },
  3244. "require": {
  3245. "illuminate/config": ">=5.0",
  3246. "illuminate/container": ">=5.0",
  3247. "illuminate/support": ">=5.0",
  3248. "php": ">=5.4.0"
  3249. },
  3250. "type": "library",
  3251. "extra": {
  3252. "branch-alias": {
  3253. "dev-master": "1.0-dev"
  3254. }
  3255. },
  3256. "autoload": {
  3257. "psr-4": {
  3258. "Jackiedo\\DotenvEditor\\": "src/Jackiedo/DotenvEditor"
  3259. }
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "MIT"
  3264. ],
  3265. "authors": [
  3266. {
  3267. "name": "Jackie Do",
  3268. "email": "anhvudo@gmail.com"
  3269. }
  3270. ],
  3271. "description": "The .env file editor tool for Laravel 5+",
  3272. "keywords": [
  3273. "dotenv",
  3274. "dotenv-editor",
  3275. "laravel"
  3276. ],
  3277. "time": "2018-07-17T19:38:26+00:00"
  3278. },
  3279. {
  3280. "name": "pixelfed/fractal",
  3281. "version": "0.18.0",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://github.com/pixelfed/fractal.git",
  3285. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://api.github.com/repos/pixelfed/fractal/zipball/faff10c9f3e3300b1571ef41926f933a9cce4782",
  3290. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782",
  3291. "shasum": ""
  3292. },
  3293. "require": {
  3294. "php": ">=5.4"
  3295. },
  3296. "require-dev": {
  3297. "doctrine/orm": "^2.5",
  3298. "illuminate/contracts": "~5.0",
  3299. "mockery/mockery": "~0.9",
  3300. "pagerfanta/pagerfanta": "~1.0.0",
  3301. "phpunit/phpunit": "^4.8.35",
  3302. "squizlabs/php_codesniffer": "~1.5",
  3303. "zendframework/zend-paginator": "~2.3"
  3304. },
  3305. "suggest": {
  3306. "illuminate/pagination": "The Illuminate Pagination component.",
  3307. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3308. "zendframework/zend-paginator": "Zend Framework Paginator"
  3309. },
  3310. "type": "library",
  3311. "extra": {
  3312. "branch-alias": {
  3313. "dev-master": "0.13-dev"
  3314. }
  3315. },
  3316. "autoload": {
  3317. "psr-4": {
  3318. "League\\Fractal\\": "src"
  3319. }
  3320. },
  3321. "notification-url": "https://packagist.org/downloads/",
  3322. "license": [
  3323. "MIT"
  3324. ],
  3325. "authors": [
  3326. {
  3327. "name": "Phil Sturgeon",
  3328. "email": "me@philsturgeon.uk",
  3329. "homepage": "http://philsturgeon.uk/",
  3330. "role": "Developer"
  3331. }
  3332. ],
  3333. "description": "Handle the output of complex data structures ready for API output.",
  3334. "homepage": "http://fractal.thephpleague.com/",
  3335. "keywords": [
  3336. "api",
  3337. "json",
  3338. "league",
  3339. "rest"
  3340. ],
  3341. "time": "2018-07-01T02:30:24+00:00"
  3342. },
  3343. {
  3344. "name": "pixelfed/google2fa",
  3345. "version": "v4.0.0",
  3346. "source": {
  3347. "type": "git",
  3348. "url": "https://github.com/pixelfed/google2fa.git",
  3349. "reference": "919ecec68074a27818451d8653029773a2391fe5"
  3350. },
  3351. "dist": {
  3352. "type": "zip",
  3353. "url": "https://api.github.com/repos/pixelfed/google2fa/zipball/919ecec68074a27818451d8653029773a2391fe5",
  3354. "reference": "919ecec68074a27818451d8653029773a2391fe5",
  3355. "shasum": ""
  3356. },
  3357. "require": {
  3358. "paragonie/constant_time_encoding": "~1.0|~2.0",
  3359. "paragonie/random_compat": "~1.4|~2.0",
  3360. "php": ">=5.4",
  3361. "symfony/polyfill-php56": "~1.2"
  3362. },
  3363. "require-dev": {
  3364. "bacon/bacon-qr-code": "~1.0",
  3365. "phpunit/phpunit": "~4|~5|~6"
  3366. },
  3367. "suggest": {
  3368. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  3369. },
  3370. "type": "library",
  3371. "extra": {
  3372. "component": "package",
  3373. "branch-alias": {
  3374. "dev-master": "2.0-dev"
  3375. }
  3376. },
  3377. "autoload": {
  3378. "psr-4": {
  3379. "PragmaRX\\Google2FA\\": "src/",
  3380. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  3381. }
  3382. },
  3383. "notification-url": "https://packagist.org/downloads/",
  3384. "license": [
  3385. "MIT"
  3386. ],
  3387. "authors": [
  3388. {
  3389. "name": "Antonio Carlos Ribeiro",
  3390. "email": "acr@antoniocarlosribeiro.com",
  3391. "role": "Creator & Designer"
  3392. }
  3393. ],
  3394. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  3395. "keywords": [
  3396. "2fa",
  3397. "Authentication",
  3398. "Two Factor Authentication",
  3399. "google2fa",
  3400. "laravel"
  3401. ],
  3402. "time": "2018-07-05T03:38:31+00:00"
  3403. },
  3404. {
  3405. "name": "pixelfed/laravel-snowflake",
  3406. "version": "v2.0.0",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/pixelfed/laravel-snowflake.git",
  3410. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/pixelfed/laravel-snowflake/zipball/69255870dcbf949feac889dfc09180a6fef77f6d",
  3415. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d",
  3416. "shasum": ""
  3417. },
  3418. "require": {
  3419. "php": ">=7.0.0"
  3420. },
  3421. "require-dev": {
  3422. "orchestra/testbench": "~3.0",
  3423. "phpunit/phpunit": "~6.0"
  3424. },
  3425. "type": "library",
  3426. "extra": {
  3427. "laravel": {
  3428. "providers": [
  3429. "Pixelfed\\Snowflake\\SnowflakeServiceProvider"
  3430. ]
  3431. }
  3432. },
  3433. "autoload": {
  3434. "psr-4": {
  3435. "Pixelfed\\Snowflake\\": "src/"
  3436. }
  3437. },
  3438. "notification-url": "https://packagist.org/downloads/",
  3439. "license": [
  3440. "MIT"
  3441. ],
  3442. "authors": [
  3443. {
  3444. "name": "Koki Asai",
  3445. "email": "koki@asai.email"
  3446. },
  3447. {
  3448. "name": "Daniel Supernault",
  3449. "email": "hello@pixelfed.org"
  3450. }
  3451. ],
  3452. "description": "Snowflake for Laravel.",
  3453. "homepage": "https://github.com/pixelfed/laravel-snowflake",
  3454. "keywords": [
  3455. "laravel",
  3456. "snowflake"
  3457. ],
  3458. "time": "2019-03-12T05:13:49+00:00"
  3459. },
  3460. {
  3461. "name": "pixelfed/zttp",
  3462. "version": "v0.4.1",
  3463. "source": {
  3464. "type": "git",
  3465. "url": "https://github.com/pixelfed/zttp.git",
  3466. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05"
  3467. },
  3468. "dist": {
  3469. "type": "zip",
  3470. "url": "https://api.github.com/repos/pixelfed/zttp/zipball/9a95a42716eb3e71a0a88411805737965bb77c05",
  3471. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05",
  3472. "shasum": ""
  3473. },
  3474. "require": {
  3475. "guzzlehttp/guzzle": "^6.0",
  3476. "php": ">=7.0",
  3477. "tightenco/collect": "^5.4"
  3478. },
  3479. "require-dev": {
  3480. "laravel/lumen-framework": "5.5.*",
  3481. "phpunit/phpunit": "^6.0"
  3482. },
  3483. "type": "library",
  3484. "autoload": {
  3485. "files": [
  3486. "src/Zttp.php"
  3487. ]
  3488. },
  3489. "notification-url": "https://packagist.org/downloads/",
  3490. "license": [
  3491. "MIT"
  3492. ],
  3493. "authors": [
  3494. {
  3495. "name": "Adam Wathan",
  3496. "email": "adam.wathan@gmail.com"
  3497. }
  3498. ],
  3499. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  3500. "keywords": [
  3501. "Guzzle",
  3502. "http"
  3503. ],
  3504. "time": "2018-07-30T05:04:42+00:00"
  3505. },
  3506. {
  3507. "name": "predis/predis",
  3508. "version": "v1.1.1",
  3509. "source": {
  3510. "type": "git",
  3511. "url": "https://github.com/nrk/predis.git",
  3512. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3513. },
  3514. "dist": {
  3515. "type": "zip",
  3516. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3517. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3518. "shasum": ""
  3519. },
  3520. "require": {
  3521. "php": ">=5.3.9"
  3522. },
  3523. "require-dev": {
  3524. "phpunit/phpunit": "~4.8"
  3525. },
  3526. "suggest": {
  3527. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3528. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3529. },
  3530. "type": "library",
  3531. "autoload": {
  3532. "psr-4": {
  3533. "Predis\\": "src/"
  3534. }
  3535. },
  3536. "notification-url": "https://packagist.org/downloads/",
  3537. "license": [
  3538. "MIT"
  3539. ],
  3540. "authors": [
  3541. {
  3542. "name": "Daniele Alessandri",
  3543. "email": "suppakilla@gmail.com",
  3544. "homepage": "http://clorophilla.net"
  3545. }
  3546. ],
  3547. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3548. "homepage": "http://github.com/nrk/predis",
  3549. "keywords": [
  3550. "nosql",
  3551. "predis",
  3552. "redis"
  3553. ],
  3554. "time": "2016-06-16T16:22:20+00:00"
  3555. },
  3556. {
  3557. "name": "psr/cache",
  3558. "version": "1.0.1",
  3559. "source": {
  3560. "type": "git",
  3561. "url": "https://github.com/php-fig/cache.git",
  3562. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3563. },
  3564. "dist": {
  3565. "type": "zip",
  3566. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3567. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3568. "shasum": ""
  3569. },
  3570. "require": {
  3571. "php": ">=5.3.0"
  3572. },
  3573. "type": "library",
  3574. "extra": {
  3575. "branch-alias": {
  3576. "dev-master": "1.0.x-dev"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "psr-4": {
  3581. "Psr\\Cache\\": "src/"
  3582. }
  3583. },
  3584. "notification-url": "https://packagist.org/downloads/",
  3585. "license": [
  3586. "MIT"
  3587. ],
  3588. "authors": [
  3589. {
  3590. "name": "PHP-FIG",
  3591. "homepage": "http://www.php-fig.org/"
  3592. }
  3593. ],
  3594. "description": "Common interface for caching libraries",
  3595. "keywords": [
  3596. "cache",
  3597. "psr",
  3598. "psr-6"
  3599. ],
  3600. "time": "2016-08-06T20:24:11+00:00"
  3601. },
  3602. {
  3603. "name": "psr/container",
  3604. "version": "1.0.0",
  3605. "source": {
  3606. "type": "git",
  3607. "url": "https://github.com/php-fig/container.git",
  3608. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3609. },
  3610. "dist": {
  3611. "type": "zip",
  3612. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3613. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3614. "shasum": ""
  3615. },
  3616. "require": {
  3617. "php": ">=5.3.0"
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "branch-alias": {
  3622. "dev-master": "1.0.x-dev"
  3623. }
  3624. },
  3625. "autoload": {
  3626. "psr-4": {
  3627. "Psr\\Container\\": "src/"
  3628. }
  3629. },
  3630. "notification-url": "https://packagist.org/downloads/",
  3631. "license": [
  3632. "MIT"
  3633. ],
  3634. "authors": [
  3635. {
  3636. "name": "PHP-FIG",
  3637. "homepage": "http://www.php-fig.org/"
  3638. }
  3639. ],
  3640. "description": "Common Container Interface (PHP FIG PSR-11)",
  3641. "homepage": "https://github.com/php-fig/container",
  3642. "keywords": [
  3643. "PSR-11",
  3644. "container",
  3645. "container-interface",
  3646. "container-interop",
  3647. "psr"
  3648. ],
  3649. "time": "2017-02-14T16:28:37+00:00"
  3650. },
  3651. {
  3652. "name": "psr/http-factory",
  3653. "version": "1.0.1",
  3654. "source": {
  3655. "type": "git",
  3656. "url": "https://github.com/php-fig/http-factory.git",
  3657. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3658. },
  3659. "dist": {
  3660. "type": "zip",
  3661. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3662. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3663. "shasum": ""
  3664. },
  3665. "require": {
  3666. "php": ">=7.0.0",
  3667. "psr/http-message": "^1.0"
  3668. },
  3669. "type": "library",
  3670. "extra": {
  3671. "branch-alias": {
  3672. "dev-master": "1.0.x-dev"
  3673. }
  3674. },
  3675. "autoload": {
  3676. "psr-4": {
  3677. "Psr\\Http\\Message\\": "src/"
  3678. }
  3679. },
  3680. "notification-url": "https://packagist.org/downloads/",
  3681. "license": [
  3682. "MIT"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "PHP-FIG",
  3687. "homepage": "http://www.php-fig.org/"
  3688. }
  3689. ],
  3690. "description": "Common interfaces for PSR-7 HTTP message factories",
  3691. "keywords": [
  3692. "factory",
  3693. "http",
  3694. "message",
  3695. "psr",
  3696. "psr-17",
  3697. "psr-7",
  3698. "request",
  3699. "response"
  3700. ],
  3701. "time": "2019-04-30T12:38:16+00:00"
  3702. },
  3703. {
  3704. "name": "psr/http-message",
  3705. "version": "1.0.1",
  3706. "source": {
  3707. "type": "git",
  3708. "url": "https://github.com/php-fig/http-message.git",
  3709. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3710. },
  3711. "dist": {
  3712. "type": "zip",
  3713. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3714. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3715. "shasum": ""
  3716. },
  3717. "require": {
  3718. "php": ">=5.3.0"
  3719. },
  3720. "type": "library",
  3721. "extra": {
  3722. "branch-alias": {
  3723. "dev-master": "1.0.x-dev"
  3724. }
  3725. },
  3726. "autoload": {
  3727. "psr-4": {
  3728. "Psr\\Http\\Message\\": "src/"
  3729. }
  3730. },
  3731. "notification-url": "https://packagist.org/downloads/",
  3732. "license": [
  3733. "MIT"
  3734. ],
  3735. "authors": [
  3736. {
  3737. "name": "PHP-FIG",
  3738. "homepage": "http://www.php-fig.org/"
  3739. }
  3740. ],
  3741. "description": "Common interface for HTTP messages",
  3742. "homepage": "https://github.com/php-fig/http-message",
  3743. "keywords": [
  3744. "http",
  3745. "http-message",
  3746. "psr",
  3747. "psr-7",
  3748. "request",
  3749. "response"
  3750. ],
  3751. "time": "2016-08-06T14:39:51+00:00"
  3752. },
  3753. {
  3754. "name": "psr/log",
  3755. "version": "1.1.0",
  3756. "source": {
  3757. "type": "git",
  3758. "url": "https://github.com/php-fig/log.git",
  3759. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3760. },
  3761. "dist": {
  3762. "type": "zip",
  3763. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3764. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3765. "shasum": ""
  3766. },
  3767. "require": {
  3768. "php": ">=5.3.0"
  3769. },
  3770. "type": "library",
  3771. "extra": {
  3772. "branch-alias": {
  3773. "dev-master": "1.0.x-dev"
  3774. }
  3775. },
  3776. "autoload": {
  3777. "psr-4": {
  3778. "Psr\\Log\\": "Psr/Log/"
  3779. }
  3780. },
  3781. "notification-url": "https://packagist.org/downloads/",
  3782. "license": [
  3783. "MIT"
  3784. ],
  3785. "authors": [
  3786. {
  3787. "name": "PHP-FIG",
  3788. "homepage": "http://www.php-fig.org/"
  3789. }
  3790. ],
  3791. "description": "Common interface for logging libraries",
  3792. "homepage": "https://github.com/php-fig/log",
  3793. "keywords": [
  3794. "log",
  3795. "psr",
  3796. "psr-3"
  3797. ],
  3798. "time": "2018-11-20T15:27:04+00:00"
  3799. },
  3800. {
  3801. "name": "psr/simple-cache",
  3802. "version": "1.0.1",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/php-fig/simple-cache.git",
  3806. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3811. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3812. "shasum": ""
  3813. },
  3814. "require": {
  3815. "php": ">=5.3.0"
  3816. },
  3817. "type": "library",
  3818. "extra": {
  3819. "branch-alias": {
  3820. "dev-master": "1.0.x-dev"
  3821. }
  3822. },
  3823. "autoload": {
  3824. "psr-4": {
  3825. "Psr\\SimpleCache\\": "src/"
  3826. }
  3827. },
  3828. "notification-url": "https://packagist.org/downloads/",
  3829. "license": [
  3830. "MIT"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "PHP-FIG",
  3835. "homepage": "http://www.php-fig.org/"
  3836. }
  3837. ],
  3838. "description": "Common interfaces for simple caching",
  3839. "keywords": [
  3840. "cache",
  3841. "caching",
  3842. "psr",
  3843. "psr-16",
  3844. "simple-cache"
  3845. ],
  3846. "time": "2017-10-23T01:57:42+00:00"
  3847. },
  3848. {
  3849. "name": "psy/psysh",
  3850. "version": "v0.9.9",
  3851. "source": {
  3852. "type": "git",
  3853. "url": "https://github.com/bobthecow/psysh.git",
  3854. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  3855. },
  3856. "dist": {
  3857. "type": "zip",
  3858. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3859. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3860. "shasum": ""
  3861. },
  3862. "require": {
  3863. "dnoegel/php-xdg-base-dir": "0.1",
  3864. "ext-json": "*",
  3865. "ext-tokenizer": "*",
  3866. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3867. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3868. "php": ">=5.4.0",
  3869. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  3870. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  3871. },
  3872. "require-dev": {
  3873. "bamarni/composer-bin-plugin": "^1.2",
  3874. "hoa/console": "~2.15|~3.16",
  3875. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3876. },
  3877. "suggest": {
  3878. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3879. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3880. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3881. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3882. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3883. },
  3884. "bin": [
  3885. "bin/psysh"
  3886. ],
  3887. "type": "library",
  3888. "extra": {
  3889. "branch-alias": {
  3890. "dev-develop": "0.9.x-dev"
  3891. }
  3892. },
  3893. "autoload": {
  3894. "files": [
  3895. "src/functions.php"
  3896. ],
  3897. "psr-4": {
  3898. "Psy\\": "src/"
  3899. }
  3900. },
  3901. "notification-url": "https://packagist.org/downloads/",
  3902. "license": [
  3903. "MIT"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "Justin Hileman",
  3908. "email": "justin@justinhileman.info",
  3909. "homepage": "http://justinhileman.com"
  3910. }
  3911. ],
  3912. "description": "An interactive shell for modern PHP.",
  3913. "homepage": "http://psysh.org",
  3914. "keywords": [
  3915. "REPL",
  3916. "console",
  3917. "interactive",
  3918. "shell"
  3919. ],
  3920. "time": "2018-10-13T15:16:03+00:00"
  3921. },
  3922. {
  3923. "name": "ralouphie/getallheaders",
  3924. "version": "2.0.5",
  3925. "source": {
  3926. "type": "git",
  3927. "url": "https://github.com/ralouphie/getallheaders.git",
  3928. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  3929. },
  3930. "dist": {
  3931. "type": "zip",
  3932. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3933. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3934. "shasum": ""
  3935. },
  3936. "require": {
  3937. "php": ">=5.3"
  3938. },
  3939. "require-dev": {
  3940. "phpunit/phpunit": "~3.7.0",
  3941. "satooshi/php-coveralls": ">=1.0"
  3942. },
  3943. "type": "library",
  3944. "autoload": {
  3945. "files": [
  3946. "src/getallheaders.php"
  3947. ]
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "Ralph Khattar",
  3956. "email": "ralph.khattar@gmail.com"
  3957. }
  3958. ],
  3959. "description": "A polyfill for getallheaders.",
  3960. "time": "2016-02-11T07:05:27+00:00"
  3961. },
  3962. {
  3963. "name": "ramsey/uuid",
  3964. "version": "3.8.0",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://github.com/ramsey/uuid.git",
  3968. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  3973. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  3974. "shasum": ""
  3975. },
  3976. "require": {
  3977. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  3978. "php": "^5.4 || ^7.0",
  3979. "symfony/polyfill-ctype": "^1.8"
  3980. },
  3981. "replace": {
  3982. "rhumsaa/uuid": "self.version"
  3983. },
  3984. "require-dev": {
  3985. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  3986. "doctrine/annotations": "~1.2.0",
  3987. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  3988. "ircmaxell/random-lib": "^1.1",
  3989. "jakub-onderka/php-parallel-lint": "^0.9.0",
  3990. "mockery/mockery": "^0.9.9",
  3991. "moontoast/math": "^1.1",
  3992. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  3993. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  3994. "squizlabs/php_codesniffer": "^2.3"
  3995. },
  3996. "suggest": {
  3997. "ext-ctype": "Provides support for PHP Ctype functions",
  3998. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3999. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  4000. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4001. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  4002. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  4003. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4004. },
  4005. "type": "library",
  4006. "extra": {
  4007. "branch-alias": {
  4008. "dev-master": "3.x-dev"
  4009. }
  4010. },
  4011. "autoload": {
  4012. "psr-4": {
  4013. "Ramsey\\Uuid\\": "src/"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "MIT"
  4019. ],
  4020. "authors": [
  4021. {
  4022. "name": "Marijn Huizendveld",
  4023. "email": "marijn.huizendveld@gmail.com"
  4024. },
  4025. {
  4026. "name": "Thibaud Fabre",
  4027. "email": "thibaud@aztech.io"
  4028. },
  4029. {
  4030. "name": "Ben Ramsey",
  4031. "email": "ben@benramsey.com",
  4032. "homepage": "https://benramsey.com"
  4033. }
  4034. ],
  4035. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4036. "homepage": "https://github.com/ramsey/uuid",
  4037. "keywords": [
  4038. "guid",
  4039. "identifier",
  4040. "uuid"
  4041. ],
  4042. "time": "2018-07-19T23:38:55+00:00"
  4043. },
  4044. {
  4045. "name": "spatie/db-dumper",
  4046. "version": "2.14.0",
  4047. "source": {
  4048. "type": "git",
  4049. "url": "https://github.com/spatie/db-dumper.git",
  4050. "reference": "eec21c55012b02fb8453c9929fa1c3150ca184ac"
  4051. },
  4052. "dist": {
  4053. "type": "zip",
  4054. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/eec21c55012b02fb8453c9929fa1c3150ca184ac",
  4055. "reference": "eec21c55012b02fb8453c9929fa1c3150ca184ac",
  4056. "shasum": ""
  4057. },
  4058. "require": {
  4059. "php": "^7.1",
  4060. "symfony/process": "^4.2"
  4061. },
  4062. "require-dev": {
  4063. "phpunit/phpunit": "^7.0|^8.0"
  4064. },
  4065. "type": "library",
  4066. "autoload": {
  4067. "psr-4": {
  4068. "Spatie\\DbDumper\\": "src"
  4069. }
  4070. },
  4071. "notification-url": "https://packagist.org/downloads/",
  4072. "license": [
  4073. "MIT"
  4074. ],
  4075. "authors": [
  4076. {
  4077. "name": "Freek Van der Herten",
  4078. "email": "freek@spatie.be",
  4079. "homepage": "https://spatie.be",
  4080. "role": "Developer"
  4081. }
  4082. ],
  4083. "description": "Dump databases",
  4084. "homepage": "https://github.com/spatie/db-dumper",
  4085. "keywords": [
  4086. "database",
  4087. "db-dumper",
  4088. "dump",
  4089. "mysqldump",
  4090. "spatie"
  4091. ],
  4092. "time": "2019-04-17T07:03:19+00:00"
  4093. },
  4094. {
  4095. "name": "spatie/image-optimizer",
  4096. "version": "1.1.5",
  4097. "source": {
  4098. "type": "git",
  4099. "url": "https://github.com/spatie/image-optimizer.git",
  4100. "reference": "e62f8b459bee0a880c8976c316e82638a74510b5"
  4101. },
  4102. "dist": {
  4103. "type": "zip",
  4104. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/e62f8b459bee0a880c8976c316e82638a74510b5",
  4105. "reference": "e62f8b459bee0a880c8976c316e82638a74510b5",
  4106. "shasum": ""
  4107. },
  4108. "require": {
  4109. "ext-fileinfo": "*",
  4110. "php": "^7.2",
  4111. "psr/log": "^1.0",
  4112. "symfony/process": "^4.2"
  4113. },
  4114. "require-dev": {
  4115. "phpunit/phpunit": "^8.0",
  4116. "symfony/var-dumper": "^4.2"
  4117. },
  4118. "type": "library",
  4119. "autoload": {
  4120. "psr-4": {
  4121. "Spatie\\ImageOptimizer\\": "src"
  4122. }
  4123. },
  4124. "notification-url": "https://packagist.org/downloads/",
  4125. "license": [
  4126. "MIT"
  4127. ],
  4128. "authors": [
  4129. {
  4130. "name": "Freek Van der Herten",
  4131. "email": "freek@spatie.be",
  4132. "homepage": "https://spatie.be",
  4133. "role": "Developer"
  4134. }
  4135. ],
  4136. "description": "Easily optimize images using PHP",
  4137. "homepage": "https://github.com/spatie/image-optimizer",
  4138. "keywords": [
  4139. "image-optimizer",
  4140. "spatie"
  4141. ],
  4142. "time": "2019-02-15T12:11:38+00:00"
  4143. },
  4144. {
  4145. "name": "spatie/laravel-backup",
  4146. "version": "6.2.0",
  4147. "source": {
  4148. "type": "git",
  4149. "url": "https://github.com/spatie/laravel-backup.git",
  4150. "reference": "d706e64c2500fda276d421551c140693156c0195"
  4151. },
  4152. "dist": {
  4153. "type": "zip",
  4154. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/d706e64c2500fda276d421551c140693156c0195",
  4155. "reference": "d706e64c2500fda276d421551c140693156c0195",
  4156. "shasum": ""
  4157. },
  4158. "require": {
  4159. "illuminate/console": "~5.8.0",
  4160. "illuminate/contracts": "~5.8.0",
  4161. "illuminate/events": "~5.8.0",
  4162. "illuminate/filesystem": "~5.8.0",
  4163. "illuminate/notifications": "~5.8.0",
  4164. "illuminate/support": "~5.8.0",
  4165. "league/flysystem": "^1.0.49",
  4166. "php": "^7.2",
  4167. "spatie/db-dumper": "^2.12",
  4168. "spatie/temporary-directory": "^1.1",
  4169. "symfony/finder": "^4.2"
  4170. },
  4171. "require-dev": {
  4172. "laravel/slack-notification-channel": "^1.0",
  4173. "mockery/mockery": "^1.0",
  4174. "orchestra/testbench": "~3.8.0",
  4175. "phpunit/phpunit": "^8.0"
  4176. },
  4177. "suggest": {
  4178. "laravel/slack-notification-channel": "Required for sending notifications via Slack"
  4179. },
  4180. "type": "library",
  4181. "extra": {
  4182. "laravel": {
  4183. "providers": [
  4184. "Spatie\\Backup\\BackupServiceProvider"
  4185. ]
  4186. }
  4187. },
  4188. "autoload": {
  4189. "psr-4": {
  4190. "Spatie\\Backup\\": "src"
  4191. },
  4192. "files": [
  4193. "src/Helpers/functions.php"
  4194. ]
  4195. },
  4196. "notification-url": "https://packagist.org/downloads/",
  4197. "license": [
  4198. "MIT"
  4199. ],
  4200. "authors": [
  4201. {
  4202. "name": "Freek Van der Herten",
  4203. "email": "freek@spatie.be",
  4204. "homepage": "https://spatie.be",
  4205. "role": "Developer"
  4206. }
  4207. ],
  4208. "description": "A Laravel package to backup your application",
  4209. "homepage": "https://github.com/spatie/laravel-backup",
  4210. "keywords": [
  4211. "backup",
  4212. "database",
  4213. "laravel-backup",
  4214. "spatie"
  4215. ],
  4216. "time": "2019-04-25T11:01:00+00:00"
  4217. },
  4218. {
  4219. "name": "spatie/laravel-image-optimizer",
  4220. "version": "1.4.0",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://github.com/spatie/laravel-image-optimizer.git",
  4224. "reference": "ab2f78c9ce6ddff6aad9b8e377f7e84a5906d12d"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/ab2f78c9ce6ddff6aad9b8e377f7e84a5906d12d",
  4229. "reference": "ab2f78c9ce6ddff6aad9b8e377f7e84a5906d12d",
  4230. "shasum": ""
  4231. },
  4232. "require": {
  4233. "laravel/framework": "~5.7.0|~5.8.0",
  4234. "php": "^7.2",
  4235. "spatie/image-optimizer": "^1.1.0"
  4236. },
  4237. "require-dev": {
  4238. "orchestra/testbench": "~3.7.0|~3.8.0",
  4239. "phpunit/phpunit": "^8.0"
  4240. },
  4241. "type": "library",
  4242. "extra": {
  4243. "laravel": {
  4244. "providers": [
  4245. "Spatie\\LaravelImageOptimizer\\ImageOptimizerServiceProvider"
  4246. ],
  4247. "aliases": {
  4248. "ImageOptimizer": "Spatie\\LaravelImageOptimizer\\Facades\\ImageOptimizer"
  4249. }
  4250. }
  4251. },
  4252. "autoload": {
  4253. "psr-4": {
  4254. "Spatie\\LaravelImageOptimizer\\": "src"
  4255. }
  4256. },
  4257. "notification-url": "https://packagist.org/downloads/",
  4258. "license": [
  4259. "MIT"
  4260. ],
  4261. "authors": [
  4262. {
  4263. "name": "Freek Van der Herten",
  4264. "email": "freek@spatie.be",
  4265. "homepage": "https://spatie.be",
  4266. "role": "Developer"
  4267. }
  4268. ],
  4269. "description": "Optimize images in your Laravel app",
  4270. "homepage": "https://github.com/spatie/laravel-image-optimizer",
  4271. "keywords": [
  4272. "laravel-image-optimizer",
  4273. "spatie"
  4274. ],
  4275. "time": "2019-02-27T10:14:49+00:00"
  4276. },
  4277. {
  4278. "name": "spatie/temporary-directory",
  4279. "version": "1.1.4",
  4280. "source": {
  4281. "type": "git",
  4282. "url": "https://github.com/spatie/temporary-directory.git",
  4283. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7"
  4284. },
  4285. "dist": {
  4286. "type": "zip",
  4287. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  4288. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  4289. "shasum": ""
  4290. },
  4291. "require": {
  4292. "php": "^7.0"
  4293. },
  4294. "require-dev": {
  4295. "phpunit/phpunit": "^6.3"
  4296. },
  4297. "type": "library",
  4298. "autoload": {
  4299. "psr-4": {
  4300. "Spatie\\TemporaryDirectory\\": "src"
  4301. }
  4302. },
  4303. "notification-url": "https://packagist.org/downloads/",
  4304. "license": [
  4305. "MIT"
  4306. ],
  4307. "authors": [
  4308. {
  4309. "name": "Alex Vanderbist",
  4310. "email": "alex@spatie.be",
  4311. "homepage": "https://spatie.be",
  4312. "role": "Developer"
  4313. }
  4314. ],
  4315. "description": "Easily create, use and destroy temporary directories",
  4316. "homepage": "https://github.com/spatie/temporary-directory",
  4317. "keywords": [
  4318. "spatie",
  4319. "temporary-directory"
  4320. ],
  4321. "time": "2018-04-12T09:34:43+00:00"
  4322. },
  4323. {
  4324. "name": "stevebauman/purify",
  4325. "version": "v2.0.2",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/stevebauman/purify.git",
  4329. "reference": "d264520280042a745f4f75f5110bbcc21a0a083f"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/stevebauman/purify/zipball/d264520280042a745f4f75f5110bbcc21a0a083f",
  4334. "reference": "d264520280042a745f4f75f5110bbcc21a0a083f",
  4335. "shasum": ""
  4336. },
  4337. "require": {
  4338. "ezyang/htmlpurifier": "^4.9.0",
  4339. "illuminate/support": "5.*",
  4340. "php": ">=5.4.0"
  4341. },
  4342. "require-dev": {
  4343. "orchestra/testbench": "~3.0"
  4344. },
  4345. "type": "library",
  4346. "extra": {
  4347. "laravel": {
  4348. "providers": [
  4349. "Stevebauman\\Purify\\PurifyServiceProvider"
  4350. ],
  4351. "aliases": {
  4352. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  4353. }
  4354. }
  4355. },
  4356. "autoload": {
  4357. "psr-4": {
  4358. "Stevebauman\\Purify\\": "src/"
  4359. }
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Steve Bauman",
  4368. "email": "steven_bauman@outlook.com"
  4369. }
  4370. ],
  4371. "description": "An HTML Purifier / Sanitizer for Laravel",
  4372. "keywords": [
  4373. "Purifier",
  4374. "clean",
  4375. "cleaner",
  4376. "html",
  4377. "laravel",
  4378. "purification",
  4379. "purify"
  4380. ],
  4381. "time": "2019-05-01T14:25:24+00:00"
  4382. },
  4383. {
  4384. "name": "swiftmailer/swiftmailer",
  4385. "version": "v6.2.1",
  4386. "source": {
  4387. "type": "git",
  4388. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4389. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a"
  4390. },
  4391. "dist": {
  4392. "type": "zip",
  4393. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  4394. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  4395. "shasum": ""
  4396. },
  4397. "require": {
  4398. "egulias/email-validator": "~2.0",
  4399. "php": ">=7.0.0",
  4400. "symfony/polyfill-iconv": "^1.0",
  4401. "symfony/polyfill-intl-idn": "^1.10",
  4402. "symfony/polyfill-mbstring": "^1.0"
  4403. },
  4404. "require-dev": {
  4405. "mockery/mockery": "~0.9.1",
  4406. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4407. },
  4408. "suggest": {
  4409. "ext-intl": "Needed to support internationalized email addresses",
  4410. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4411. },
  4412. "type": "library",
  4413. "extra": {
  4414. "branch-alias": {
  4415. "dev-master": "6.2-dev"
  4416. }
  4417. },
  4418. "autoload": {
  4419. "files": [
  4420. "lib/swift_required.php"
  4421. ]
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "authors": [
  4428. {
  4429. "name": "Chris Corbyn"
  4430. },
  4431. {
  4432. "name": "Fabien Potencier",
  4433. "email": "fabien@symfony.com"
  4434. }
  4435. ],
  4436. "description": "Swiftmailer, free feature-rich PHP mailer",
  4437. "homepage": "https://swiftmailer.symfony.com",
  4438. "keywords": [
  4439. "email",
  4440. "mail",
  4441. "mailer"
  4442. ],
  4443. "time": "2019-04-21T09:21:45+00:00"
  4444. },
  4445. {
  4446. "name": "symfony/console",
  4447. "version": "v4.2.8",
  4448. "source": {
  4449. "type": "git",
  4450. "url": "https://github.com/symfony/console.git",
  4451. "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81"
  4452. },
  4453. "dist": {
  4454. "type": "zip",
  4455. "url": "https://api.github.com/repos/symfony/console/zipball/e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
  4456. "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
  4457. "shasum": ""
  4458. },
  4459. "require": {
  4460. "php": "^7.1.3",
  4461. "symfony/contracts": "^1.0",
  4462. "symfony/polyfill-mbstring": "~1.0"
  4463. },
  4464. "conflict": {
  4465. "symfony/dependency-injection": "<3.4",
  4466. "symfony/process": "<3.3"
  4467. },
  4468. "provide": {
  4469. "psr/log-implementation": "1.0"
  4470. },
  4471. "require-dev": {
  4472. "psr/log": "~1.0",
  4473. "symfony/config": "~3.4|~4.0",
  4474. "symfony/dependency-injection": "~3.4|~4.0",
  4475. "symfony/event-dispatcher": "~3.4|~4.0",
  4476. "symfony/lock": "~3.4|~4.0",
  4477. "symfony/process": "~3.4|~4.0"
  4478. },
  4479. "suggest": {
  4480. "psr/log": "For using the console logger",
  4481. "symfony/event-dispatcher": "",
  4482. "symfony/lock": "",
  4483. "symfony/process": ""
  4484. },
  4485. "type": "library",
  4486. "extra": {
  4487. "branch-alias": {
  4488. "dev-master": "4.2-dev"
  4489. }
  4490. },
  4491. "autoload": {
  4492. "psr-4": {
  4493. "Symfony\\Component\\Console\\": ""
  4494. },
  4495. "exclude-from-classmap": [
  4496. "/Tests/"
  4497. ]
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "authors": [
  4504. {
  4505. "name": "Fabien Potencier",
  4506. "email": "fabien@symfony.com"
  4507. },
  4508. {
  4509. "name": "Symfony Community",
  4510. "homepage": "https://symfony.com/contributors"
  4511. }
  4512. ],
  4513. "description": "Symfony Console Component",
  4514. "homepage": "https://symfony.com",
  4515. "time": "2019-04-08T14:23:48+00:00"
  4516. },
  4517. {
  4518. "name": "symfony/contracts",
  4519. "version": "v1.0.2",
  4520. "source": {
  4521. "type": "git",
  4522. "url": "https://github.com/symfony/contracts.git",
  4523. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  4524. },
  4525. "dist": {
  4526. "type": "zip",
  4527. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  4528. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  4529. "shasum": ""
  4530. },
  4531. "require": {
  4532. "php": "^7.1.3"
  4533. },
  4534. "require-dev": {
  4535. "psr/cache": "^1.0",
  4536. "psr/container": "^1.0"
  4537. },
  4538. "suggest": {
  4539. "psr/cache": "When using the Cache contracts",
  4540. "psr/container": "When using the Service contracts",
  4541. "symfony/cache-contracts-implementation": "",
  4542. "symfony/service-contracts-implementation": "",
  4543. "symfony/translation-contracts-implementation": ""
  4544. },
  4545. "type": "library",
  4546. "extra": {
  4547. "branch-alias": {
  4548. "dev-master": "1.0-dev"
  4549. }
  4550. },
  4551. "autoload": {
  4552. "psr-4": {
  4553. "Symfony\\Contracts\\": ""
  4554. },
  4555. "exclude-from-classmap": [
  4556. "**/Tests/"
  4557. ]
  4558. },
  4559. "notification-url": "https://packagist.org/downloads/",
  4560. "license": [
  4561. "MIT"
  4562. ],
  4563. "authors": [
  4564. {
  4565. "name": "Nicolas Grekas",
  4566. "email": "p@tchwork.com"
  4567. },
  4568. {
  4569. "name": "Symfony Community",
  4570. "homepage": "https://symfony.com/contributors"
  4571. }
  4572. ],
  4573. "description": "A set of abstractions extracted out of the Symfony components",
  4574. "homepage": "https://symfony.com",
  4575. "keywords": [
  4576. "abstractions",
  4577. "contracts",
  4578. "decoupling",
  4579. "interfaces",
  4580. "interoperability",
  4581. "standards"
  4582. ],
  4583. "time": "2018-12-05T08:06:11+00:00"
  4584. },
  4585. {
  4586. "name": "symfony/css-selector",
  4587. "version": "v4.2.8",
  4588. "source": {
  4589. "type": "git",
  4590. "url": "https://github.com/symfony/css-selector.git",
  4591. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a"
  4592. },
  4593. "dist": {
  4594. "type": "zip",
  4595. "url": "https://api.github.com/repos/symfony/css-selector/zipball/48eddf66950fa57996e1be4a55916d65c10c604a",
  4596. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a",
  4597. "shasum": ""
  4598. },
  4599. "require": {
  4600. "php": "^7.1.3"
  4601. },
  4602. "type": "library",
  4603. "extra": {
  4604. "branch-alias": {
  4605. "dev-master": "4.2-dev"
  4606. }
  4607. },
  4608. "autoload": {
  4609. "psr-4": {
  4610. "Symfony\\Component\\CssSelector\\": ""
  4611. },
  4612. "exclude-from-classmap": [
  4613. "/Tests/"
  4614. ]
  4615. },
  4616. "notification-url": "https://packagist.org/downloads/",
  4617. "license": [
  4618. "MIT"
  4619. ],
  4620. "authors": [
  4621. {
  4622. "name": "Jean-François Simon",
  4623. "email": "jeanfrancois.simon@sensiolabs.com"
  4624. },
  4625. {
  4626. "name": "Fabien Potencier",
  4627. "email": "fabien@symfony.com"
  4628. },
  4629. {
  4630. "name": "Symfony Community",
  4631. "homepage": "https://symfony.com/contributors"
  4632. }
  4633. ],
  4634. "description": "Symfony CssSelector Component",
  4635. "homepage": "https://symfony.com",
  4636. "time": "2019-01-16T20:31:39+00:00"
  4637. },
  4638. {
  4639. "name": "symfony/debug",
  4640. "version": "v4.2.8",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/symfony/debug.git",
  4644. "reference": "2d279b6bb1d582dd5740d4d3251ae8c18812ed37"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/symfony/debug/zipball/2d279b6bb1d582dd5740d4d3251ae8c18812ed37",
  4649. "reference": "2d279b6bb1d582dd5740d4d3251ae8c18812ed37",
  4650. "shasum": ""
  4651. },
  4652. "require": {
  4653. "php": "^7.1.3",
  4654. "psr/log": "~1.0"
  4655. },
  4656. "conflict": {
  4657. "symfony/http-kernel": "<3.4"
  4658. },
  4659. "require-dev": {
  4660. "symfony/http-kernel": "~3.4|~4.0"
  4661. },
  4662. "type": "library",
  4663. "extra": {
  4664. "branch-alias": {
  4665. "dev-master": "4.2-dev"
  4666. }
  4667. },
  4668. "autoload": {
  4669. "psr-4": {
  4670. "Symfony\\Component\\Debug\\": ""
  4671. },
  4672. "exclude-from-classmap": [
  4673. "/Tests/"
  4674. ]
  4675. },
  4676. "notification-url": "https://packagist.org/downloads/",
  4677. "license": [
  4678. "MIT"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Fabien Potencier",
  4683. "email": "fabien@symfony.com"
  4684. },
  4685. {
  4686. "name": "Symfony Community",
  4687. "homepage": "https://symfony.com/contributors"
  4688. }
  4689. ],
  4690. "description": "Symfony Debug Component",
  4691. "homepage": "https://symfony.com",
  4692. "time": "2019-04-11T11:27:41+00:00"
  4693. },
  4694. {
  4695. "name": "symfony/event-dispatcher",
  4696. "version": "v4.2.8",
  4697. "source": {
  4698. "type": "git",
  4699. "url": "https://github.com/symfony/event-dispatcher.git",
  4700. "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02"
  4701. },
  4702. "dist": {
  4703. "type": "zip",
  4704. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/fbce53cd74ac509cbe74b6f227622650ab759b02",
  4705. "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02",
  4706. "shasum": ""
  4707. },
  4708. "require": {
  4709. "php": "^7.1.3",
  4710. "symfony/contracts": "^1.0"
  4711. },
  4712. "conflict": {
  4713. "symfony/dependency-injection": "<3.4"
  4714. },
  4715. "require-dev": {
  4716. "psr/log": "~1.0",
  4717. "symfony/config": "~3.4|~4.0",
  4718. "symfony/dependency-injection": "~3.4|~4.0",
  4719. "symfony/expression-language": "~3.4|~4.0",
  4720. "symfony/stopwatch": "~3.4|~4.0"
  4721. },
  4722. "suggest": {
  4723. "symfony/dependency-injection": "",
  4724. "symfony/http-kernel": ""
  4725. },
  4726. "type": "library",
  4727. "extra": {
  4728. "branch-alias": {
  4729. "dev-master": "4.2-dev"
  4730. }
  4731. },
  4732. "autoload": {
  4733. "psr-4": {
  4734. "Symfony\\Component\\EventDispatcher\\": ""
  4735. },
  4736. "exclude-from-classmap": [
  4737. "/Tests/"
  4738. ]
  4739. },
  4740. "notification-url": "https://packagist.org/downloads/",
  4741. "license": [
  4742. "MIT"
  4743. ],
  4744. "authors": [
  4745. {
  4746. "name": "Fabien Potencier",
  4747. "email": "fabien@symfony.com"
  4748. },
  4749. {
  4750. "name": "Symfony Community",
  4751. "homepage": "https://symfony.com/contributors"
  4752. }
  4753. ],
  4754. "description": "Symfony EventDispatcher Component",
  4755. "homepage": "https://symfony.com",
  4756. "time": "2019-04-06T13:51:08+00:00"
  4757. },
  4758. {
  4759. "name": "symfony/filesystem",
  4760. "version": "v4.2.8",
  4761. "source": {
  4762. "type": "git",
  4763. "url": "https://github.com/symfony/filesystem.git",
  4764. "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601"
  4765. },
  4766. "dist": {
  4767. "type": "zip",
  4768. "url": "https://api.github.com/repos/symfony/filesystem/zipball/e16b9e471703b2c60b95f14d31c1239f68f11601",
  4769. "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601",
  4770. "shasum": ""
  4771. },
  4772. "require": {
  4773. "php": "^7.1.3",
  4774. "symfony/polyfill-ctype": "~1.8"
  4775. },
  4776. "type": "library",
  4777. "extra": {
  4778. "branch-alias": {
  4779. "dev-master": "4.2-dev"
  4780. }
  4781. },
  4782. "autoload": {
  4783. "psr-4": {
  4784. "Symfony\\Component\\Filesystem\\": ""
  4785. },
  4786. "exclude-from-classmap": [
  4787. "/Tests/"
  4788. ]
  4789. },
  4790. "notification-url": "https://packagist.org/downloads/",
  4791. "license": [
  4792. "MIT"
  4793. ],
  4794. "authors": [
  4795. {
  4796. "name": "Fabien Potencier",
  4797. "email": "fabien@symfony.com"
  4798. },
  4799. {
  4800. "name": "Symfony Community",
  4801. "homepage": "https://symfony.com/contributors"
  4802. }
  4803. ],
  4804. "description": "Symfony Filesystem Component",
  4805. "homepage": "https://symfony.com",
  4806. "time": "2019-02-07T11:40:08+00:00"
  4807. },
  4808. {
  4809. "name": "symfony/finder",
  4810. "version": "v4.2.8",
  4811. "source": {
  4812. "type": "git",
  4813. "url": "https://github.com/symfony/finder.git",
  4814. "reference": "e45135658bd6c14b61850bf131c4f09a55133f69"
  4815. },
  4816. "dist": {
  4817. "type": "zip",
  4818. "url": "https://api.github.com/repos/symfony/finder/zipball/e45135658bd6c14b61850bf131c4f09a55133f69",
  4819. "reference": "e45135658bd6c14b61850bf131c4f09a55133f69",
  4820. "shasum": ""
  4821. },
  4822. "require": {
  4823. "php": "^7.1.3"
  4824. },
  4825. "type": "library",
  4826. "extra": {
  4827. "branch-alias": {
  4828. "dev-master": "4.2-dev"
  4829. }
  4830. },
  4831. "autoload": {
  4832. "psr-4": {
  4833. "Symfony\\Component\\Finder\\": ""
  4834. },
  4835. "exclude-from-classmap": [
  4836. "/Tests/"
  4837. ]
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Fabien Potencier",
  4846. "email": "fabien@symfony.com"
  4847. },
  4848. {
  4849. "name": "Symfony Community",
  4850. "homepage": "https://symfony.com/contributors"
  4851. }
  4852. ],
  4853. "description": "Symfony Finder Component",
  4854. "homepage": "https://symfony.com",
  4855. "time": "2019-04-06T13:51:08+00:00"
  4856. },
  4857. {
  4858. "name": "symfony/http-foundation",
  4859. "version": "v4.2.8",
  4860. "source": {
  4861. "type": "git",
  4862. "url": "https://github.com/symfony/http-foundation.git",
  4863. "reference": "1ea878bd3af18f934dedb8c0de60656a9a31a718"
  4864. },
  4865. "dist": {
  4866. "type": "zip",
  4867. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1ea878bd3af18f934dedb8c0de60656a9a31a718",
  4868. "reference": "1ea878bd3af18f934dedb8c0de60656a9a31a718",
  4869. "shasum": ""
  4870. },
  4871. "require": {
  4872. "php": "^7.1.3",
  4873. "symfony/polyfill-mbstring": "~1.1"
  4874. },
  4875. "require-dev": {
  4876. "predis/predis": "~1.0",
  4877. "symfony/expression-language": "~3.4|~4.0"
  4878. },
  4879. "type": "library",
  4880. "extra": {
  4881. "branch-alias": {
  4882. "dev-master": "4.2-dev"
  4883. }
  4884. },
  4885. "autoload": {
  4886. "psr-4": {
  4887. "Symfony\\Component\\HttpFoundation\\": ""
  4888. },
  4889. "exclude-from-classmap": [
  4890. "/Tests/"
  4891. ]
  4892. },
  4893. "notification-url": "https://packagist.org/downloads/",
  4894. "license": [
  4895. "MIT"
  4896. ],
  4897. "authors": [
  4898. {
  4899. "name": "Fabien Potencier",
  4900. "email": "fabien@symfony.com"
  4901. },
  4902. {
  4903. "name": "Symfony Community",
  4904. "homepage": "https://symfony.com/contributors"
  4905. }
  4906. ],
  4907. "description": "Symfony HttpFoundation Component",
  4908. "homepage": "https://symfony.com",
  4909. "time": "2019-05-01T08:36:31+00:00"
  4910. },
  4911. {
  4912. "name": "symfony/http-kernel",
  4913. "version": "v4.2.8",
  4914. "source": {
  4915. "type": "git",
  4916. "url": "https://github.com/symfony/http-kernel.git",
  4917. "reference": "a7713bc522f1a1cdf0b39f809fa4542523fc3114"
  4918. },
  4919. "dist": {
  4920. "type": "zip",
  4921. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a7713bc522f1a1cdf0b39f809fa4542523fc3114",
  4922. "reference": "a7713bc522f1a1cdf0b39f809fa4542523fc3114",
  4923. "shasum": ""
  4924. },
  4925. "require": {
  4926. "php": "^7.1.3",
  4927. "psr/log": "~1.0",
  4928. "symfony/contracts": "^1.0.2",
  4929. "symfony/debug": "~3.4|~4.0",
  4930. "symfony/event-dispatcher": "~4.1",
  4931. "symfony/http-foundation": "^4.1.1",
  4932. "symfony/polyfill-ctype": "~1.8"
  4933. },
  4934. "conflict": {
  4935. "symfony/config": "<3.4",
  4936. "symfony/dependency-injection": "<4.2",
  4937. "symfony/translation": "<4.2",
  4938. "symfony/var-dumper": "<4.1.1",
  4939. "twig/twig": "<1.34|<2.4,>=2"
  4940. },
  4941. "provide": {
  4942. "psr/log-implementation": "1.0"
  4943. },
  4944. "require-dev": {
  4945. "psr/cache": "~1.0",
  4946. "symfony/browser-kit": "~3.4|~4.0",
  4947. "symfony/config": "~3.4|~4.0",
  4948. "symfony/console": "~3.4|~4.0",
  4949. "symfony/css-selector": "~3.4|~4.0",
  4950. "symfony/dependency-injection": "^4.2",
  4951. "symfony/dom-crawler": "~3.4|~4.0",
  4952. "symfony/expression-language": "~3.4|~4.0",
  4953. "symfony/finder": "~3.4|~4.0",
  4954. "symfony/process": "~3.4|~4.0",
  4955. "symfony/routing": "~3.4|~4.0",
  4956. "symfony/stopwatch": "~3.4|~4.0",
  4957. "symfony/templating": "~3.4|~4.0",
  4958. "symfony/translation": "~4.2",
  4959. "symfony/var-dumper": "^4.1.1"
  4960. },
  4961. "suggest": {
  4962. "symfony/browser-kit": "",
  4963. "symfony/config": "",
  4964. "symfony/console": "",
  4965. "symfony/dependency-injection": "",
  4966. "symfony/var-dumper": ""
  4967. },
  4968. "type": "library",
  4969. "extra": {
  4970. "branch-alias": {
  4971. "dev-master": "4.2-dev"
  4972. }
  4973. },
  4974. "autoload": {
  4975. "psr-4": {
  4976. "Symfony\\Component\\HttpKernel\\": ""
  4977. },
  4978. "exclude-from-classmap": [
  4979. "/Tests/"
  4980. ]
  4981. },
  4982. "notification-url": "https://packagist.org/downloads/",
  4983. "license": [
  4984. "MIT"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "Fabien Potencier",
  4989. "email": "fabien@symfony.com"
  4990. },
  4991. {
  4992. "name": "Symfony Community",
  4993. "homepage": "https://symfony.com/contributors"
  4994. }
  4995. ],
  4996. "description": "Symfony HttpKernel Component",
  4997. "homepage": "https://symfony.com",
  4998. "time": "2019-05-01T13:31:08+00:00"
  4999. },
  5000. {
  5001. "name": "symfony/polyfill-ctype",
  5002. "version": "v1.11.0",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/symfony/polyfill-ctype.git",
  5006. "reference": "82ebae02209c21113908c229e9883c419720738a"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  5011. "reference": "82ebae02209c21113908c229e9883c419720738a",
  5012. "shasum": ""
  5013. },
  5014. "require": {
  5015. "php": ">=5.3.3"
  5016. },
  5017. "suggest": {
  5018. "ext-ctype": "For best performance"
  5019. },
  5020. "type": "library",
  5021. "extra": {
  5022. "branch-alias": {
  5023. "dev-master": "1.11-dev"
  5024. }
  5025. },
  5026. "autoload": {
  5027. "psr-4": {
  5028. "Symfony\\Polyfill\\Ctype\\": ""
  5029. },
  5030. "files": [
  5031. "bootstrap.php"
  5032. ]
  5033. },
  5034. "notification-url": "https://packagist.org/downloads/",
  5035. "license": [
  5036. "MIT"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "Symfony Community",
  5041. "homepage": "https://symfony.com/contributors"
  5042. },
  5043. {
  5044. "name": "Gert de Pagter",
  5045. "email": "backendtea@gmail.com"
  5046. }
  5047. ],
  5048. "description": "Symfony polyfill for ctype functions",
  5049. "homepage": "https://symfony.com",
  5050. "keywords": [
  5051. "compatibility",
  5052. "ctype",
  5053. "polyfill",
  5054. "portable"
  5055. ],
  5056. "time": "2019-02-06T07:57:58+00:00"
  5057. },
  5058. {
  5059. "name": "symfony/polyfill-iconv",
  5060. "version": "v1.11.0",
  5061. "source": {
  5062. "type": "git",
  5063. "url": "https://github.com/symfony/polyfill-iconv.git",
  5064. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  5065. },
  5066. "dist": {
  5067. "type": "zip",
  5068. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  5069. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  5070. "shasum": ""
  5071. },
  5072. "require": {
  5073. "php": ">=5.3.3"
  5074. },
  5075. "suggest": {
  5076. "ext-iconv": "For best performance"
  5077. },
  5078. "type": "library",
  5079. "extra": {
  5080. "branch-alias": {
  5081. "dev-master": "1.11-dev"
  5082. }
  5083. },
  5084. "autoload": {
  5085. "psr-4": {
  5086. "Symfony\\Polyfill\\Iconv\\": ""
  5087. },
  5088. "files": [
  5089. "bootstrap.php"
  5090. ]
  5091. },
  5092. "notification-url": "https://packagist.org/downloads/",
  5093. "license": [
  5094. "MIT"
  5095. ],
  5096. "authors": [
  5097. {
  5098. "name": "Nicolas Grekas",
  5099. "email": "p@tchwork.com"
  5100. },
  5101. {
  5102. "name": "Symfony Community",
  5103. "homepage": "https://symfony.com/contributors"
  5104. }
  5105. ],
  5106. "description": "Symfony polyfill for the Iconv extension",
  5107. "homepage": "https://symfony.com",
  5108. "keywords": [
  5109. "compatibility",
  5110. "iconv",
  5111. "polyfill",
  5112. "portable",
  5113. "shim"
  5114. ],
  5115. "time": "2019-02-06T07:57:58+00:00"
  5116. },
  5117. {
  5118. "name": "symfony/polyfill-intl-idn",
  5119. "version": "v1.11.0",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5123. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  5128. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  5129. "shasum": ""
  5130. },
  5131. "require": {
  5132. "php": ">=5.3.3",
  5133. "symfony/polyfill-mbstring": "^1.3",
  5134. "symfony/polyfill-php72": "^1.9"
  5135. },
  5136. "suggest": {
  5137. "ext-intl": "For best performance"
  5138. },
  5139. "type": "library",
  5140. "extra": {
  5141. "branch-alias": {
  5142. "dev-master": "1.9-dev"
  5143. }
  5144. },
  5145. "autoload": {
  5146. "psr-4": {
  5147. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5148. },
  5149. "files": [
  5150. "bootstrap.php"
  5151. ]
  5152. },
  5153. "notification-url": "https://packagist.org/downloads/",
  5154. "license": [
  5155. "MIT"
  5156. ],
  5157. "authors": [
  5158. {
  5159. "name": "Symfony Community",
  5160. "homepage": "https://symfony.com/contributors"
  5161. },
  5162. {
  5163. "name": "Laurent Bassin",
  5164. "email": "laurent@bassin.info"
  5165. }
  5166. ],
  5167. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5168. "homepage": "https://symfony.com",
  5169. "keywords": [
  5170. "compatibility",
  5171. "idn",
  5172. "intl",
  5173. "polyfill",
  5174. "portable",
  5175. "shim"
  5176. ],
  5177. "time": "2019-03-04T13:44:35+00:00"
  5178. },
  5179. {
  5180. "name": "symfony/polyfill-mbstring",
  5181. "version": "v1.11.0",
  5182. "source": {
  5183. "type": "git",
  5184. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5185. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  5186. },
  5187. "dist": {
  5188. "type": "zip",
  5189. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  5190. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  5191. "shasum": ""
  5192. },
  5193. "require": {
  5194. "php": ">=5.3.3"
  5195. },
  5196. "suggest": {
  5197. "ext-mbstring": "For best performance"
  5198. },
  5199. "type": "library",
  5200. "extra": {
  5201. "branch-alias": {
  5202. "dev-master": "1.11-dev"
  5203. }
  5204. },
  5205. "autoload": {
  5206. "psr-4": {
  5207. "Symfony\\Polyfill\\Mbstring\\": ""
  5208. },
  5209. "files": [
  5210. "bootstrap.php"
  5211. ]
  5212. },
  5213. "notification-url": "https://packagist.org/downloads/",
  5214. "license": [
  5215. "MIT"
  5216. ],
  5217. "authors": [
  5218. {
  5219. "name": "Nicolas Grekas",
  5220. "email": "p@tchwork.com"
  5221. },
  5222. {
  5223. "name": "Symfony Community",
  5224. "homepage": "https://symfony.com/contributors"
  5225. }
  5226. ],
  5227. "description": "Symfony polyfill for the Mbstring extension",
  5228. "homepage": "https://symfony.com",
  5229. "keywords": [
  5230. "compatibility",
  5231. "mbstring",
  5232. "polyfill",
  5233. "portable",
  5234. "shim"
  5235. ],
  5236. "time": "2019-02-06T07:57:58+00:00"
  5237. },
  5238. {
  5239. "name": "symfony/polyfill-php56",
  5240. "version": "v1.11.0",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/symfony/polyfill-php56.git",
  5244. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  5249. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  5250. "shasum": ""
  5251. },
  5252. "require": {
  5253. "php": ">=5.3.3",
  5254. "symfony/polyfill-util": "~1.0"
  5255. },
  5256. "type": "library",
  5257. "extra": {
  5258. "branch-alias": {
  5259. "dev-master": "1.11-dev"
  5260. }
  5261. },
  5262. "autoload": {
  5263. "psr-4": {
  5264. "Symfony\\Polyfill\\Php56\\": ""
  5265. },
  5266. "files": [
  5267. "bootstrap.php"
  5268. ]
  5269. },
  5270. "notification-url": "https://packagist.org/downloads/",
  5271. "license": [
  5272. "MIT"
  5273. ],
  5274. "authors": [
  5275. {
  5276. "name": "Nicolas Grekas",
  5277. "email": "p@tchwork.com"
  5278. },
  5279. {
  5280. "name": "Symfony Community",
  5281. "homepage": "https://symfony.com/contributors"
  5282. }
  5283. ],
  5284. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5285. "homepage": "https://symfony.com",
  5286. "keywords": [
  5287. "compatibility",
  5288. "polyfill",
  5289. "portable",
  5290. "shim"
  5291. ],
  5292. "time": "2019-02-06T07:57:58+00:00"
  5293. },
  5294. {
  5295. "name": "symfony/polyfill-php72",
  5296. "version": "v1.11.0",
  5297. "source": {
  5298. "type": "git",
  5299. "url": "https://github.com/symfony/polyfill-php72.git",
  5300. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  5301. },
  5302. "dist": {
  5303. "type": "zip",
  5304. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  5305. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  5306. "shasum": ""
  5307. },
  5308. "require": {
  5309. "php": ">=5.3.3"
  5310. },
  5311. "type": "library",
  5312. "extra": {
  5313. "branch-alias": {
  5314. "dev-master": "1.11-dev"
  5315. }
  5316. },
  5317. "autoload": {
  5318. "psr-4": {
  5319. "Symfony\\Polyfill\\Php72\\": ""
  5320. },
  5321. "files": [
  5322. "bootstrap.php"
  5323. ]
  5324. },
  5325. "notification-url": "https://packagist.org/downloads/",
  5326. "license": [
  5327. "MIT"
  5328. ],
  5329. "authors": [
  5330. {
  5331. "name": "Nicolas Grekas",
  5332. "email": "p@tchwork.com"
  5333. },
  5334. {
  5335. "name": "Symfony Community",
  5336. "homepage": "https://symfony.com/contributors"
  5337. }
  5338. ],
  5339. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5340. "homepage": "https://symfony.com",
  5341. "keywords": [
  5342. "compatibility",
  5343. "polyfill",
  5344. "portable",
  5345. "shim"
  5346. ],
  5347. "time": "2019-02-06T07:57:58+00:00"
  5348. },
  5349. {
  5350. "name": "symfony/polyfill-util",
  5351. "version": "v1.11.0",
  5352. "source": {
  5353. "type": "git",
  5354. "url": "https://github.com/symfony/polyfill-util.git",
  5355. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897"
  5356. },
  5357. "dist": {
  5358. "type": "zip",
  5359. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/b46c6cae28a3106735323f00a0c38eccf2328897",
  5360. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897",
  5361. "shasum": ""
  5362. },
  5363. "require": {
  5364. "php": ">=5.3.3"
  5365. },
  5366. "type": "library",
  5367. "extra": {
  5368. "branch-alias": {
  5369. "dev-master": "1.11-dev"
  5370. }
  5371. },
  5372. "autoload": {
  5373. "psr-4": {
  5374. "Symfony\\Polyfill\\Util\\": ""
  5375. }
  5376. },
  5377. "notification-url": "https://packagist.org/downloads/",
  5378. "license": [
  5379. "MIT"
  5380. ],
  5381. "authors": [
  5382. {
  5383. "name": "Nicolas Grekas",
  5384. "email": "p@tchwork.com"
  5385. },
  5386. {
  5387. "name": "Symfony Community",
  5388. "homepage": "https://symfony.com/contributors"
  5389. }
  5390. ],
  5391. "description": "Symfony utilities for portability of PHP codes",
  5392. "homepage": "https://symfony.com",
  5393. "keywords": [
  5394. "compat",
  5395. "compatibility",
  5396. "polyfill",
  5397. "shim"
  5398. ],
  5399. "time": "2019-02-08T14:16:39+00:00"
  5400. },
  5401. {
  5402. "name": "symfony/process",
  5403. "version": "v4.2.8",
  5404. "source": {
  5405. "type": "git",
  5406. "url": "https://github.com/symfony/process.git",
  5407. "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe"
  5408. },
  5409. "dist": {
  5410. "type": "zip",
  5411. "url": "https://api.github.com/repos/symfony/process/zipball/8cf39fb4ccff793340c258ee7760fd40bfe745fe",
  5412. "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe",
  5413. "shasum": ""
  5414. },
  5415. "require": {
  5416. "php": "^7.1.3"
  5417. },
  5418. "type": "library",
  5419. "extra": {
  5420. "branch-alias": {
  5421. "dev-master": "4.2-dev"
  5422. }
  5423. },
  5424. "autoload": {
  5425. "psr-4": {
  5426. "Symfony\\Component\\Process\\": ""
  5427. },
  5428. "exclude-from-classmap": [
  5429. "/Tests/"
  5430. ]
  5431. },
  5432. "notification-url": "https://packagist.org/downloads/",
  5433. "license": [
  5434. "MIT"
  5435. ],
  5436. "authors": [
  5437. {
  5438. "name": "Fabien Potencier",
  5439. "email": "fabien@symfony.com"
  5440. },
  5441. {
  5442. "name": "Symfony Community",
  5443. "homepage": "https://symfony.com/contributors"
  5444. }
  5445. ],
  5446. "description": "Symfony Process Component",
  5447. "homepage": "https://symfony.com",
  5448. "time": "2019-04-10T16:20:36+00:00"
  5449. },
  5450. {
  5451. "name": "symfony/psr-http-message-bridge",
  5452. "version": "v1.2.0",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  5456. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  5461. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  5462. "shasum": ""
  5463. },
  5464. "require": {
  5465. "php": "^7.1",
  5466. "psr/http-message": "^1.0",
  5467. "symfony/http-foundation": "^3.4 || ^4.0"
  5468. },
  5469. "require-dev": {
  5470. "nyholm/psr7": "^1.1",
  5471. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  5472. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  5473. },
  5474. "suggest": {
  5475. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  5476. },
  5477. "type": "symfony-bridge",
  5478. "extra": {
  5479. "branch-alias": {
  5480. "dev-master": "1.2-dev"
  5481. }
  5482. },
  5483. "autoload": {
  5484. "psr-4": {
  5485. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5486. },
  5487. "exclude-from-classmap": [
  5488. "/Tests/"
  5489. ]
  5490. },
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "MIT"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Symfony Community",
  5498. "homepage": "http://symfony.com/contributors"
  5499. },
  5500. {
  5501. "name": "Fabien Potencier",
  5502. "email": "fabien@symfony.com"
  5503. }
  5504. ],
  5505. "description": "PSR HTTP message bridge",
  5506. "homepage": "http://symfony.com",
  5507. "keywords": [
  5508. "http",
  5509. "http-message",
  5510. "psr-17",
  5511. "psr-7"
  5512. ],
  5513. "time": "2019-03-11T18:22:33+00:00"
  5514. },
  5515. {
  5516. "name": "symfony/routing",
  5517. "version": "v4.2.8",
  5518. "source": {
  5519. "type": "git",
  5520. "url": "https://github.com/symfony/routing.git",
  5521. "reference": "f4e43bb0dff56f0f62fa056c82d7eadcdb391bab"
  5522. },
  5523. "dist": {
  5524. "type": "zip",
  5525. "url": "https://api.github.com/repos/symfony/routing/zipball/f4e43bb0dff56f0f62fa056c82d7eadcdb391bab",
  5526. "reference": "f4e43bb0dff56f0f62fa056c82d7eadcdb391bab",
  5527. "shasum": ""
  5528. },
  5529. "require": {
  5530. "php": "^7.1.3"
  5531. },
  5532. "conflict": {
  5533. "symfony/config": "<4.2",
  5534. "symfony/dependency-injection": "<3.4",
  5535. "symfony/yaml": "<3.4"
  5536. },
  5537. "require-dev": {
  5538. "doctrine/annotations": "~1.0",
  5539. "psr/log": "~1.0",
  5540. "symfony/config": "~4.2",
  5541. "symfony/dependency-injection": "~3.4|~4.0",
  5542. "symfony/expression-language": "~3.4|~4.0",
  5543. "symfony/http-foundation": "~3.4|~4.0",
  5544. "symfony/yaml": "~3.4|~4.0"
  5545. },
  5546. "suggest": {
  5547. "doctrine/annotations": "For using the annotation loader",
  5548. "symfony/config": "For using the all-in-one router or any loader",
  5549. "symfony/expression-language": "For using expression matching",
  5550. "symfony/http-foundation": "For using a Symfony Request object",
  5551. "symfony/yaml": "For using the YAML loader"
  5552. },
  5553. "type": "library",
  5554. "extra": {
  5555. "branch-alias": {
  5556. "dev-master": "4.2-dev"
  5557. }
  5558. },
  5559. "autoload": {
  5560. "psr-4": {
  5561. "Symfony\\Component\\Routing\\": ""
  5562. },
  5563. "exclude-from-classmap": [
  5564. "/Tests/"
  5565. ]
  5566. },
  5567. "notification-url": "https://packagist.org/downloads/",
  5568. "license": [
  5569. "MIT"
  5570. ],
  5571. "authors": [
  5572. {
  5573. "name": "Fabien Potencier",
  5574. "email": "fabien@symfony.com"
  5575. },
  5576. {
  5577. "name": "Symfony Community",
  5578. "homepage": "https://symfony.com/contributors"
  5579. }
  5580. ],
  5581. "description": "Symfony Routing Component",
  5582. "homepage": "https://symfony.com",
  5583. "keywords": [
  5584. "router",
  5585. "routing",
  5586. "uri",
  5587. "url"
  5588. ],
  5589. "time": "2019-04-27T09:38:08+00:00"
  5590. },
  5591. {
  5592. "name": "symfony/translation",
  5593. "version": "v4.2.8",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/symfony/translation.git",
  5597. "reference": "181a426dd129cb496f12d7e7555f6d0b37a7615b"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/symfony/translation/zipball/181a426dd129cb496f12d7e7555f6d0b37a7615b",
  5602. "reference": "181a426dd129cb496f12d7e7555f6d0b37a7615b",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "php": "^7.1.3",
  5607. "symfony/contracts": "^1.0.2",
  5608. "symfony/polyfill-mbstring": "~1.0"
  5609. },
  5610. "conflict": {
  5611. "symfony/config": "<3.4",
  5612. "symfony/dependency-injection": "<3.4",
  5613. "symfony/yaml": "<3.4"
  5614. },
  5615. "provide": {
  5616. "symfony/translation-contracts-implementation": "1.0"
  5617. },
  5618. "require-dev": {
  5619. "psr/log": "~1.0",
  5620. "symfony/config": "~3.4|~4.0",
  5621. "symfony/console": "~3.4|~4.0",
  5622. "symfony/dependency-injection": "~3.4|~4.0",
  5623. "symfony/finder": "~2.8|~3.0|~4.0",
  5624. "symfony/http-kernel": "~3.4|~4.0",
  5625. "symfony/intl": "~3.4|~4.0",
  5626. "symfony/var-dumper": "~3.4|~4.0",
  5627. "symfony/yaml": "~3.4|~4.0"
  5628. },
  5629. "suggest": {
  5630. "psr/log-implementation": "To use logging capability in translator",
  5631. "symfony/config": "",
  5632. "symfony/yaml": ""
  5633. },
  5634. "type": "library",
  5635. "extra": {
  5636. "branch-alias": {
  5637. "dev-master": "4.2-dev"
  5638. }
  5639. },
  5640. "autoload": {
  5641. "psr-4": {
  5642. "Symfony\\Component\\Translation\\": ""
  5643. },
  5644. "exclude-from-classmap": [
  5645. "/Tests/"
  5646. ]
  5647. },
  5648. "notification-url": "https://packagist.org/downloads/",
  5649. "license": [
  5650. "MIT"
  5651. ],
  5652. "authors": [
  5653. {
  5654. "name": "Fabien Potencier",
  5655. "email": "fabien@symfony.com"
  5656. },
  5657. {
  5658. "name": "Symfony Community",
  5659. "homepage": "https://symfony.com/contributors"
  5660. }
  5661. ],
  5662. "description": "Symfony Translation Component",
  5663. "homepage": "https://symfony.com",
  5664. "time": "2019-05-01T12:55:36+00:00"
  5665. },
  5666. {
  5667. "name": "symfony/var-dumper",
  5668. "version": "v4.2.8",
  5669. "source": {
  5670. "type": "git",
  5671. "url": "https://github.com/symfony/var-dumper.git",
  5672. "reference": "3c4084cb1537c0e2ad41aad622bbf55a44a5c9ce"
  5673. },
  5674. "dist": {
  5675. "type": "zip",
  5676. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3c4084cb1537c0e2ad41aad622bbf55a44a5c9ce",
  5677. "reference": "3c4084cb1537c0e2ad41aad622bbf55a44a5c9ce",
  5678. "shasum": ""
  5679. },
  5680. "require": {
  5681. "php": "^7.1.3",
  5682. "symfony/polyfill-mbstring": "~1.0",
  5683. "symfony/polyfill-php72": "~1.5"
  5684. },
  5685. "conflict": {
  5686. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5687. "symfony/console": "<3.4"
  5688. },
  5689. "require-dev": {
  5690. "ext-iconv": "*",
  5691. "symfony/console": "~3.4|~4.0",
  5692. "symfony/process": "~3.4|~4.0",
  5693. "twig/twig": "~1.34|~2.4"
  5694. },
  5695. "suggest": {
  5696. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5697. "ext-intl": "To show region name in time zone dump",
  5698. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5699. },
  5700. "bin": [
  5701. "Resources/bin/var-dump-server"
  5702. ],
  5703. "type": "library",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-master": "4.2-dev"
  5707. }
  5708. },
  5709. "autoload": {
  5710. "files": [
  5711. "Resources/functions/dump.php"
  5712. ],
  5713. "psr-4": {
  5714. "Symfony\\Component\\VarDumper\\": ""
  5715. },
  5716. "exclude-from-classmap": [
  5717. "/Tests/"
  5718. ]
  5719. },
  5720. "notification-url": "https://packagist.org/downloads/",
  5721. "license": [
  5722. "MIT"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Nicolas Grekas",
  5727. "email": "p@tchwork.com"
  5728. },
  5729. {
  5730. "name": "Symfony Community",
  5731. "homepage": "https://symfony.com/contributors"
  5732. }
  5733. ],
  5734. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5735. "homepage": "https://symfony.com",
  5736. "keywords": [
  5737. "debug",
  5738. "dump"
  5739. ],
  5740. "time": "2019-05-01T12:55:36+00:00"
  5741. },
  5742. {
  5743. "name": "tightenco/collect",
  5744. "version": "v5.8.15",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/tightenco/collect.git",
  5748. "reference": "d1d78dbdd8884c35a79f9750743177297e7f31a9"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/tightenco/collect/zipball/d1d78dbdd8884c35a79f9750743177297e7f31a9",
  5753. "reference": "d1d78dbdd8884c35a79f9750743177297e7f31a9",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "php": "^7.1.3",
  5758. "symfony/var-dumper": ">=3.4 <5"
  5759. },
  5760. "require-dev": {
  5761. "mockery/mockery": "^1.0",
  5762. "nesbot/carbon": "^1.26.3",
  5763. "phpunit/phpunit": "^7.0"
  5764. },
  5765. "type": "library",
  5766. "autoload": {
  5767. "files": [
  5768. "src/Collect/Support/helpers.php",
  5769. "src/Collect/Support/alias.php"
  5770. ],
  5771. "psr-4": {
  5772. "Tightenco\\Collect\\": "src/Collect"
  5773. }
  5774. },
  5775. "notification-url": "https://packagist.org/downloads/",
  5776. "license": [
  5777. "MIT"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "Taylor Otwell",
  5782. "email": "taylorotwell@gmail.com"
  5783. }
  5784. ],
  5785. "description": "Collect - Illuminate Collections as a separate package.",
  5786. "keywords": [
  5787. "collection",
  5788. "laravel"
  5789. ],
  5790. "time": "2019-04-18T18:52:05+00:00"
  5791. },
  5792. {
  5793. "name": "tijsverkoyen/css-to-inline-styles",
  5794. "version": "2.2.1",
  5795. "source": {
  5796. "type": "git",
  5797. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5798. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  5799. },
  5800. "dist": {
  5801. "type": "zip",
  5802. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  5803. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  5804. "shasum": ""
  5805. },
  5806. "require": {
  5807. "php": "^5.5 || ^7.0",
  5808. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  5809. },
  5810. "require-dev": {
  5811. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5812. },
  5813. "type": "library",
  5814. "extra": {
  5815. "branch-alias": {
  5816. "dev-master": "2.2.x-dev"
  5817. }
  5818. },
  5819. "autoload": {
  5820. "psr-4": {
  5821. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5822. }
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "BSD-3-Clause"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "Tijs Verkoyen",
  5831. "email": "css_to_inline_styles@verkoyen.eu",
  5832. "role": "Developer"
  5833. }
  5834. ],
  5835. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  5836. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5837. "time": "2017-11-27T11:13:29+00:00"
  5838. },
  5839. {
  5840. "name": "vlucas/phpdotenv",
  5841. "version": "v3.3.3",
  5842. "source": {
  5843. "type": "git",
  5844. "url": "https://github.com/vlucas/phpdotenv.git",
  5845. "reference": "dbcc609971dd9b55f48b8008b553d79fd372ddde"
  5846. },
  5847. "dist": {
  5848. "type": "zip",
  5849. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/dbcc609971dd9b55f48b8008b553d79fd372ddde",
  5850. "reference": "dbcc609971dd9b55f48b8008b553d79fd372ddde",
  5851. "shasum": ""
  5852. },
  5853. "require": {
  5854. "php": "^5.4 || ^7.0",
  5855. "phpoption/phpoption": "^1.5",
  5856. "symfony/polyfill-ctype": "^1.9"
  5857. },
  5858. "require-dev": {
  5859. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0"
  5860. },
  5861. "type": "library",
  5862. "extra": {
  5863. "branch-alias": {
  5864. "dev-master": "3.3-dev"
  5865. }
  5866. },
  5867. "autoload": {
  5868. "psr-4": {
  5869. "Dotenv\\": "src/"
  5870. }
  5871. },
  5872. "notification-url": "https://packagist.org/downloads/",
  5873. "license": [
  5874. "BSD-3-Clause"
  5875. ],
  5876. "authors": [
  5877. {
  5878. "name": "Vance Lucas",
  5879. "email": "vance@vancelucas.com",
  5880. "homepage": "http://www.vancelucas.com"
  5881. }
  5882. ],
  5883. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5884. "keywords": [
  5885. "dotenv",
  5886. "env",
  5887. "environment"
  5888. ],
  5889. "time": "2019-03-06T09:39:45+00:00"
  5890. },
  5891. {
  5892. "name": "zendframework/zend-diactoros",
  5893. "version": "2.1.2",
  5894. "source": {
  5895. "type": "git",
  5896. "url": "https://github.com/zendframework/zend-diactoros.git",
  5897. "reference": "37bf68b428850ee26ed7c3be6c26236dd95a95f1"
  5898. },
  5899. "dist": {
  5900. "type": "zip",
  5901. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/37bf68b428850ee26ed7c3be6c26236dd95a95f1",
  5902. "reference": "37bf68b428850ee26ed7c3be6c26236dd95a95f1",
  5903. "shasum": ""
  5904. },
  5905. "require": {
  5906. "php": "^7.1",
  5907. "psr/http-factory": "^1.0",
  5908. "psr/http-message": "^1.0"
  5909. },
  5910. "provide": {
  5911. "psr/http-factory-implementation": "1.0",
  5912. "psr/http-message-implementation": "1.0"
  5913. },
  5914. "require-dev": {
  5915. "ext-dom": "*",
  5916. "ext-libxml": "*",
  5917. "http-interop/http-factory-tests": "^0.5.0",
  5918. "php-http/psr7-integration-tests": "dev-master",
  5919. "phpunit/phpunit": "^7.0.2",
  5920. "zendframework/zend-coding-standard": "~1.0.0"
  5921. },
  5922. "type": "library",
  5923. "extra": {
  5924. "branch-alias": {
  5925. "dev-master": "2.1.x-dev",
  5926. "dev-develop": "2.2.x-dev",
  5927. "dev-release-1.8": "1.8.x-dev"
  5928. }
  5929. },
  5930. "autoload": {
  5931. "files": [
  5932. "src/functions/create_uploaded_file.php",
  5933. "src/functions/marshal_headers_from_sapi.php",
  5934. "src/functions/marshal_method_from_sapi.php",
  5935. "src/functions/marshal_protocol_version_from_sapi.php",
  5936. "src/functions/marshal_uri_from_sapi.php",
  5937. "src/functions/normalize_server.php",
  5938. "src/functions/normalize_uploaded_files.php",
  5939. "src/functions/parse_cookie_header.php"
  5940. ],
  5941. "psr-4": {
  5942. "Zend\\Diactoros\\": "src/"
  5943. }
  5944. },
  5945. "notification-url": "https://packagist.org/downloads/",
  5946. "license": [
  5947. "BSD-3-Clause"
  5948. ],
  5949. "description": "PSR HTTP Message implementations",
  5950. "keywords": [
  5951. "http",
  5952. "psr",
  5953. "psr-7"
  5954. ],
  5955. "time": "2019-04-29T21:11:00+00:00"
  5956. }
  5957. ],
  5958. "packages-dev": [
  5959. {
  5960. "name": "doctrine/instantiator",
  5961. "version": "1.2.0",
  5962. "source": {
  5963. "type": "git",
  5964. "url": "https://github.com/doctrine/instantiator.git",
  5965. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  5966. },
  5967. "dist": {
  5968. "type": "zip",
  5969. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  5970. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  5971. "shasum": ""
  5972. },
  5973. "require": {
  5974. "php": "^7.1"
  5975. },
  5976. "require-dev": {
  5977. "doctrine/coding-standard": "^6.0",
  5978. "ext-pdo": "*",
  5979. "ext-phar": "*",
  5980. "phpbench/phpbench": "^0.13",
  5981. "phpstan/phpstan-phpunit": "^0.11",
  5982. "phpstan/phpstan-shim": "^0.11",
  5983. "phpunit/phpunit": "^7.0"
  5984. },
  5985. "type": "library",
  5986. "extra": {
  5987. "branch-alias": {
  5988. "dev-master": "1.2.x-dev"
  5989. }
  5990. },
  5991. "autoload": {
  5992. "psr-4": {
  5993. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5994. }
  5995. },
  5996. "notification-url": "https://packagist.org/downloads/",
  5997. "license": [
  5998. "MIT"
  5999. ],
  6000. "authors": [
  6001. {
  6002. "name": "Marco Pivetta",
  6003. "email": "ocramius@gmail.com",
  6004. "homepage": "http://ocramius.github.com/"
  6005. }
  6006. ],
  6007. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6008. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6009. "keywords": [
  6010. "constructor",
  6011. "instantiate"
  6012. ],
  6013. "time": "2019-03-17T17:37:11+00:00"
  6014. },
  6015. {
  6016. "name": "filp/whoops",
  6017. "version": "2.3.1",
  6018. "source": {
  6019. "type": "git",
  6020. "url": "https://github.com/filp/whoops.git",
  6021. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  6022. },
  6023. "dist": {
  6024. "type": "zip",
  6025. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  6026. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  6027. "shasum": ""
  6028. },
  6029. "require": {
  6030. "php": "^5.5.9 || ^7.0",
  6031. "psr/log": "^1.0.1"
  6032. },
  6033. "require-dev": {
  6034. "mockery/mockery": "^0.9 || ^1.0",
  6035. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6036. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  6037. },
  6038. "suggest": {
  6039. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6040. "whoops/soap": "Formats errors as SOAP responses"
  6041. },
  6042. "type": "library",
  6043. "extra": {
  6044. "branch-alias": {
  6045. "dev-master": "2.2-dev"
  6046. }
  6047. },
  6048. "autoload": {
  6049. "psr-4": {
  6050. "Whoops\\": "src/Whoops/"
  6051. }
  6052. },
  6053. "notification-url": "https://packagist.org/downloads/",
  6054. "license": [
  6055. "MIT"
  6056. ],
  6057. "authors": [
  6058. {
  6059. "name": "Filipe Dobreira",
  6060. "homepage": "https://github.com/filp",
  6061. "role": "Developer"
  6062. }
  6063. ],
  6064. "description": "php error handling for cool kids",
  6065. "homepage": "https://filp.github.io/whoops/",
  6066. "keywords": [
  6067. "error",
  6068. "exception",
  6069. "handling",
  6070. "library",
  6071. "throwable",
  6072. "whoops"
  6073. ],
  6074. "time": "2018-10-23T09:00:00+00:00"
  6075. },
  6076. {
  6077. "name": "fzaninotto/faker",
  6078. "version": "v1.8.0",
  6079. "source": {
  6080. "type": "git",
  6081. "url": "https://github.com/fzaninotto/Faker.git",
  6082. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  6083. },
  6084. "dist": {
  6085. "type": "zip",
  6086. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  6087. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  6088. "shasum": ""
  6089. },
  6090. "require": {
  6091. "php": "^5.3.3 || ^7.0"
  6092. },
  6093. "require-dev": {
  6094. "ext-intl": "*",
  6095. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6096. "squizlabs/php_codesniffer": "^1.5"
  6097. },
  6098. "type": "library",
  6099. "extra": {
  6100. "branch-alias": {
  6101. "dev-master": "1.8-dev"
  6102. }
  6103. },
  6104. "autoload": {
  6105. "psr-4": {
  6106. "Faker\\": "src/Faker/"
  6107. }
  6108. },
  6109. "notification-url": "https://packagist.org/downloads/",
  6110. "license": [
  6111. "MIT"
  6112. ],
  6113. "authors": [
  6114. {
  6115. "name": "François Zaninotto"
  6116. }
  6117. ],
  6118. "description": "Faker is a PHP library that generates fake data for you.",
  6119. "keywords": [
  6120. "data",
  6121. "faker",
  6122. "fixtures"
  6123. ],
  6124. "time": "2018-07-12T10:23:15+00:00"
  6125. },
  6126. {
  6127. "name": "hamcrest/hamcrest-php",
  6128. "version": "v2.0.0",
  6129. "source": {
  6130. "type": "git",
  6131. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6132. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  6133. },
  6134. "dist": {
  6135. "type": "zip",
  6136. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  6137. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  6138. "shasum": ""
  6139. },
  6140. "require": {
  6141. "php": "^5.3|^7.0"
  6142. },
  6143. "replace": {
  6144. "cordoval/hamcrest-php": "*",
  6145. "davedevelopment/hamcrest-php": "*",
  6146. "kodova/hamcrest-php": "*"
  6147. },
  6148. "require-dev": {
  6149. "phpunit/php-file-iterator": "1.3.3",
  6150. "phpunit/phpunit": "~4.0",
  6151. "satooshi/php-coveralls": "^1.0"
  6152. },
  6153. "type": "library",
  6154. "extra": {
  6155. "branch-alias": {
  6156. "dev-master": "2.0-dev"
  6157. }
  6158. },
  6159. "autoload": {
  6160. "classmap": [
  6161. "hamcrest"
  6162. ]
  6163. },
  6164. "notification-url": "https://packagist.org/downloads/",
  6165. "license": [
  6166. "BSD"
  6167. ],
  6168. "description": "This is the PHP port of Hamcrest Matchers",
  6169. "keywords": [
  6170. "test"
  6171. ],
  6172. "time": "2016-01-20T08:20:44+00:00"
  6173. },
  6174. {
  6175. "name": "mockery/mockery",
  6176. "version": "1.2.2",
  6177. "source": {
  6178. "type": "git",
  6179. "url": "https://github.com/mockery/mockery.git",
  6180. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2"
  6181. },
  6182. "dist": {
  6183. "type": "zip",
  6184. "url": "https://api.github.com/repos/mockery/mockery/zipball/0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  6185. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  6186. "shasum": ""
  6187. },
  6188. "require": {
  6189. "hamcrest/hamcrest-php": "~2.0",
  6190. "lib-pcre": ">=7.0",
  6191. "php": ">=5.6.0"
  6192. },
  6193. "require-dev": {
  6194. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  6195. },
  6196. "type": "library",
  6197. "extra": {
  6198. "branch-alias": {
  6199. "dev-master": "1.0.x-dev"
  6200. }
  6201. },
  6202. "autoload": {
  6203. "psr-0": {
  6204. "Mockery": "library/"
  6205. }
  6206. },
  6207. "notification-url": "https://packagist.org/downloads/",
  6208. "license": [
  6209. "BSD-3-Clause"
  6210. ],
  6211. "authors": [
  6212. {
  6213. "name": "Pádraic Brady",
  6214. "email": "padraic.brady@gmail.com",
  6215. "homepage": "http://blog.astrumfutura.com"
  6216. },
  6217. {
  6218. "name": "Dave Marshall",
  6219. "email": "dave.marshall@atstsolutions.co.uk",
  6220. "homepage": "http://davedevelopment.co.uk"
  6221. }
  6222. ],
  6223. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6224. "homepage": "https://github.com/mockery/mockery",
  6225. "keywords": [
  6226. "BDD",
  6227. "TDD",
  6228. "library",
  6229. "mock",
  6230. "mock objects",
  6231. "mockery",
  6232. "stub",
  6233. "test",
  6234. "test double",
  6235. "testing"
  6236. ],
  6237. "time": "2019-02-13T09:37:52+00:00"
  6238. },
  6239. {
  6240. "name": "myclabs/deep-copy",
  6241. "version": "1.9.1",
  6242. "source": {
  6243. "type": "git",
  6244. "url": "https://github.com/myclabs/DeepCopy.git",
  6245. "reference": "e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72"
  6246. },
  6247. "dist": {
  6248. "type": "zip",
  6249. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72",
  6250. "reference": "e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72",
  6251. "shasum": ""
  6252. },
  6253. "require": {
  6254. "php": "^7.1"
  6255. },
  6256. "replace": {
  6257. "myclabs/deep-copy": "self.version"
  6258. },
  6259. "require-dev": {
  6260. "doctrine/collections": "^1.0",
  6261. "doctrine/common": "^2.6",
  6262. "phpunit/phpunit": "^7.1"
  6263. },
  6264. "type": "library",
  6265. "autoload": {
  6266. "psr-4": {
  6267. "DeepCopy\\": "src/DeepCopy/"
  6268. },
  6269. "files": [
  6270. "src/DeepCopy/deep_copy.php"
  6271. ]
  6272. },
  6273. "notification-url": "https://packagist.org/downloads/",
  6274. "license": [
  6275. "MIT"
  6276. ],
  6277. "description": "Create deep copies (clones) of your objects",
  6278. "keywords": [
  6279. "clone",
  6280. "copy",
  6281. "duplicate",
  6282. "object",
  6283. "object graph"
  6284. ],
  6285. "time": "2019-04-07T13:18:21+00:00"
  6286. },
  6287. {
  6288. "name": "nunomaduro/collision",
  6289. "version": "v2.1.1",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/nunomaduro/collision.git",
  6293. "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
  6298. "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
  6299. "shasum": ""
  6300. },
  6301. "require": {
  6302. "filp/whoops": "^2.1.4",
  6303. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  6304. "php": "^7.1",
  6305. "symfony/console": "~2.8|~3.3|~4.0"
  6306. },
  6307. "require-dev": {
  6308. "laravel/framework": "5.7.*",
  6309. "nunomaduro/larastan": "^0.3.0",
  6310. "phpstan/phpstan": "^0.10",
  6311. "phpunit/phpunit": "~7.3"
  6312. },
  6313. "type": "library",
  6314. "extra": {
  6315. "laravel": {
  6316. "providers": [
  6317. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6318. ]
  6319. }
  6320. },
  6321. "autoload": {
  6322. "psr-4": {
  6323. "NunoMaduro\\Collision\\": "src/"
  6324. }
  6325. },
  6326. "notification-url": "https://packagist.org/downloads/",
  6327. "license": [
  6328. "MIT"
  6329. ],
  6330. "authors": [
  6331. {
  6332. "name": "Nuno Maduro",
  6333. "email": "enunomaduro@gmail.com"
  6334. }
  6335. ],
  6336. "description": "Cli error handling for console/command-line PHP applications.",
  6337. "keywords": [
  6338. "artisan",
  6339. "cli",
  6340. "command-line",
  6341. "console",
  6342. "error",
  6343. "handling",
  6344. "laravel",
  6345. "laravel-zero",
  6346. "php",
  6347. "symfony"
  6348. ],
  6349. "time": "2018-11-21T21:40:54+00:00"
  6350. },
  6351. {
  6352. "name": "phar-io/manifest",
  6353. "version": "1.0.3",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/phar-io/manifest.git",
  6357. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6362. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6363. "shasum": ""
  6364. },
  6365. "require": {
  6366. "ext-dom": "*",
  6367. "ext-phar": "*",
  6368. "phar-io/version": "^2.0",
  6369. "php": "^5.6 || ^7.0"
  6370. },
  6371. "type": "library",
  6372. "extra": {
  6373. "branch-alias": {
  6374. "dev-master": "1.0.x-dev"
  6375. }
  6376. },
  6377. "autoload": {
  6378. "classmap": [
  6379. "src/"
  6380. ]
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "BSD-3-Clause"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Arne Blankerts",
  6389. "email": "arne@blankerts.de",
  6390. "role": "Developer"
  6391. },
  6392. {
  6393. "name": "Sebastian Heuer",
  6394. "email": "sebastian@phpeople.de",
  6395. "role": "Developer"
  6396. },
  6397. {
  6398. "name": "Sebastian Bergmann",
  6399. "email": "sebastian@phpunit.de",
  6400. "role": "Developer"
  6401. }
  6402. ],
  6403. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6404. "time": "2018-07-08T19:23:20+00:00"
  6405. },
  6406. {
  6407. "name": "phar-io/version",
  6408. "version": "2.0.1",
  6409. "source": {
  6410. "type": "git",
  6411. "url": "https://github.com/phar-io/version.git",
  6412. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6413. },
  6414. "dist": {
  6415. "type": "zip",
  6416. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6417. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6418. "shasum": ""
  6419. },
  6420. "require": {
  6421. "php": "^5.6 || ^7.0"
  6422. },
  6423. "type": "library",
  6424. "autoload": {
  6425. "classmap": [
  6426. "src/"
  6427. ]
  6428. },
  6429. "notification-url": "https://packagist.org/downloads/",
  6430. "license": [
  6431. "BSD-3-Clause"
  6432. ],
  6433. "authors": [
  6434. {
  6435. "name": "Arne Blankerts",
  6436. "email": "arne@blankerts.de",
  6437. "role": "Developer"
  6438. },
  6439. {
  6440. "name": "Sebastian Heuer",
  6441. "email": "sebastian@phpeople.de",
  6442. "role": "Developer"
  6443. },
  6444. {
  6445. "name": "Sebastian Bergmann",
  6446. "email": "sebastian@phpunit.de",
  6447. "role": "Developer"
  6448. }
  6449. ],
  6450. "description": "Library for handling version information and constraints",
  6451. "time": "2018-07-08T19:19:57+00:00"
  6452. },
  6453. {
  6454. "name": "phpdocumentor/reflection-common",
  6455. "version": "1.0.1",
  6456. "source": {
  6457. "type": "git",
  6458. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6459. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  6460. },
  6461. "dist": {
  6462. "type": "zip",
  6463. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  6464. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  6465. "shasum": ""
  6466. },
  6467. "require": {
  6468. "php": ">=5.5"
  6469. },
  6470. "require-dev": {
  6471. "phpunit/phpunit": "^4.6"
  6472. },
  6473. "type": "library",
  6474. "extra": {
  6475. "branch-alias": {
  6476. "dev-master": "1.0.x-dev"
  6477. }
  6478. },
  6479. "autoload": {
  6480. "psr-4": {
  6481. "phpDocumentor\\Reflection\\": [
  6482. "src"
  6483. ]
  6484. }
  6485. },
  6486. "notification-url": "https://packagist.org/downloads/",
  6487. "license": [
  6488. "MIT"
  6489. ],
  6490. "authors": [
  6491. {
  6492. "name": "Jaap van Otterdijk",
  6493. "email": "opensource@ijaap.nl"
  6494. }
  6495. ],
  6496. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6497. "homepage": "http://www.phpdoc.org",
  6498. "keywords": [
  6499. "FQSEN",
  6500. "phpDocumentor",
  6501. "phpdoc",
  6502. "reflection",
  6503. "static analysis"
  6504. ],
  6505. "time": "2017-09-11T18:02:19+00:00"
  6506. },
  6507. {
  6508. "name": "phpdocumentor/reflection-docblock",
  6509. "version": "4.3.1",
  6510. "source": {
  6511. "type": "git",
  6512. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6513. "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c"
  6514. },
  6515. "dist": {
  6516. "type": "zip",
  6517. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c",
  6518. "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c",
  6519. "shasum": ""
  6520. },
  6521. "require": {
  6522. "php": "^7.0",
  6523. "phpdocumentor/reflection-common": "^1.0.0",
  6524. "phpdocumentor/type-resolver": "^0.4.0",
  6525. "webmozart/assert": "^1.0"
  6526. },
  6527. "require-dev": {
  6528. "doctrine/instantiator": "~1.0.5",
  6529. "mockery/mockery": "^1.0",
  6530. "phpunit/phpunit": "^6.4"
  6531. },
  6532. "type": "library",
  6533. "extra": {
  6534. "branch-alias": {
  6535. "dev-master": "4.x-dev"
  6536. }
  6537. },
  6538. "autoload": {
  6539. "psr-4": {
  6540. "phpDocumentor\\Reflection\\": [
  6541. "src/"
  6542. ]
  6543. }
  6544. },
  6545. "notification-url": "https://packagist.org/downloads/",
  6546. "license": [
  6547. "MIT"
  6548. ],
  6549. "authors": [
  6550. {
  6551. "name": "Mike van Riel",
  6552. "email": "me@mikevanriel.com"
  6553. }
  6554. ],
  6555. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6556. "time": "2019-04-30T17:48:53+00:00"
  6557. },
  6558. {
  6559. "name": "phpdocumentor/type-resolver",
  6560. "version": "0.4.0",
  6561. "source": {
  6562. "type": "git",
  6563. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6564. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  6565. },
  6566. "dist": {
  6567. "type": "zip",
  6568. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  6569. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  6570. "shasum": ""
  6571. },
  6572. "require": {
  6573. "php": "^5.5 || ^7.0",
  6574. "phpdocumentor/reflection-common": "^1.0"
  6575. },
  6576. "require-dev": {
  6577. "mockery/mockery": "^0.9.4",
  6578. "phpunit/phpunit": "^5.2||^4.8.24"
  6579. },
  6580. "type": "library",
  6581. "extra": {
  6582. "branch-alias": {
  6583. "dev-master": "1.0.x-dev"
  6584. }
  6585. },
  6586. "autoload": {
  6587. "psr-4": {
  6588. "phpDocumentor\\Reflection\\": [
  6589. "src/"
  6590. ]
  6591. }
  6592. },
  6593. "notification-url": "https://packagist.org/downloads/",
  6594. "license": [
  6595. "MIT"
  6596. ],
  6597. "authors": [
  6598. {
  6599. "name": "Mike van Riel",
  6600. "email": "me@mikevanriel.com"
  6601. }
  6602. ],
  6603. "time": "2017-07-14T14:27:02+00:00"
  6604. },
  6605. {
  6606. "name": "phpspec/prophecy",
  6607. "version": "1.8.0",
  6608. "source": {
  6609. "type": "git",
  6610. "url": "https://github.com/phpspec/prophecy.git",
  6611. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  6612. },
  6613. "dist": {
  6614. "type": "zip",
  6615. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  6616. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  6617. "shasum": ""
  6618. },
  6619. "require": {
  6620. "doctrine/instantiator": "^1.0.2",
  6621. "php": "^5.3|^7.0",
  6622. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  6623. "sebastian/comparator": "^1.1|^2.0|^3.0",
  6624. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  6625. },
  6626. "require-dev": {
  6627. "phpspec/phpspec": "^2.5|^3.2",
  6628. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  6629. },
  6630. "type": "library",
  6631. "extra": {
  6632. "branch-alias": {
  6633. "dev-master": "1.8.x-dev"
  6634. }
  6635. },
  6636. "autoload": {
  6637. "psr-0": {
  6638. "Prophecy\\": "src/"
  6639. }
  6640. },
  6641. "notification-url": "https://packagist.org/downloads/",
  6642. "license": [
  6643. "MIT"
  6644. ],
  6645. "authors": [
  6646. {
  6647. "name": "Konstantin Kudryashov",
  6648. "email": "ever.zet@gmail.com",
  6649. "homepage": "http://everzet.com"
  6650. },
  6651. {
  6652. "name": "Marcello Duarte",
  6653. "email": "marcello.duarte@gmail.com"
  6654. }
  6655. ],
  6656. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6657. "homepage": "https://github.com/phpspec/prophecy",
  6658. "keywords": [
  6659. "Double",
  6660. "Dummy",
  6661. "fake",
  6662. "mock",
  6663. "spy",
  6664. "stub"
  6665. ],
  6666. "time": "2018-08-05T17:53:17+00:00"
  6667. },
  6668. {
  6669. "name": "phpunit/php-code-coverage",
  6670. "version": "6.1.4",
  6671. "source": {
  6672. "type": "git",
  6673. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6674. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  6675. },
  6676. "dist": {
  6677. "type": "zip",
  6678. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  6679. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  6680. "shasum": ""
  6681. },
  6682. "require": {
  6683. "ext-dom": "*",
  6684. "ext-xmlwriter": "*",
  6685. "php": "^7.1",
  6686. "phpunit/php-file-iterator": "^2.0",
  6687. "phpunit/php-text-template": "^1.2.1",
  6688. "phpunit/php-token-stream": "^3.0",
  6689. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  6690. "sebastian/environment": "^3.1 || ^4.0",
  6691. "sebastian/version": "^2.0.1",
  6692. "theseer/tokenizer": "^1.1"
  6693. },
  6694. "require-dev": {
  6695. "phpunit/phpunit": "^7.0"
  6696. },
  6697. "suggest": {
  6698. "ext-xdebug": "^2.6.0"
  6699. },
  6700. "type": "library",
  6701. "extra": {
  6702. "branch-alias": {
  6703. "dev-master": "6.1-dev"
  6704. }
  6705. },
  6706. "autoload": {
  6707. "classmap": [
  6708. "src/"
  6709. ]
  6710. },
  6711. "notification-url": "https://packagist.org/downloads/",
  6712. "license": [
  6713. "BSD-3-Clause"
  6714. ],
  6715. "authors": [
  6716. {
  6717. "name": "Sebastian Bergmann",
  6718. "email": "sebastian@phpunit.de",
  6719. "role": "lead"
  6720. }
  6721. ],
  6722. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6723. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6724. "keywords": [
  6725. "coverage",
  6726. "testing",
  6727. "xunit"
  6728. ],
  6729. "time": "2018-10-31T16:06:48+00:00"
  6730. },
  6731. {
  6732. "name": "phpunit/php-file-iterator",
  6733. "version": "2.0.2",
  6734. "source": {
  6735. "type": "git",
  6736. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6737. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  6738. },
  6739. "dist": {
  6740. "type": "zip",
  6741. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  6742. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  6743. "shasum": ""
  6744. },
  6745. "require": {
  6746. "php": "^7.1"
  6747. },
  6748. "require-dev": {
  6749. "phpunit/phpunit": "^7.1"
  6750. },
  6751. "type": "library",
  6752. "extra": {
  6753. "branch-alias": {
  6754. "dev-master": "2.0.x-dev"
  6755. }
  6756. },
  6757. "autoload": {
  6758. "classmap": [
  6759. "src/"
  6760. ]
  6761. },
  6762. "notification-url": "https://packagist.org/downloads/",
  6763. "license": [
  6764. "BSD-3-Clause"
  6765. ],
  6766. "authors": [
  6767. {
  6768. "name": "Sebastian Bergmann",
  6769. "email": "sebastian@phpunit.de",
  6770. "role": "lead"
  6771. }
  6772. ],
  6773. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6774. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6775. "keywords": [
  6776. "filesystem",
  6777. "iterator"
  6778. ],
  6779. "time": "2018-09-13T20:33:42+00:00"
  6780. },
  6781. {
  6782. "name": "phpunit/php-text-template",
  6783. "version": "1.2.1",
  6784. "source": {
  6785. "type": "git",
  6786. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6787. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  6788. },
  6789. "dist": {
  6790. "type": "zip",
  6791. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6792. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6793. "shasum": ""
  6794. },
  6795. "require": {
  6796. "php": ">=5.3.3"
  6797. },
  6798. "type": "library",
  6799. "autoload": {
  6800. "classmap": [
  6801. "src/"
  6802. ]
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "BSD-3-Clause"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Sebastian Bergmann",
  6811. "email": "sebastian@phpunit.de",
  6812. "role": "lead"
  6813. }
  6814. ],
  6815. "description": "Simple template engine.",
  6816. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6817. "keywords": [
  6818. "template"
  6819. ],
  6820. "time": "2015-06-21T13:50:34+00:00"
  6821. },
  6822. {
  6823. "name": "phpunit/php-timer",
  6824. "version": "2.1.1",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6828. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059",
  6833. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "php": "^7.1"
  6838. },
  6839. "require-dev": {
  6840. "phpunit/phpunit": "^7.0"
  6841. },
  6842. "type": "library",
  6843. "extra": {
  6844. "branch-alias": {
  6845. "dev-master": "2.1-dev"
  6846. }
  6847. },
  6848. "autoload": {
  6849. "classmap": [
  6850. "src/"
  6851. ]
  6852. },
  6853. "notification-url": "https://packagist.org/downloads/",
  6854. "license": [
  6855. "BSD-3-Clause"
  6856. ],
  6857. "authors": [
  6858. {
  6859. "name": "Sebastian Bergmann",
  6860. "email": "sebastian@phpunit.de",
  6861. "role": "lead"
  6862. }
  6863. ],
  6864. "description": "Utility class for timing",
  6865. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6866. "keywords": [
  6867. "timer"
  6868. ],
  6869. "time": "2019-02-20T10:12:59+00:00"
  6870. },
  6871. {
  6872. "name": "phpunit/php-token-stream",
  6873. "version": "3.0.1",
  6874. "source": {
  6875. "type": "git",
  6876. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6877. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
  6878. },
  6879. "dist": {
  6880. "type": "zip",
  6881. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6882. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6883. "shasum": ""
  6884. },
  6885. "require": {
  6886. "ext-tokenizer": "*",
  6887. "php": "^7.1"
  6888. },
  6889. "require-dev": {
  6890. "phpunit/phpunit": "^7.0"
  6891. },
  6892. "type": "library",
  6893. "extra": {
  6894. "branch-alias": {
  6895. "dev-master": "3.0-dev"
  6896. }
  6897. },
  6898. "autoload": {
  6899. "classmap": [
  6900. "src/"
  6901. ]
  6902. },
  6903. "notification-url": "https://packagist.org/downloads/",
  6904. "license": [
  6905. "BSD-3-Clause"
  6906. ],
  6907. "authors": [
  6908. {
  6909. "name": "Sebastian Bergmann",
  6910. "email": "sebastian@phpunit.de"
  6911. }
  6912. ],
  6913. "description": "Wrapper around PHP's tokenizer extension.",
  6914. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6915. "keywords": [
  6916. "tokenizer"
  6917. ],
  6918. "time": "2018-10-30T05:52:18+00:00"
  6919. },
  6920. {
  6921. "name": "phpunit/phpunit",
  6922. "version": "7.5.9",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6926. "reference": "134669cf0eeac3f79bc7f0c793efbc158bffc160"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/134669cf0eeac3f79bc7f0c793efbc158bffc160",
  6931. "reference": "134669cf0eeac3f79bc7f0c793efbc158bffc160",
  6932. "shasum": ""
  6933. },
  6934. "require": {
  6935. "doctrine/instantiator": "^1.1",
  6936. "ext-dom": "*",
  6937. "ext-json": "*",
  6938. "ext-libxml": "*",
  6939. "ext-mbstring": "*",
  6940. "ext-xml": "*",
  6941. "myclabs/deep-copy": "^1.7",
  6942. "phar-io/manifest": "^1.0.2",
  6943. "phar-io/version": "^2.0",
  6944. "php": "^7.1",
  6945. "phpspec/prophecy": "^1.7",
  6946. "phpunit/php-code-coverage": "^6.0.7",
  6947. "phpunit/php-file-iterator": "^2.0.1",
  6948. "phpunit/php-text-template": "^1.2.1",
  6949. "phpunit/php-timer": "^2.1",
  6950. "sebastian/comparator": "^3.0",
  6951. "sebastian/diff": "^3.0",
  6952. "sebastian/environment": "^4.0",
  6953. "sebastian/exporter": "^3.1",
  6954. "sebastian/global-state": "^2.0",
  6955. "sebastian/object-enumerator": "^3.0.3",
  6956. "sebastian/resource-operations": "^2.0",
  6957. "sebastian/version": "^2.0.1"
  6958. },
  6959. "conflict": {
  6960. "phpunit/phpunit-mock-objects": "*"
  6961. },
  6962. "require-dev": {
  6963. "ext-pdo": "*"
  6964. },
  6965. "suggest": {
  6966. "ext-soap": "*",
  6967. "ext-xdebug": "*",
  6968. "phpunit/php-invoker": "^2.0"
  6969. },
  6970. "bin": [
  6971. "phpunit"
  6972. ],
  6973. "type": "library",
  6974. "extra": {
  6975. "branch-alias": {
  6976. "dev-master": "7.5-dev"
  6977. }
  6978. },
  6979. "autoload": {
  6980. "classmap": [
  6981. "src/"
  6982. ]
  6983. },
  6984. "notification-url": "https://packagist.org/downloads/",
  6985. "license": [
  6986. "BSD-3-Clause"
  6987. ],
  6988. "authors": [
  6989. {
  6990. "name": "Sebastian Bergmann",
  6991. "email": "sebastian@phpunit.de",
  6992. "role": "lead"
  6993. }
  6994. ],
  6995. "description": "The PHP Unit Testing framework.",
  6996. "homepage": "https://phpunit.de/",
  6997. "keywords": [
  6998. "phpunit",
  6999. "testing",
  7000. "xunit"
  7001. ],
  7002. "time": "2019-04-19T15:50:46+00:00"
  7003. },
  7004. {
  7005. "name": "sebastian/code-unit-reverse-lookup",
  7006. "version": "1.0.1",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7010. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7015. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7016. "shasum": ""
  7017. },
  7018. "require": {
  7019. "php": "^5.6 || ^7.0"
  7020. },
  7021. "require-dev": {
  7022. "phpunit/phpunit": "^5.7 || ^6.0"
  7023. },
  7024. "type": "library",
  7025. "extra": {
  7026. "branch-alias": {
  7027. "dev-master": "1.0.x-dev"
  7028. }
  7029. },
  7030. "autoload": {
  7031. "classmap": [
  7032. "src/"
  7033. ]
  7034. },
  7035. "notification-url": "https://packagist.org/downloads/",
  7036. "license": [
  7037. "BSD-3-Clause"
  7038. ],
  7039. "authors": [
  7040. {
  7041. "name": "Sebastian Bergmann",
  7042. "email": "sebastian@phpunit.de"
  7043. }
  7044. ],
  7045. "description": "Looks up which function or method a line of code belongs to",
  7046. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7047. "time": "2017-03-04T06:30:41+00:00"
  7048. },
  7049. {
  7050. "name": "sebastian/comparator",
  7051. "version": "3.0.2",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/sebastianbergmann/comparator.git",
  7055. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7060. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7061. "shasum": ""
  7062. },
  7063. "require": {
  7064. "php": "^7.1",
  7065. "sebastian/diff": "^3.0",
  7066. "sebastian/exporter": "^3.1"
  7067. },
  7068. "require-dev": {
  7069. "phpunit/phpunit": "^7.1"
  7070. },
  7071. "type": "library",
  7072. "extra": {
  7073. "branch-alias": {
  7074. "dev-master": "3.0-dev"
  7075. }
  7076. },
  7077. "autoload": {
  7078. "classmap": [
  7079. "src/"
  7080. ]
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "BSD-3-Clause"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Jeff Welch",
  7089. "email": "whatthejeff@gmail.com"
  7090. },
  7091. {
  7092. "name": "Volker Dusch",
  7093. "email": "github@wallbash.com"
  7094. },
  7095. {
  7096. "name": "Bernhard Schussek",
  7097. "email": "bschussek@2bepublished.at"
  7098. },
  7099. {
  7100. "name": "Sebastian Bergmann",
  7101. "email": "sebastian@phpunit.de"
  7102. }
  7103. ],
  7104. "description": "Provides the functionality to compare PHP values for equality",
  7105. "homepage": "https://github.com/sebastianbergmann/comparator",
  7106. "keywords": [
  7107. "comparator",
  7108. "compare",
  7109. "equality"
  7110. ],
  7111. "time": "2018-07-12T15:12:46+00:00"
  7112. },
  7113. {
  7114. "name": "sebastian/diff",
  7115. "version": "3.0.2",
  7116. "source": {
  7117. "type": "git",
  7118. "url": "https://github.com/sebastianbergmann/diff.git",
  7119. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  7120. },
  7121. "dist": {
  7122. "type": "zip",
  7123. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7124. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7125. "shasum": ""
  7126. },
  7127. "require": {
  7128. "php": "^7.1"
  7129. },
  7130. "require-dev": {
  7131. "phpunit/phpunit": "^7.5 || ^8.0",
  7132. "symfony/process": "^2 || ^3.3 || ^4"
  7133. },
  7134. "type": "library",
  7135. "extra": {
  7136. "branch-alias": {
  7137. "dev-master": "3.0-dev"
  7138. }
  7139. },
  7140. "autoload": {
  7141. "classmap": [
  7142. "src/"
  7143. ]
  7144. },
  7145. "notification-url": "https://packagist.org/downloads/",
  7146. "license": [
  7147. "BSD-3-Clause"
  7148. ],
  7149. "authors": [
  7150. {
  7151. "name": "Kore Nordmann",
  7152. "email": "mail@kore-nordmann.de"
  7153. },
  7154. {
  7155. "name": "Sebastian Bergmann",
  7156. "email": "sebastian@phpunit.de"
  7157. }
  7158. ],
  7159. "description": "Diff implementation",
  7160. "homepage": "https://github.com/sebastianbergmann/diff",
  7161. "keywords": [
  7162. "diff",
  7163. "udiff",
  7164. "unidiff",
  7165. "unified diff"
  7166. ],
  7167. "time": "2019-02-04T06:01:07+00:00"
  7168. },
  7169. {
  7170. "name": "sebastian/environment",
  7171. "version": "4.2.2",
  7172. "source": {
  7173. "type": "git",
  7174. "url": "https://github.com/sebastianbergmann/environment.git",
  7175. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404"
  7176. },
  7177. "dist": {
  7178. "type": "zip",
  7179. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  7180. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  7181. "shasum": ""
  7182. },
  7183. "require": {
  7184. "php": "^7.1"
  7185. },
  7186. "require-dev": {
  7187. "phpunit/phpunit": "^7.5"
  7188. },
  7189. "suggest": {
  7190. "ext-posix": "*"
  7191. },
  7192. "type": "library",
  7193. "extra": {
  7194. "branch-alias": {
  7195. "dev-master": "4.2-dev"
  7196. }
  7197. },
  7198. "autoload": {
  7199. "classmap": [
  7200. "src/"
  7201. ]
  7202. },
  7203. "notification-url": "https://packagist.org/downloads/",
  7204. "license": [
  7205. "BSD-3-Clause"
  7206. ],
  7207. "authors": [
  7208. {
  7209. "name": "Sebastian Bergmann",
  7210. "email": "sebastian@phpunit.de"
  7211. }
  7212. ],
  7213. "description": "Provides functionality to handle HHVM/PHP environments",
  7214. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7215. "keywords": [
  7216. "Xdebug",
  7217. "environment",
  7218. "hhvm"
  7219. ],
  7220. "time": "2019-05-05T09:05:15+00:00"
  7221. },
  7222. {
  7223. "name": "sebastian/exporter",
  7224. "version": "3.1.0",
  7225. "source": {
  7226. "type": "git",
  7227. "url": "https://github.com/sebastianbergmann/exporter.git",
  7228. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  7229. },
  7230. "dist": {
  7231. "type": "zip",
  7232. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  7233. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  7234. "shasum": ""
  7235. },
  7236. "require": {
  7237. "php": "^7.0",
  7238. "sebastian/recursion-context": "^3.0"
  7239. },
  7240. "require-dev": {
  7241. "ext-mbstring": "*",
  7242. "phpunit/phpunit": "^6.0"
  7243. },
  7244. "type": "library",
  7245. "extra": {
  7246. "branch-alias": {
  7247. "dev-master": "3.1.x-dev"
  7248. }
  7249. },
  7250. "autoload": {
  7251. "classmap": [
  7252. "src/"
  7253. ]
  7254. },
  7255. "notification-url": "https://packagist.org/downloads/",
  7256. "license": [
  7257. "BSD-3-Clause"
  7258. ],
  7259. "authors": [
  7260. {
  7261. "name": "Jeff Welch",
  7262. "email": "whatthejeff@gmail.com"
  7263. },
  7264. {
  7265. "name": "Volker Dusch",
  7266. "email": "github@wallbash.com"
  7267. },
  7268. {
  7269. "name": "Bernhard Schussek",
  7270. "email": "bschussek@2bepublished.at"
  7271. },
  7272. {
  7273. "name": "Sebastian Bergmann",
  7274. "email": "sebastian@phpunit.de"
  7275. },
  7276. {
  7277. "name": "Adam Harvey",
  7278. "email": "aharvey@php.net"
  7279. }
  7280. ],
  7281. "description": "Provides the functionality to export PHP variables for visualization",
  7282. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7283. "keywords": [
  7284. "export",
  7285. "exporter"
  7286. ],
  7287. "time": "2017-04-03T13:19:02+00:00"
  7288. },
  7289. {
  7290. "name": "sebastian/global-state",
  7291. "version": "2.0.0",
  7292. "source": {
  7293. "type": "git",
  7294. "url": "https://github.com/sebastianbergmann/global-state.git",
  7295. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  7296. },
  7297. "dist": {
  7298. "type": "zip",
  7299. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7300. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7301. "shasum": ""
  7302. },
  7303. "require": {
  7304. "php": "^7.0"
  7305. },
  7306. "require-dev": {
  7307. "phpunit/phpunit": "^6.0"
  7308. },
  7309. "suggest": {
  7310. "ext-uopz": "*"
  7311. },
  7312. "type": "library",
  7313. "extra": {
  7314. "branch-alias": {
  7315. "dev-master": "2.0-dev"
  7316. }
  7317. },
  7318. "autoload": {
  7319. "classmap": [
  7320. "src/"
  7321. ]
  7322. },
  7323. "notification-url": "https://packagist.org/downloads/",
  7324. "license": [
  7325. "BSD-3-Clause"
  7326. ],
  7327. "authors": [
  7328. {
  7329. "name": "Sebastian Bergmann",
  7330. "email": "sebastian@phpunit.de"
  7331. }
  7332. ],
  7333. "description": "Snapshotting of global state",
  7334. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7335. "keywords": [
  7336. "global state"
  7337. ],
  7338. "time": "2017-04-27T15:39:26+00:00"
  7339. },
  7340. {
  7341. "name": "sebastian/object-enumerator",
  7342. "version": "3.0.3",
  7343. "source": {
  7344. "type": "git",
  7345. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7346. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  7347. },
  7348. "dist": {
  7349. "type": "zip",
  7350. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7351. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7352. "shasum": ""
  7353. },
  7354. "require": {
  7355. "php": "^7.0",
  7356. "sebastian/object-reflector": "^1.1.1",
  7357. "sebastian/recursion-context": "^3.0"
  7358. },
  7359. "require-dev": {
  7360. "phpunit/phpunit": "^6.0"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-master": "3.0.x-dev"
  7366. }
  7367. },
  7368. "autoload": {
  7369. "classmap": [
  7370. "src/"
  7371. ]
  7372. },
  7373. "notification-url": "https://packagist.org/downloads/",
  7374. "license": [
  7375. "BSD-3-Clause"
  7376. ],
  7377. "authors": [
  7378. {
  7379. "name": "Sebastian Bergmann",
  7380. "email": "sebastian@phpunit.de"
  7381. }
  7382. ],
  7383. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7384. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7385. "time": "2017-08-03T12:35:26+00:00"
  7386. },
  7387. {
  7388. "name": "sebastian/object-reflector",
  7389. "version": "1.1.1",
  7390. "source": {
  7391. "type": "git",
  7392. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7393. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  7394. },
  7395. "dist": {
  7396. "type": "zip",
  7397. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  7398. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  7399. "shasum": ""
  7400. },
  7401. "require": {
  7402. "php": "^7.0"
  7403. },
  7404. "require-dev": {
  7405. "phpunit/phpunit": "^6.0"
  7406. },
  7407. "type": "library",
  7408. "extra": {
  7409. "branch-alias": {
  7410. "dev-master": "1.1-dev"
  7411. }
  7412. },
  7413. "autoload": {
  7414. "classmap": [
  7415. "src/"
  7416. ]
  7417. },
  7418. "notification-url": "https://packagist.org/downloads/",
  7419. "license": [
  7420. "BSD-3-Clause"
  7421. ],
  7422. "authors": [
  7423. {
  7424. "name": "Sebastian Bergmann",
  7425. "email": "sebastian@phpunit.de"
  7426. }
  7427. ],
  7428. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7429. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7430. "time": "2017-03-29T09:07:27+00:00"
  7431. },
  7432. {
  7433. "name": "sebastian/recursion-context",
  7434. "version": "3.0.0",
  7435. "source": {
  7436. "type": "git",
  7437. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7438. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  7439. },
  7440. "dist": {
  7441. "type": "zip",
  7442. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7443. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7444. "shasum": ""
  7445. },
  7446. "require": {
  7447. "php": "^7.0"
  7448. },
  7449. "require-dev": {
  7450. "phpunit/phpunit": "^6.0"
  7451. },
  7452. "type": "library",
  7453. "extra": {
  7454. "branch-alias": {
  7455. "dev-master": "3.0.x-dev"
  7456. }
  7457. },
  7458. "autoload": {
  7459. "classmap": [
  7460. "src/"
  7461. ]
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "BSD-3-Clause"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Jeff Welch",
  7470. "email": "whatthejeff@gmail.com"
  7471. },
  7472. {
  7473. "name": "Sebastian Bergmann",
  7474. "email": "sebastian@phpunit.de"
  7475. },
  7476. {
  7477. "name": "Adam Harvey",
  7478. "email": "aharvey@php.net"
  7479. }
  7480. ],
  7481. "description": "Provides functionality to recursively process PHP variables",
  7482. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7483. "time": "2017-03-03T06:23:57+00:00"
  7484. },
  7485. {
  7486. "name": "sebastian/resource-operations",
  7487. "version": "2.0.1",
  7488. "source": {
  7489. "type": "git",
  7490. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7491. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  7492. },
  7493. "dist": {
  7494. "type": "zip",
  7495. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7496. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7497. "shasum": ""
  7498. },
  7499. "require": {
  7500. "php": "^7.1"
  7501. },
  7502. "type": "library",
  7503. "extra": {
  7504. "branch-alias": {
  7505. "dev-master": "2.0-dev"
  7506. }
  7507. },
  7508. "autoload": {
  7509. "classmap": [
  7510. "src/"
  7511. ]
  7512. },
  7513. "notification-url": "https://packagist.org/downloads/",
  7514. "license": [
  7515. "BSD-3-Clause"
  7516. ],
  7517. "authors": [
  7518. {
  7519. "name": "Sebastian Bergmann",
  7520. "email": "sebastian@phpunit.de"
  7521. }
  7522. ],
  7523. "description": "Provides a list of PHP built-in functions that operate on resources",
  7524. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7525. "time": "2018-10-04T04:07:39+00:00"
  7526. },
  7527. {
  7528. "name": "sebastian/version",
  7529. "version": "2.0.1",
  7530. "source": {
  7531. "type": "git",
  7532. "url": "https://github.com/sebastianbergmann/version.git",
  7533. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  7534. },
  7535. "dist": {
  7536. "type": "zip",
  7537. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  7538. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  7539. "shasum": ""
  7540. },
  7541. "require": {
  7542. "php": ">=5.6"
  7543. },
  7544. "type": "library",
  7545. "extra": {
  7546. "branch-alias": {
  7547. "dev-master": "2.0.x-dev"
  7548. }
  7549. },
  7550. "autoload": {
  7551. "classmap": [
  7552. "src/"
  7553. ]
  7554. },
  7555. "notification-url": "https://packagist.org/downloads/",
  7556. "license": [
  7557. "BSD-3-Clause"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Sebastian Bergmann",
  7562. "email": "sebastian@phpunit.de",
  7563. "role": "lead"
  7564. }
  7565. ],
  7566. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7567. "homepage": "https://github.com/sebastianbergmann/version",
  7568. "time": "2016-10-03T07:35:21+00:00"
  7569. },
  7570. {
  7571. "name": "theseer/tokenizer",
  7572. "version": "1.1.2",
  7573. "source": {
  7574. "type": "git",
  7575. "url": "https://github.com/theseer/tokenizer.git",
  7576. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  7577. },
  7578. "dist": {
  7579. "type": "zip",
  7580. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  7581. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  7582. "shasum": ""
  7583. },
  7584. "require": {
  7585. "ext-dom": "*",
  7586. "ext-tokenizer": "*",
  7587. "ext-xmlwriter": "*",
  7588. "php": "^7.0"
  7589. },
  7590. "type": "library",
  7591. "autoload": {
  7592. "classmap": [
  7593. "src/"
  7594. ]
  7595. },
  7596. "notification-url": "https://packagist.org/downloads/",
  7597. "license": [
  7598. "BSD-3-Clause"
  7599. ],
  7600. "authors": [
  7601. {
  7602. "name": "Arne Blankerts",
  7603. "email": "arne@blankerts.de",
  7604. "role": "Developer"
  7605. }
  7606. ],
  7607. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7608. "time": "2019-04-04T09:56:43+00:00"
  7609. },
  7610. {
  7611. "name": "webmozart/assert",
  7612. "version": "1.4.0",
  7613. "source": {
  7614. "type": "git",
  7615. "url": "https://github.com/webmozart/assert.git",
  7616. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  7617. },
  7618. "dist": {
  7619. "type": "zip",
  7620. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  7621. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  7622. "shasum": ""
  7623. },
  7624. "require": {
  7625. "php": "^5.3.3 || ^7.0",
  7626. "symfony/polyfill-ctype": "^1.8"
  7627. },
  7628. "require-dev": {
  7629. "phpunit/phpunit": "^4.6",
  7630. "sebastian/version": "^1.0.1"
  7631. },
  7632. "type": "library",
  7633. "extra": {
  7634. "branch-alias": {
  7635. "dev-master": "1.3-dev"
  7636. }
  7637. },
  7638. "autoload": {
  7639. "psr-4": {
  7640. "Webmozart\\Assert\\": "src/"
  7641. }
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "MIT"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Bernhard Schussek",
  7650. "email": "bschussek@gmail.com"
  7651. }
  7652. ],
  7653. "description": "Assertions to validate method input/output with nice error messages.",
  7654. "keywords": [
  7655. "assert",
  7656. "check",
  7657. "validate"
  7658. ],
  7659. "time": "2018-12-25T11:19:39+00:00"
  7660. }
  7661. ],
  7662. "aliases": [],
  7663. "minimum-stability": "dev",
  7664. "stability-flags": [],
  7665. "prefer-stable": true,
  7666. "prefer-lowest": false,
  7667. "platform": {
  7668. "php": "^7.1.3",
  7669. "ext-bcmath": "*",
  7670. "ext-ctype": "*",
  7671. "ext-curl": "*",
  7672. "ext-json": "*",
  7673. "ext-mbstring": "*",
  7674. "ext-openssl": "*"
  7675. },
  7676. "platform-dev": []
  7677. }