composer.lock 241 KB

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