composer.lock 239 KB

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