Dashboard sipadu mbip
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

installed.json 198KB

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