composer.lock 377 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754
  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": "8a1c6bb6a677837b1d323f55f952fa7c",
  8. "packages": [
  9. {
  10. "name": "anam/phantomjs-linux-x86-binary",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/anam-hossain/phantomjs-linux-x86-binary.git",
  15. "reference": "cb90cd0e7bd4ad34f52e6834783b1c5adae15014"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/anam-hossain/phantomjs-linux-x86-binary/zipball/cb90cd0e7bd4ad34f52e6834783b1c5adae15014",
  20. "reference": "cb90cd0e7bd4ad34f52e6834783b1c5adae15014",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "bin": [
  30. "bin/phantomjs"
  31. ],
  32. "type": "library",
  33. "autoload": {
  34. "psr-4": {
  35. "Anam\\PhantomLinux\\": "/"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "BSD-2-Clause"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Anam hossain",
  45. "email": "enam33@gmail.com"
  46. }
  47. ],
  48. "description": "PhantomJS static linked binary for 64 bit linux systems. Most of Linux distributions are supported including Ubuntu, Debian, Fedora and CentOS.",
  49. "homepage": "http://phantomjs.org/download.html",
  50. "keywords": [
  51. "binary",
  52. "phantomjs",
  53. "phantomjs binary"
  54. ],
  55. "time": "2016-04-05T05:24:48+00:00"
  56. },
  57. {
  58. "name": "anam/phantommagick",
  59. "version": "v2.0.0",
  60. "source": {
  61. "type": "git",
  62. "url": "https://github.com/anam-hossain/phantommagick.git",
  63. "reference": "7da1cb92198717e5aba7a4a8c9b8eb61c3ae12eb"
  64. },
  65. "dist": {
  66. "type": "zip",
  67. "url": "https://api.github.com/repos/anam-hossain/phantommagick/zipball/7da1cb92198717e5aba7a4a8c9b8eb61c3ae12eb",
  68. "reference": "7da1cb92198717e5aba7a4a8c9b8eb61c3ae12eb",
  69. "shasum": "",
  70. "mirrors": [
  71. {
  72. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  73. "preferred": true
  74. }
  75. ]
  76. },
  77. "require": {
  78. "league/flysystem": "~1.0",
  79. "php": ">=5.4.0"
  80. },
  81. "require-dev": {
  82. "mockery/mockery": "~0.9",
  83. "phpunit/phpunit": "~4.4"
  84. },
  85. "type": "library",
  86. "autoload": {
  87. "psr-4": {
  88. "Anam\\PhantomMagick\\": "src/"
  89. }
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "MIT"
  94. ],
  95. "authors": [
  96. {
  97. "name": "Anam hossain",
  98. "email": "enam33@gmail.com"
  99. }
  100. ],
  101. "description": "PhantomMagick provides a simple API to ease the process of converting HTML to PDF or images",
  102. "homepage": "https://github.com/anam-hossain/phantommagick",
  103. "keywords": [
  104. "Html 2 jpg",
  105. "Html 2 pdf",
  106. "Laravel pdf",
  107. "Phantom",
  108. "Screen capture",
  109. "converter",
  110. "html to image",
  111. "html to pdf",
  112. "html to png",
  113. "image converter",
  114. "invoice",
  115. "laravel",
  116. "pdf",
  117. "pdf converter",
  118. "phantomjs"
  119. ],
  120. "time": "2017-08-07T09:06:12+00:00"
  121. },
  122. {
  123. "name": "bacon/bacon-qr-code",
  124. "version": "1.0.3",
  125. "source": {
  126. "type": "git",
  127. "url": "https://github.com/Bacon/BaconQrCode.git",
  128. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  129. },
  130. "dist": {
  131. "type": "zip",
  132. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  133. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  134. "shasum": "",
  135. "mirrors": [
  136. {
  137. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  138. "preferred": true
  139. }
  140. ]
  141. },
  142. "require": {
  143. "ext-iconv": "*",
  144. "php": "^5.4|^7.0"
  145. },
  146. "require-dev": {
  147. "phpunit/phpunit": "^4.8"
  148. },
  149. "suggest": {
  150. "ext-gd": "to generate QR code images"
  151. },
  152. "type": "library",
  153. "autoload": {
  154. "psr-0": {
  155. "BaconQrCode": "src/"
  156. }
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "license": [
  160. "BSD-2-Clause"
  161. ],
  162. "authors": [
  163. {
  164. "name": "Ben Scholzen 'DASPRiD'",
  165. "email": "mail@dasprids.de",
  166. "homepage": "http://www.dasprids.de",
  167. "role": "Developer"
  168. }
  169. ],
  170. "description": "BaconQrCode is a QR code generator for PHP.",
  171. "homepage": "https://github.com/Bacon/BaconQrCode",
  172. "time": "2017-10-17T09:59:25+00:00"
  173. },
  174. {
  175. "name": "barryvdh/laravel-cors",
  176. "version": "v0.10.1",
  177. "source": {
  178. "type": "git",
  179. "url": "https://github.com/barryvdh/laravel-cors.git",
  180. "reference": "b64caccbfc33b9ee2ba7dcce3307590882ede9ad"
  181. },
  182. "dist": {
  183. "type": "zip",
  184. "url": "https://api.github.com/repos/barryvdh/laravel-cors/zipball/b64caccbfc33b9ee2ba7dcce3307590882ede9ad",
  185. "reference": "b64caccbfc33b9ee2ba7dcce3307590882ede9ad",
  186. "shasum": "",
  187. "mirrors": [
  188. {
  189. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  190. "preferred": true
  191. }
  192. ]
  193. },
  194. "require": {
  195. "illuminate/support": "5.3.x|5.4.x|5.5.x",
  196. "php": ">=5.5.9",
  197. "symfony/http-foundation": "~3.1",
  198. "symfony/http-kernel": "~3.1"
  199. },
  200. "require-dev": {
  201. "orchestra/testbench": "3.x",
  202. "phpunit/phpunit": "^4.8|^5.2",
  203. "squizlabs/php_codesniffer": "^2.3"
  204. },
  205. "type": "library",
  206. "extra": {
  207. "branch-alias": {
  208. "dev-master": "0.10-dev"
  209. },
  210. "laravel": {
  211. "providers": [
  212. "Barryvdh\\Cors\\ServiceProvider"
  213. ]
  214. }
  215. },
  216. "autoload": {
  217. "psr-4": {
  218. "Barryvdh\\Cors\\": "src/"
  219. },
  220. "classmap": [
  221. "tests"
  222. ]
  223. },
  224. "notification-url": "https://packagist.org/downloads/",
  225. "license": [
  226. "MIT"
  227. ],
  228. "authors": [
  229. {
  230. "name": "Barry vd. Heuvel",
  231. "email": "barryvdh@gmail.com"
  232. }
  233. ],
  234. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  235. "keywords": [
  236. "api",
  237. "cors",
  238. "crossdomain",
  239. "laravel"
  240. ],
  241. "time": "2017-12-19T21:08:24+00:00"
  242. },
  243. {
  244. "name": "defuse/php-encryption",
  245. "version": "v2.2.1",
  246. "source": {
  247. "type": "git",
  248. "url": "https://github.com/defuse/php-encryption.git",
  249. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
  250. },
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
  254. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
  255. "shasum": "",
  256. "mirrors": [
  257. {
  258. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  259. "preferred": true
  260. }
  261. ]
  262. },
  263. "require": {
  264. "ext-openssl": "*",
  265. "paragonie/random_compat": ">= 2",
  266. "php": ">=5.4.0"
  267. },
  268. "require-dev": {
  269. "nikic/php-parser": "^2.0|^3.0|^4.0",
  270. "phpunit/phpunit": "^4|^5"
  271. },
  272. "bin": [
  273. "bin/generate-defuse-key"
  274. ],
  275. "type": "library",
  276. "autoload": {
  277. "psr-4": {
  278. "Defuse\\Crypto\\": "src"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Taylor Hornby",
  288. "email": "taylor@defuse.ca",
  289. "homepage": "https://defuse.ca/"
  290. },
  291. {
  292. "name": "Scott Arciszewski",
  293. "email": "info@paragonie.com",
  294. "homepage": "https://paragonie.com"
  295. }
  296. ],
  297. "description": "Secure PHP Encryption Library",
  298. "keywords": [
  299. "aes",
  300. "authenticated encryption",
  301. "cipher",
  302. "crypto",
  303. "cryptography",
  304. "encrypt",
  305. "encryption",
  306. "openssl",
  307. "security",
  308. "symmetric key cryptography"
  309. ],
  310. "time": "2018-07-24T23:27:56+00:00"
  311. },
  312. {
  313. "name": "dingo/api",
  314. "version": "v2.0.0-alpha1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/dingo/api.git",
  318. "reference": "8beb74dd307770c909f0474e26a1004099ac78bd"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/dingo/api/zipball/8beb74dd307770c909f0474e26a1004099ac78bd",
  323. "reference": "8beb74dd307770c909f0474e26a1004099ac78bd",
  324. "shasum": "",
  325. "mirrors": [
  326. {
  327. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  328. "preferred": true
  329. }
  330. ]
  331. },
  332. "require": {
  333. "dingo/blueprint": "^0.2",
  334. "illuminate/routing": "^5.1",
  335. "illuminate/support": "^5.1",
  336. "league/fractal": "^0.17",
  337. "php": "^7.0"
  338. },
  339. "require-dev": {
  340. "friendsofphp/php-cs-fixer": "~2",
  341. "illuminate/auth": "^5.1",
  342. "illuminate/cache": "^5.1",
  343. "illuminate/console": "^5.1",
  344. "illuminate/database": "^5.1",
  345. "illuminate/events": "^5.1",
  346. "illuminate/filesystem": "^5.1",
  347. "illuminate/log": "^5.1",
  348. "illuminate/pagination": "^5.1",
  349. "laravel/lumen-framework": "^5.1",
  350. "mockery/mockery": "~0.9",
  351. "phpunit/phpunit": "^4.8 || ^5.0",
  352. "squizlabs/php_codesniffer": "~2.0",
  353. "tymon/jwt-auth": "1.0.*"
  354. },
  355. "suggest": {
  356. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  357. },
  358. "type": "library",
  359. "extra": {
  360. "branch-alias": {
  361. "dev-master": "2.0-dev"
  362. },
  363. "laravel": {
  364. "providers": [
  365. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  366. ],
  367. "aliases": {
  368. "API": "Dingo\\Api\\Facade\\API"
  369. }
  370. }
  371. },
  372. "autoload": {
  373. "psr-4": {
  374. "Dingo\\Api\\": "src/"
  375. },
  376. "files": [
  377. "src/helpers.php"
  378. ]
  379. },
  380. "notification-url": "https://packagist.org/downloads/",
  381. "license": [
  382. "BSD-3-Clause"
  383. ],
  384. "authors": [
  385. {
  386. "name": "Jason Lewis",
  387. "email": "jason.lewis1991@gmail.com"
  388. }
  389. ],
  390. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  391. "keywords": [
  392. "api",
  393. "dingo",
  394. "laravel",
  395. "restful"
  396. ],
  397. "time": "2017-09-20T15:57:14+00:00"
  398. },
  399. {
  400. "name": "dingo/blueprint",
  401. "version": "v0.2.4",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/dingo/blueprint.git",
  405. "reference": "1dc93b8ea443fbbdaaca0582572ee6ca53afccfd"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://api.github.com/repos/dingo/blueprint/zipball/1dc93b8ea443fbbdaaca0582572ee6ca53afccfd",
  410. "reference": "1dc93b8ea443fbbdaaca0582572ee6ca53afccfd",
  411. "shasum": "",
  412. "mirrors": [
  413. {
  414. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  415. "preferred": true
  416. }
  417. ]
  418. },
  419. "require": {
  420. "doctrine/annotations": "~1.2",
  421. "illuminate/filesystem": "^5.1",
  422. "illuminate/support": "^5.1",
  423. "php": ">=5.5.9",
  424. "phpdocumentor/reflection-docblock": "^3.1"
  425. },
  426. "require-dev": {
  427. "phpunit/phpunit": "~4.0",
  428. "squizlabs/php_codesniffer": "~2.0"
  429. },
  430. "type": "library",
  431. "extra": {
  432. "branch-alias": {
  433. "dev-master": "0.2-dev"
  434. }
  435. },
  436. "autoload": {
  437. "psr-4": {
  438. "Dingo\\Blueprint\\": "src"
  439. }
  440. },
  441. "notification-url": "https://packagist.org/downloads/",
  442. "license": [
  443. "BSD-3-Clause"
  444. ],
  445. "authors": [
  446. {
  447. "name": "Jason Lewis",
  448. "email": "jason.lewis1991@gmail.com"
  449. }
  450. ],
  451. "description": "API Blueprint documentation generator.",
  452. "keywords": [
  453. "api",
  454. "blueprint",
  455. "dingo",
  456. "docs",
  457. "laravel"
  458. ],
  459. "time": "2017-12-05T12:02:08+00:00"
  460. },
  461. {
  462. "name": "dnoegel/php-xdg-base-dir",
  463. "version": "0.1",
  464. "source": {
  465. "type": "git",
  466. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  467. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  468. },
  469. "dist": {
  470. "type": "zip",
  471. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  472. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  473. "shasum": "",
  474. "mirrors": [
  475. {
  476. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  477. "preferred": true
  478. }
  479. ]
  480. },
  481. "require": {
  482. "php": ">=5.3.2"
  483. },
  484. "require-dev": {
  485. "phpunit/phpunit": "@stable"
  486. },
  487. "type": "project",
  488. "autoload": {
  489. "psr-4": {
  490. "XdgBaseDir\\": "src/"
  491. }
  492. },
  493. "notification-url": "https://packagist.org/downloads/",
  494. "license": [
  495. "MIT"
  496. ],
  497. "description": "implementation of xdg base directory specification for php",
  498. "time": "2014-10-24T07:27:01+00:00"
  499. },
  500. {
  501. "name": "doctrine/annotations",
  502. "version": "v1.6.0",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/doctrine/annotations.git",
  506. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  511. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  512. "shasum": "",
  513. "mirrors": [
  514. {
  515. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  516. "preferred": true
  517. }
  518. ]
  519. },
  520. "require": {
  521. "doctrine/lexer": "1.*",
  522. "php": "^7.1"
  523. },
  524. "require-dev": {
  525. "doctrine/cache": "1.*",
  526. "phpunit/phpunit": "^6.4"
  527. },
  528. "type": "library",
  529. "extra": {
  530. "branch-alias": {
  531. "dev-master": "1.6.x-dev"
  532. }
  533. },
  534. "autoload": {
  535. "psr-4": {
  536. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  537. }
  538. },
  539. "notification-url": "https://packagist.org/downloads/",
  540. "license": [
  541. "MIT"
  542. ],
  543. "authors": [
  544. {
  545. "name": "Roman Borschel",
  546. "email": "roman@code-factory.org"
  547. },
  548. {
  549. "name": "Benjamin Eberlei",
  550. "email": "kontakt@beberlei.de"
  551. },
  552. {
  553. "name": "Guilherme Blanco",
  554. "email": "guilhermeblanco@gmail.com"
  555. },
  556. {
  557. "name": "Jonathan Wage",
  558. "email": "jonwage@gmail.com"
  559. },
  560. {
  561. "name": "Johannes Schmitt",
  562. "email": "schmittjoh@gmail.com"
  563. }
  564. ],
  565. "description": "Docblock Annotations Parser",
  566. "homepage": "http://www.doctrine-project.org",
  567. "keywords": [
  568. "annotations",
  569. "docblock",
  570. "parser"
  571. ],
  572. "time": "2017-12-06T07:11:42+00:00"
  573. },
  574. {
  575. "name": "doctrine/cache",
  576. "version": "v1.8.0",
  577. "source": {
  578. "type": "git",
  579. "url": "https://github.com/doctrine/cache.git",
  580. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  581. },
  582. "dist": {
  583. "type": "zip",
  584. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  585. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  586. "shasum": "",
  587. "mirrors": [
  588. {
  589. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  590. "preferred": true
  591. }
  592. ]
  593. },
  594. "require": {
  595. "php": "~7.1"
  596. },
  597. "conflict": {
  598. "doctrine/common": ">2.2,<2.4"
  599. },
  600. "require-dev": {
  601. "alcaeus/mongo-php-adapter": "^1.1",
  602. "doctrine/coding-standard": "^4.0",
  603. "mongodb/mongodb": "^1.1",
  604. "phpunit/phpunit": "^7.0",
  605. "predis/predis": "~1.0"
  606. },
  607. "suggest": {
  608. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  609. },
  610. "type": "library",
  611. "extra": {
  612. "branch-alias": {
  613. "dev-master": "1.8.x-dev"
  614. }
  615. },
  616. "autoload": {
  617. "psr-4": {
  618. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  619. }
  620. },
  621. "notification-url": "https://packagist.org/downloads/",
  622. "license": [
  623. "MIT"
  624. ],
  625. "authors": [
  626. {
  627. "name": "Roman Borschel",
  628. "email": "roman@code-factory.org"
  629. },
  630. {
  631. "name": "Benjamin Eberlei",
  632. "email": "kontakt@beberlei.de"
  633. },
  634. {
  635. "name": "Guilherme Blanco",
  636. "email": "guilhermeblanco@gmail.com"
  637. },
  638. {
  639. "name": "Jonathan Wage",
  640. "email": "jonwage@gmail.com"
  641. },
  642. {
  643. "name": "Johannes Schmitt",
  644. "email": "schmittjoh@gmail.com"
  645. }
  646. ],
  647. "description": "Caching library offering an object-oriented API for many cache backends",
  648. "homepage": "https://www.doctrine-project.org",
  649. "keywords": [
  650. "cache",
  651. "caching"
  652. ],
  653. "time": "2018-08-21T18:01:43+00:00"
  654. },
  655. {
  656. "name": "doctrine/dbal",
  657. "version": "v2.9.1",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/doctrine/dbal.git",
  661. "reference": "ec74d6e300d78fbc896669c3ca57ef9719adc9c6"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/doctrine/dbal/zipball/ec74d6e300d78fbc896669c3ca57ef9719adc9c6",
  666. "reference": "ec74d6e300d78fbc896669c3ca57ef9719adc9c6",
  667. "shasum": "",
  668. "mirrors": [
  669. {
  670. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  671. "preferred": true
  672. }
  673. ]
  674. },
  675. "require": {
  676. "doctrine/cache": "^1.0",
  677. "doctrine/event-manager": "^1.0",
  678. "ext-pdo": "*",
  679. "php": "^7.1"
  680. },
  681. "require-dev": {
  682. "doctrine/coding-standard": "^5.0",
  683. "jetbrains/phpstorm-stubs": "^2018.1.2",
  684. "phpstan/phpstan": "^0.10.1",
  685. "phpunit/phpunit": "^7.4",
  686. "symfony/console": "^2.0.5|^3.0|^4.0",
  687. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  688. },
  689. "suggest": {
  690. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  691. },
  692. "bin": [
  693. "bin/doctrine-dbal"
  694. ],
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "2.9.x-dev",
  699. "dev-develop": "3.0.x-dev"
  700. }
  701. },
  702. "autoload": {
  703. "psr-4": {
  704. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  705. }
  706. },
  707. "notification-url": "https://packagist.org/downloads/",
  708. "license": [
  709. "MIT"
  710. ],
  711. "authors": [
  712. {
  713. "name": "Roman Borschel",
  714. "email": "roman@code-factory.org"
  715. },
  716. {
  717. "name": "Benjamin Eberlei",
  718. "email": "kontakt@beberlei.de"
  719. },
  720. {
  721. "name": "Guilherme Blanco",
  722. "email": "guilhermeblanco@gmail.com"
  723. },
  724. {
  725. "name": "Jonathan Wage",
  726. "email": "jonwage@gmail.com"
  727. }
  728. ],
  729. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  730. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  731. "keywords": [
  732. "abstraction",
  733. "database",
  734. "dbal",
  735. "mysql",
  736. "persistence",
  737. "pgsql",
  738. "php",
  739. "queryobject"
  740. ],
  741. "time": "2018-12-14T04:51:13+00:00"
  742. },
  743. {
  744. "name": "doctrine/event-manager",
  745. "version": "v1.0.0",
  746. "source": {
  747. "type": "git",
  748. "url": "https://github.com/doctrine/event-manager.git",
  749. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  750. },
  751. "dist": {
  752. "type": "zip",
  753. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  754. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  755. "shasum": "",
  756. "mirrors": [
  757. {
  758. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  759. "preferred": true
  760. }
  761. ]
  762. },
  763. "require": {
  764. "php": "^7.1"
  765. },
  766. "conflict": {
  767. "doctrine/common": "<2.9@dev"
  768. },
  769. "require-dev": {
  770. "doctrine/coding-standard": "^4.0",
  771. "phpunit/phpunit": "^7.0"
  772. },
  773. "type": "library",
  774. "extra": {
  775. "branch-alias": {
  776. "dev-master": "1.0.x-dev"
  777. }
  778. },
  779. "autoload": {
  780. "psr-4": {
  781. "Doctrine\\Common\\": "lib/Doctrine/Common"
  782. }
  783. },
  784. "notification-url": "https://packagist.org/downloads/",
  785. "license": [
  786. "MIT"
  787. ],
  788. "authors": [
  789. {
  790. "name": "Roman Borschel",
  791. "email": "roman@code-factory.org"
  792. },
  793. {
  794. "name": "Benjamin Eberlei",
  795. "email": "kontakt@beberlei.de"
  796. },
  797. {
  798. "name": "Guilherme Blanco",
  799. "email": "guilhermeblanco@gmail.com"
  800. },
  801. {
  802. "name": "Jonathan Wage",
  803. "email": "jonwage@gmail.com"
  804. },
  805. {
  806. "name": "Johannes Schmitt",
  807. "email": "schmittjoh@gmail.com"
  808. },
  809. {
  810. "name": "Marco Pivetta",
  811. "email": "ocramius@gmail.com"
  812. }
  813. ],
  814. "description": "Doctrine Event Manager component",
  815. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  816. "keywords": [
  817. "event",
  818. "eventdispatcher",
  819. "eventmanager"
  820. ],
  821. "time": "2018-06-11T11:59:03+00:00"
  822. },
  823. {
  824. "name": "doctrine/inflector",
  825. "version": "v1.3.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/doctrine/inflector.git",
  829. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  834. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  835. "shasum": "",
  836. "mirrors": [
  837. {
  838. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  839. "preferred": true
  840. }
  841. ]
  842. },
  843. "require": {
  844. "php": "^7.1"
  845. },
  846. "require-dev": {
  847. "phpunit/phpunit": "^6.2"
  848. },
  849. "type": "library",
  850. "extra": {
  851. "branch-alias": {
  852. "dev-master": "1.3.x-dev"
  853. }
  854. },
  855. "autoload": {
  856. "psr-4": {
  857. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  858. }
  859. },
  860. "notification-url": "https://packagist.org/downloads/",
  861. "license": [
  862. "MIT"
  863. ],
  864. "authors": [
  865. {
  866. "name": "Roman Borschel",
  867. "email": "roman@code-factory.org"
  868. },
  869. {
  870. "name": "Benjamin Eberlei",
  871. "email": "kontakt@beberlei.de"
  872. },
  873. {
  874. "name": "Guilherme Blanco",
  875. "email": "guilhermeblanco@gmail.com"
  876. },
  877. {
  878. "name": "Jonathan Wage",
  879. "email": "jonwage@gmail.com"
  880. },
  881. {
  882. "name": "Johannes Schmitt",
  883. "email": "schmittjoh@gmail.com"
  884. }
  885. ],
  886. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  887. "homepage": "http://www.doctrine-project.org",
  888. "keywords": [
  889. "inflection",
  890. "pluralize",
  891. "singularize",
  892. "string"
  893. ],
  894. "time": "2018-01-09T20:05:19+00:00"
  895. },
  896. {
  897. "name": "doctrine/lexer",
  898. "version": "v1.0.1",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/doctrine/lexer.git",
  902. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  907. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  908. "shasum": "",
  909. "mirrors": [
  910. {
  911. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  912. "preferred": true
  913. }
  914. ]
  915. },
  916. "require": {
  917. "php": ">=5.3.2"
  918. },
  919. "type": "library",
  920. "extra": {
  921. "branch-alias": {
  922. "dev-master": "1.0.x-dev"
  923. }
  924. },
  925. "autoload": {
  926. "psr-0": {
  927. "Doctrine\\Common\\Lexer\\": "lib/"
  928. }
  929. },
  930. "notification-url": "https://packagist.org/downloads/",
  931. "license": [
  932. "MIT"
  933. ],
  934. "authors": [
  935. {
  936. "name": "Roman Borschel",
  937. "email": "roman@code-factory.org"
  938. },
  939. {
  940. "name": "Guilherme Blanco",
  941. "email": "guilhermeblanco@gmail.com"
  942. },
  943. {
  944. "name": "Johannes Schmitt",
  945. "email": "schmittjoh@gmail.com"
  946. }
  947. ],
  948. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  949. "homepage": "http://www.doctrine-project.org",
  950. "keywords": [
  951. "lexer",
  952. "parser"
  953. ],
  954. "time": "2014-09-09T13:34:57+00:00"
  955. },
  956. {
  957. "name": "easywechat-composer/easywechat-composer",
  958. "version": "1.1.4",
  959. "source": {
  960. "type": "git",
  961. "url": "https://github.com/mingyoung/easywechat-composer.git",
  962. "reference": "f0c96f2cda1e672e3ad2fd34a192a503943c69fe"
  963. },
  964. "dist": {
  965. "type": "zip",
  966. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/f0c96f2cda1e672e3ad2fd34a192a503943c69fe",
  967. "reference": "f0c96f2cda1e672e3ad2fd34a192a503943c69fe",
  968. "shasum": "",
  969. "mirrors": [
  970. {
  971. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  972. "preferred": true
  973. }
  974. ]
  975. },
  976. "require": {
  977. "composer-plugin-api": "^1.0",
  978. "php": ">=7.0"
  979. },
  980. "require-dev": {
  981. "composer/composer": "^1.0",
  982. "phpunit/phpunit": "^7.0"
  983. },
  984. "type": "composer-plugin",
  985. "extra": {
  986. "class": "EasyWeChatComposer\\Plugin"
  987. },
  988. "autoload": {
  989. "psr-4": {
  990. "EasyWeChatComposer\\": "src/"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "张铭阳",
  1000. "email": "mingyoungcheung@gmail.com"
  1001. }
  1002. ],
  1003. "description": "The composer plugin for EasyWeChat",
  1004. "time": "2018-11-10T01:49:23+00:00"
  1005. },
  1006. {
  1007. "name": "egulias/email-validator",
  1008. "version": "2.1.7",
  1009. "source": {
  1010. "type": "git",
  1011. "url": "https://github.com/egulias/EmailValidator.git",
  1012. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  1013. },
  1014. "dist": {
  1015. "type": "zip",
  1016. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  1017. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  1018. "shasum": "",
  1019. "mirrors": [
  1020. {
  1021. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1022. "preferred": true
  1023. }
  1024. ]
  1025. },
  1026. "require": {
  1027. "doctrine/lexer": "^1.0.1",
  1028. "php": ">= 5.5"
  1029. },
  1030. "require-dev": {
  1031. "dominicsayers/isemail": "dev-master",
  1032. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  1033. "satooshi/php-coveralls": "^1.0.1"
  1034. },
  1035. "suggest": {
  1036. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1037. },
  1038. "type": "library",
  1039. "extra": {
  1040. "branch-alias": {
  1041. "dev-master": "2.0.x-dev"
  1042. }
  1043. },
  1044. "autoload": {
  1045. "psr-4": {
  1046. "Egulias\\EmailValidator\\": "EmailValidator"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Eduardo Gulias Davis"
  1056. }
  1057. ],
  1058. "description": "A library for validating emails against several RFCs",
  1059. "homepage": "https://github.com/egulias/EmailValidator",
  1060. "keywords": [
  1061. "email",
  1062. "emailvalidation",
  1063. "emailvalidator",
  1064. "validation",
  1065. "validator"
  1066. ],
  1067. "time": "2018-12-04T22:38:24+00:00"
  1068. },
  1069. {
  1070. "name": "encore/laravel-admin",
  1071. "version": "v1.5.19",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/z-song/laravel-admin.git",
  1075. "reference": "9841d34ca028cb151c54aa9988bb3f783839fa2a"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/z-song/laravel-admin/zipball/9841d34ca028cb151c54aa9988bb3f783839fa2a",
  1080. "reference": "9841d34ca028cb151c54aa9988bb3f783839fa2a",
  1081. "shasum": "",
  1082. "mirrors": [
  1083. {
  1084. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1085. "preferred": true
  1086. }
  1087. ]
  1088. },
  1089. "require": {
  1090. "doctrine/dbal": "2.*",
  1091. "laravel/framework": "~5.5",
  1092. "php": ">=7.0.0",
  1093. "symfony/dom-crawler": "~3.1"
  1094. },
  1095. "require-dev": {
  1096. "fzaninotto/faker": "~1.4",
  1097. "intervention/image": "~2.3",
  1098. "laravel/browser-kit-testing": "^2.0",
  1099. "laravel/laravel": "~5.5",
  1100. "phpunit/phpunit": "~6.0",
  1101. "symfony/css-selector": "~3.1"
  1102. },
  1103. "suggest": {
  1104. "intervention/image": "Required to handling and manipulation upload images (~2.3).",
  1105. "spatie/eloquent-sortable": "Required to built orderable gird."
  1106. },
  1107. "type": "library",
  1108. "extra": {
  1109. "laravel": {
  1110. "providers": [
  1111. "Encore\\Admin\\AdminServiceProvider"
  1112. ],
  1113. "aliases": {
  1114. "Admin": "Encore\\Admin\\Facades\\Admin"
  1115. }
  1116. }
  1117. },
  1118. "autoload": {
  1119. "psr-4": {
  1120. "Encore\\Admin\\": "src/"
  1121. },
  1122. "files": [
  1123. "src/helpers.php"
  1124. ]
  1125. },
  1126. "notification-url": "https://packagist.org/downloads/",
  1127. "license": [
  1128. "MIT"
  1129. ],
  1130. "authors": [
  1131. {
  1132. "name": "zsong",
  1133. "email": "zosong@126.com"
  1134. }
  1135. ],
  1136. "description": "laravel admin",
  1137. "homepage": "https://github.com/z-song/laravel-admin",
  1138. "keywords": [
  1139. "admin",
  1140. "form",
  1141. "grid",
  1142. "laravel"
  1143. ],
  1144. "time": "2018-08-22T11:27:57+00:00"
  1145. },
  1146. {
  1147. "name": "erusev/parsedown",
  1148. "version": "1.7.1",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/erusev/parsedown.git",
  1152. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  1157. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  1158. "shasum": "",
  1159. "mirrors": [
  1160. {
  1161. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1162. "preferred": true
  1163. }
  1164. ]
  1165. },
  1166. "require": {
  1167. "ext-mbstring": "*",
  1168. "php": ">=5.3.0"
  1169. },
  1170. "require-dev": {
  1171. "phpunit/phpunit": "^4.8.35"
  1172. },
  1173. "type": "library",
  1174. "autoload": {
  1175. "psr-0": {
  1176. "Parsedown": ""
  1177. }
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "MIT"
  1182. ],
  1183. "authors": [
  1184. {
  1185. "name": "Emanuil Rusev",
  1186. "email": "hello@erusev.com",
  1187. "homepage": "http://erusev.com"
  1188. }
  1189. ],
  1190. "description": "Parser for Markdown.",
  1191. "homepage": "http://parsedown.org",
  1192. "keywords": [
  1193. "markdown",
  1194. "parser"
  1195. ],
  1196. "time": "2018-03-08T01:11:30+00:00"
  1197. },
  1198. {
  1199. "name": "fideloper/proxy",
  1200. "version": "3.3.4",
  1201. "source": {
  1202. "type": "git",
  1203. "url": "https://github.com/fideloper/TrustedProxy.git",
  1204. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
  1205. },
  1206. "dist": {
  1207. "type": "zip",
  1208. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
  1209. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
  1210. "shasum": "",
  1211. "mirrors": [
  1212. {
  1213. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1214. "preferred": true
  1215. }
  1216. ]
  1217. },
  1218. "require": {
  1219. "illuminate/contracts": "~5.0",
  1220. "php": ">=5.4.0"
  1221. },
  1222. "require-dev": {
  1223. "illuminate/http": "~5.0",
  1224. "mockery/mockery": "~0.9.3",
  1225. "phpunit/phpunit": "^5.7"
  1226. },
  1227. "type": "library",
  1228. "extra": {
  1229. "branch-alias": {
  1230. "dev-master": "3.3-dev"
  1231. },
  1232. "laravel": {
  1233. "providers": [
  1234. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1235. ]
  1236. }
  1237. },
  1238. "autoload": {
  1239. "psr-4": {
  1240. "Fideloper\\Proxy\\": "src/"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Chris Fidao",
  1250. "email": "fideloper@gmail.com"
  1251. }
  1252. ],
  1253. "description": "Set trusted proxies for Laravel",
  1254. "keywords": [
  1255. "load balancing",
  1256. "proxy",
  1257. "trusted proxy"
  1258. ],
  1259. "time": "2017-06-15T17:19:42+00:00"
  1260. },
  1261. {
  1262. "name": "firebase/php-jwt",
  1263. "version": "v5.0.0",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/firebase/php-jwt.git",
  1267. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1272. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1273. "shasum": "",
  1274. "mirrors": [
  1275. {
  1276. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1277. "preferred": true
  1278. }
  1279. ]
  1280. },
  1281. "require": {
  1282. "php": ">=5.3.0"
  1283. },
  1284. "require-dev": {
  1285. "phpunit/phpunit": " 4.8.35"
  1286. },
  1287. "type": "library",
  1288. "autoload": {
  1289. "psr-4": {
  1290. "Firebase\\JWT\\": "src"
  1291. }
  1292. },
  1293. "notification-url": "https://packagist.org/downloads/",
  1294. "license": [
  1295. "BSD-3-Clause"
  1296. ],
  1297. "authors": [
  1298. {
  1299. "name": "Neuman Vong",
  1300. "email": "neuman+pear@twilio.com",
  1301. "role": "Developer"
  1302. },
  1303. {
  1304. "name": "Anant Narayanan",
  1305. "email": "anant@php.net",
  1306. "role": "Developer"
  1307. }
  1308. ],
  1309. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1310. "homepage": "https://github.com/firebase/php-jwt",
  1311. "time": "2017-06-27T22:17:23+00:00"
  1312. },
  1313. {
  1314. "name": "graham-campbell/manager",
  1315. "version": "v3.0.0",
  1316. "source": {
  1317. "type": "git",
  1318. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  1319. "reference": "bf9da58aa32676209961558eaac5d6625f6f1399"
  1320. },
  1321. "dist": {
  1322. "type": "zip",
  1323. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/bf9da58aa32676209961558eaac5d6625f6f1399",
  1324. "reference": "bf9da58aa32676209961558eaac5d6625f6f1399",
  1325. "shasum": "",
  1326. "mirrors": [
  1327. {
  1328. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1329. "preferred": true
  1330. }
  1331. ]
  1332. },
  1333. "require": {
  1334. "illuminate/contracts": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
  1335. "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
  1336. "php": "^7.0"
  1337. },
  1338. "require-dev": {
  1339. "graham-campbell/analyzer": "^1.1",
  1340. "graham-campbell/testbench-core": "^2.0",
  1341. "mockery/mockery": "dev-master#c90a17247147543081e4d00f46911e422b49e583",
  1342. "phpunit/phpunit": "^6.0"
  1343. },
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-master": "3.0-dev"
  1348. }
  1349. },
  1350. "autoload": {
  1351. "psr-4": {
  1352. "GrahamCampbell\\Manager\\": "src/"
  1353. }
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "authors": [
  1360. {
  1361. "name": "Graham Campbell",
  1362. "email": "graham@alt-three.com"
  1363. }
  1364. ],
  1365. "description": "Manager Provides Some Manager Functionality For Laravel 5",
  1366. "keywords": [
  1367. "Graham Campbell",
  1368. "GrahamCampbell",
  1369. "Laravel Manager",
  1370. "Laravel-Manager",
  1371. "connector",
  1372. "framework",
  1373. "interface",
  1374. "laravel",
  1375. "manager"
  1376. ],
  1377. "time": "2017-08-06T17:54:13+00:00"
  1378. },
  1379. {
  1380. "name": "guzzlehttp/guzzle",
  1381. "version": "6.3.3",
  1382. "source": {
  1383. "type": "git",
  1384. "url": "https://github.com/guzzle/guzzle.git",
  1385. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1386. },
  1387. "dist": {
  1388. "type": "zip",
  1389. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1390. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1391. "shasum": "",
  1392. "mirrors": [
  1393. {
  1394. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1395. "preferred": true
  1396. }
  1397. ]
  1398. },
  1399. "require": {
  1400. "guzzlehttp/promises": "^1.0",
  1401. "guzzlehttp/psr7": "^1.4",
  1402. "php": ">=5.5"
  1403. },
  1404. "require-dev": {
  1405. "ext-curl": "*",
  1406. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1407. "psr/log": "^1.0"
  1408. },
  1409. "suggest": {
  1410. "psr/log": "Required for using the Log middleware"
  1411. },
  1412. "type": "library",
  1413. "extra": {
  1414. "branch-alias": {
  1415. "dev-master": "6.3-dev"
  1416. }
  1417. },
  1418. "autoload": {
  1419. "files": [
  1420. "src/functions_include.php"
  1421. ],
  1422. "psr-4": {
  1423. "GuzzleHttp\\": "src/"
  1424. }
  1425. },
  1426. "notification-url": "https://packagist.org/downloads/",
  1427. "license": [
  1428. "MIT"
  1429. ],
  1430. "authors": [
  1431. {
  1432. "name": "Michael Dowling",
  1433. "email": "mtdowling@gmail.com",
  1434. "homepage": "https://github.com/mtdowling"
  1435. }
  1436. ],
  1437. "description": "Guzzle is a PHP HTTP client library",
  1438. "homepage": "http://guzzlephp.org/",
  1439. "keywords": [
  1440. "client",
  1441. "curl",
  1442. "framework",
  1443. "http",
  1444. "http client",
  1445. "rest",
  1446. "web service"
  1447. ],
  1448. "time": "2018-04-22T15:46:56+00:00"
  1449. },
  1450. {
  1451. "name": "guzzlehttp/promises",
  1452. "version": "v1.3.1",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/guzzle/promises.git",
  1456. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1461. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1462. "shasum": "",
  1463. "mirrors": [
  1464. {
  1465. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1466. "preferred": true
  1467. }
  1468. ]
  1469. },
  1470. "require": {
  1471. "php": ">=5.5.0"
  1472. },
  1473. "require-dev": {
  1474. "phpunit/phpunit": "^4.0"
  1475. },
  1476. "type": "library",
  1477. "extra": {
  1478. "branch-alias": {
  1479. "dev-master": "1.4-dev"
  1480. }
  1481. },
  1482. "autoload": {
  1483. "psr-4": {
  1484. "GuzzleHttp\\Promise\\": "src/"
  1485. },
  1486. "files": [
  1487. "src/functions_include.php"
  1488. ]
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "MIT"
  1493. ],
  1494. "authors": [
  1495. {
  1496. "name": "Michael Dowling",
  1497. "email": "mtdowling@gmail.com",
  1498. "homepage": "https://github.com/mtdowling"
  1499. }
  1500. ],
  1501. "description": "Guzzle promises library",
  1502. "keywords": [
  1503. "promise"
  1504. ],
  1505. "time": "2016-12-20T10:07:11+00:00"
  1506. },
  1507. {
  1508. "name": "guzzlehttp/psr7",
  1509. "version": "1.5.2",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/guzzle/psr7.git",
  1513. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  1518. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  1519. "shasum": "",
  1520. "mirrors": [
  1521. {
  1522. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1523. "preferred": true
  1524. }
  1525. ]
  1526. },
  1527. "require": {
  1528. "php": ">=5.4.0",
  1529. "psr/http-message": "~1.0",
  1530. "ralouphie/getallheaders": "^2.0.5"
  1531. },
  1532. "provide": {
  1533. "psr/http-message-implementation": "1.0"
  1534. },
  1535. "require-dev": {
  1536. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1537. },
  1538. "type": "library",
  1539. "extra": {
  1540. "branch-alias": {
  1541. "dev-master": "1.5-dev"
  1542. }
  1543. },
  1544. "autoload": {
  1545. "psr-4": {
  1546. "GuzzleHttp\\Psr7\\": "src/"
  1547. },
  1548. "files": [
  1549. "src/functions_include.php"
  1550. ]
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "MIT"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Michael Dowling",
  1559. "email": "mtdowling@gmail.com",
  1560. "homepage": "https://github.com/mtdowling"
  1561. },
  1562. {
  1563. "name": "Tobias Schultze",
  1564. "homepage": "https://github.com/Tobion"
  1565. }
  1566. ],
  1567. "description": "PSR-7 message implementation that also provides common utility methods",
  1568. "keywords": [
  1569. "http",
  1570. "message",
  1571. "psr-7",
  1572. "request",
  1573. "response",
  1574. "stream",
  1575. "uri",
  1576. "url"
  1577. ],
  1578. "time": "2018-12-04T20:46:45+00:00"
  1579. },
  1580. {
  1581. "name": "hashids/hashids",
  1582. "version": "2.0.4",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/ivanakimov/hashids.php.git",
  1586. "reference": "7a945a5192d4a5c8888364970feece9bc26179df"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/ivanakimov/hashids.php/zipball/7a945a5192d4a5c8888364970feece9bc26179df",
  1591. "reference": "7a945a5192d4a5c8888364970feece9bc26179df",
  1592. "shasum": "",
  1593. "mirrors": [
  1594. {
  1595. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1596. "preferred": true
  1597. }
  1598. ]
  1599. },
  1600. "require": {
  1601. "php": "^5.6.4 || ^7.0"
  1602. },
  1603. "require-dev": {
  1604. "phpunit/phpunit": "^5.7 || ^6.3"
  1605. },
  1606. "suggest": {
  1607. "ext-bcmatch": "Required to use BC Math arbitrary precision mathematics (*).",
  1608. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1609. },
  1610. "type": "library",
  1611. "extra": {
  1612. "branch-alias": {
  1613. "dev-master": "2.1-dev"
  1614. }
  1615. },
  1616. "autoload": {
  1617. "psr-4": {
  1618. "Hashids\\": "src/"
  1619. }
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "authors": [
  1626. {
  1627. "name": "Ivan Akimov",
  1628. "email": "ivan@barreleye.com",
  1629. "homepage": "https://twitter.com/IvanAkimov"
  1630. },
  1631. {
  1632. "name": "Vincent Klaiber",
  1633. "email": "hello@vinkla.com",
  1634. "homepage": "https://vinkla.com"
  1635. }
  1636. ],
  1637. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1638. "homepage": "http://hashids.org/php",
  1639. "keywords": [
  1640. "bitly",
  1641. "decode",
  1642. "encode",
  1643. "hash",
  1644. "hashid",
  1645. "hashids",
  1646. "ids",
  1647. "obfuscate",
  1648. "youtube"
  1649. ],
  1650. "time": "2017-10-28T11:24:20+00:00"
  1651. },
  1652. {
  1653. "name": "hidehalo/nanoid-php",
  1654. "version": "1.1.4",
  1655. "source": {
  1656. "type": "git",
  1657. "url": "https://github.com/hidehalo/nanoid-php.git",
  1658. "reference": "0f4ffdd3b56200e2a927501b01bae31b62a35df7"
  1659. },
  1660. "dist": {
  1661. "type": "zip",
  1662. "url": "https://api.github.com/repos/hidehalo/nanoid-php/zipball/0f4ffdd3b56200e2a927501b01bae31b62a35df7",
  1663. "reference": "0f4ffdd3b56200e2a927501b01bae31b62a35df7",
  1664. "shasum": "",
  1665. "mirrors": [
  1666. {
  1667. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1668. "preferred": true
  1669. }
  1670. ]
  1671. },
  1672. "require": {
  1673. "paragonie/random_compat": ">=2.0",
  1674. "php": "~5.6|~7.0"
  1675. },
  1676. "require-dev": {
  1677. "phpunit/phpunit": ">=5.6",
  1678. "squizlabs/php_codesniffer": "^2.3"
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-master": "1.0-dev"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "psr-4": {
  1688. "Hidehalo\\Nanoid\\": "src"
  1689. }
  1690. },
  1691. "notification-url": "https://packagist.org/downloads/",
  1692. "license": [
  1693. "MIT"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "hidehalo",
  1698. "email": "tianchen_cc@yeah.net",
  1699. "homepage": "https://github.com/hidehalo",
  1700. "role": "Owner"
  1701. }
  1702. ],
  1703. "description": "A copy of nanoid in PHP",
  1704. "homepage": "https://github.com/hidehalo/nanoid-php",
  1705. "keywords": [
  1706. "hidehalo",
  1707. "nanoid-php"
  1708. ],
  1709. "time": "2018-10-03T02:53:38+00:00"
  1710. },
  1711. {
  1712. "name": "ibrand/backend",
  1713. "version": "v3.0.2",
  1714. "source": {
  1715. "type": "git",
  1716. "url": "https://github.com/ibrandcc/backend.git",
  1717. "reference": "1ebd7ca038abc1df273b834394af34a057e7cfc9"
  1718. },
  1719. "dist": {
  1720. "type": "zip",
  1721. "url": "https://api.github.com/repos/ibrandcc/backend/zipball/1ebd7ca038abc1df273b834394af34a057e7cfc9",
  1722. "reference": "1ebd7ca038abc1df273b834394af34a057e7cfc9",
  1723. "shasum": "",
  1724. "mirrors": [
  1725. {
  1726. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1727. "preferred": true
  1728. }
  1729. ]
  1730. },
  1731. "require": {
  1732. "encore/laravel-admin": "1.5.19",
  1733. "ibrand/laravel-sms": "~1.0",
  1734. "ibrand/setting": "~1.0",
  1735. "laravel-admin-ext/backup": "1.0.2",
  1736. "laravel-admin-ext/helpers": "1.0.2",
  1737. "laravel-admin-ext/log-viewer": "1.0.2",
  1738. "laravel-admin-ext/redis-manager": "1.0.1",
  1739. "laravel-admin-ext/scheduling": "1.0.1",
  1740. "maatwebsite/excel": "~2.1.23",
  1741. "php": ">=7.0.0"
  1742. },
  1743. "require-dev": {
  1744. "orchestra/testbench": "~3.5",
  1745. "phpunit/phpunit": "~6.0"
  1746. },
  1747. "type": "library",
  1748. "extra": {
  1749. "laravel": {
  1750. "providers": [
  1751. "iBrand\\Backend\\BackendServiceProvider"
  1752. ],
  1753. "aliases": {
  1754. "BackendMenu": "iBrand\\Backend\\Facades\\Menu"
  1755. }
  1756. }
  1757. },
  1758. "autoload": {
  1759. "psr-4": {
  1760. "iBrand\\Backend\\": "src/"
  1761. }
  1762. },
  1763. "notification-url": "https://packagist.org/downloads/",
  1764. "license": [
  1765. "MIT"
  1766. ],
  1767. "authors": [
  1768. {
  1769. "name": "shjchen",
  1770. "email": "ibrand.shjchen@foxmail.com"
  1771. }
  1772. ],
  1773. "description": "ibrand backend base laravel-admin",
  1774. "homepage": "https://github.com/ibrandcc/backend",
  1775. "keywords": [
  1776. "backend",
  1777. "form",
  1778. "grid",
  1779. "laravel"
  1780. ],
  1781. "time": "2018-12-27T12:09:11+00:00"
  1782. },
  1783. {
  1784. "name": "ibrand/laravel-active",
  1785. "version": "v2.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/shjchen/laravel-active.git",
  1789. "reference": "48c2f1e687734d31c2bf3309ff6163f78c0c77a5"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/shjchen/laravel-active/zipball/48c2f1e687734d31c2bf3309ff6163f78c0c77a5",
  1794. "reference": "48c2f1e687734d31c2bf3309ff6163f78c0c77a5",
  1795. "shasum": "",
  1796. "mirrors": [
  1797. {
  1798. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1799. "preferred": true
  1800. }
  1801. ]
  1802. },
  1803. "require": {
  1804. "illuminate/http": "~5.0",
  1805. "illuminate/routing": "~5.0",
  1806. "illuminate/support": "~5.0",
  1807. "php": ">=5.5.9"
  1808. },
  1809. "require-dev": {
  1810. "codeclimate/php-test-reporter": "dev-master",
  1811. "mockery/mockery": "dev-master",
  1812. "phpunit/phpunit": "~4.0"
  1813. },
  1814. "type": "library",
  1815. "autoload": {
  1816. "psr-4": {
  1817. "HieuLe\\Active\\": "src/"
  1818. }
  1819. },
  1820. "notification-url": "https://packagist.org/downloads/",
  1821. "license": [
  1822. "MIT"
  1823. ],
  1824. "authors": [
  1825. {
  1826. "name": "Hieu Le",
  1827. "email": "letrunghieu.cse09@gmail.com",
  1828. "homepage": "http://www.hieule.info"
  1829. }
  1830. ],
  1831. "description": "The helper class for Laravel 4 applications to get active class base on current route",
  1832. "homepage": "http://www.hieule.info/products/active-class-helper-laravel-4/",
  1833. "keywords": [
  1834. "active",
  1835. "laravel",
  1836. "routing"
  1837. ],
  1838. "time": "2018-03-26T15:11:13+00:00"
  1839. },
  1840. {
  1841. "name": "ibrand/laravel-cache",
  1842. "version": "v1.0.0",
  1843. "source": {
  1844. "type": "git",
  1845. "url": "https://github.com/ibrandcc/laravel-cache.git",
  1846. "reference": "93d3f40b97d9b776d0af9997e51337db9d789e31"
  1847. },
  1848. "dist": {
  1849. "type": "zip",
  1850. "url": "https://api.github.com/repos/ibrandcc/laravel-cache/zipball/93d3f40b97d9b776d0af9997e51337db9d789e31",
  1851. "reference": "93d3f40b97d9b776d0af9997e51337db9d789e31",
  1852. "shasum": "",
  1853. "mirrors": [
  1854. {
  1855. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1856. "preferred": true
  1857. }
  1858. ]
  1859. },
  1860. "require": {
  1861. "php": ">=5.6"
  1862. },
  1863. "type": "library",
  1864. "autoload": {
  1865. "psr-4": {
  1866. "iBrand\\Cache\\": "src/"
  1867. },
  1868. "files": [
  1869. "src/helps.php"
  1870. ]
  1871. },
  1872. "notification-url": "https://packagist.org/downloads/",
  1873. "license": [
  1874. "MIT"
  1875. ],
  1876. "authors": [
  1877. {
  1878. "name": "shjchen",
  1879. "email": "zdbd@vip.qq.com"
  1880. }
  1881. ],
  1882. "description": "Packaging commonly used caching usage extend Laravel's cache",
  1883. "keywords": [
  1884. "cache",
  1885. "ibrand",
  1886. "laravel"
  1887. ],
  1888. "time": "2018-01-05T07:55:42+00:00"
  1889. },
  1890. {
  1891. "name": "ibrand/laravel-miniprogram-poster",
  1892. "version": "v1.3.1",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/ibrandcc/laravel-miniprogram-poster.git",
  1896. "reference": "e4de6162bc08cea88a3b78fe6f6f47d131bdc234"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/ibrandcc/laravel-miniprogram-poster/zipball/e4de6162bc08cea88a3b78fe6f6f47d131bdc234",
  1901. "reference": "e4de6162bc08cea88a3b78fe6f6f47d131bdc234",
  1902. "shasum": "",
  1903. "mirrors": [
  1904. {
  1905. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1906. "preferred": true
  1907. }
  1908. ]
  1909. },
  1910. "require": {
  1911. "anam/phantomjs-linux-x86-binary": "~2.1.1",
  1912. "anam/phantommagick": "~2.0",
  1913. "php": ">=7.0"
  1914. },
  1915. "require-dev": {
  1916. "orchestra/database": "~3.5",
  1917. "orchestra/testbench": "~3.5",
  1918. "phpunit/phpunit": "~6.0"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "laravel": {
  1923. "providers": [
  1924. "iBrand\\Miniprogram\\Poster\\PhantoMmagickServiceProvider"
  1925. ]
  1926. }
  1927. },
  1928. "autoload": {
  1929. "psr-4": {
  1930. "iBrand\\Miniprogram\\Poster\\": "src/"
  1931. }
  1932. },
  1933. "notification-url": "https://packagist.org/downloads/",
  1934. "license": [
  1935. "MIT"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "tangqi",
  1940. "email": "tangqi@element.vip"
  1941. }
  1942. ],
  1943. "description": "iBrand's laravel miniprogram poster tool",
  1944. "keywords": [
  1945. "component",
  1946. "ibrand",
  1947. "miniprogram",
  1948. "poster"
  1949. ],
  1950. "time": "2018-10-17T07:59:37+00:00"
  1951. },
  1952. {
  1953. "name": "ibrand/laravel-scheduling",
  1954. "version": "v1.0.0",
  1955. "source": {
  1956. "type": "git",
  1957. "url": "https://github.com/ibrandcc/laravel-scheduling.git",
  1958. "reference": "7ddf6f684cdbd3bfbcc4994467995103b6f6f1ae"
  1959. },
  1960. "dist": {
  1961. "type": "zip",
  1962. "url": "https://api.github.com/repos/ibrandcc/laravel-scheduling/zipball/7ddf6f684cdbd3bfbcc4994467995103b6f6f1ae",
  1963. "reference": "7ddf6f684cdbd3bfbcc4994467995103b6f6f1ae",
  1964. "shasum": "",
  1965. "mirrors": [
  1966. {
  1967. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1968. "preferred": true
  1969. }
  1970. ]
  1971. },
  1972. "require": {
  1973. "php": ">=5.6"
  1974. },
  1975. "type": "library",
  1976. "extra": {
  1977. "laravel": {
  1978. "providers": [
  1979. "iBrand\\Scheduling\\ServiceProvider"
  1980. ]
  1981. }
  1982. },
  1983. "autoload": {
  1984. "psr-4": {
  1985. "iBrand\\Scheduling\\": "src/"
  1986. }
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "MIT"
  1991. ],
  1992. "authors": [
  1993. {
  1994. "name": "shjchen",
  1995. "email": "ibrand.sjchen@foxmail.com"
  1996. }
  1997. ],
  1998. "description": "ibrand's laravel scheduling. Split scheduling to every package.",
  1999. "keywords": [
  2000. "ibrand",
  2001. "laravel scheduling"
  2002. ],
  2003. "time": "2018-01-17T14:07:17+00:00"
  2004. },
  2005. {
  2006. "name": "ibrand/laravel-shopping-cart",
  2007. "version": "v1.3.1",
  2008. "source": {
  2009. "type": "git",
  2010. "url": "https://github.com/ibrandcc/laravel-shopping-cart.git",
  2011. "reference": "53ff7cd52d42db867ba1efb233e403700b6c7c6a"
  2012. },
  2013. "dist": {
  2014. "type": "zip",
  2015. "url": "https://api.github.com/repos/ibrandcc/laravel-shopping-cart/zipball/53ff7cd52d42db867ba1efb233e403700b6c7c6a",
  2016. "reference": "53ff7cd52d42db867ba1efb233e403700b6c7c6a",
  2017. "shasum": "",
  2018. "mirrors": [
  2019. {
  2020. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2021. "preferred": true
  2022. }
  2023. ]
  2024. },
  2025. "require": {
  2026. "php": ">=5.6"
  2027. },
  2028. "require-dev": {
  2029. "mockery/mockery": "~0.9",
  2030. "orchestra/database": "^3.4",
  2031. "orchestra/testbench": "~3.4",
  2032. "phpunit/phpunit": "~5.0"
  2033. },
  2034. "type": "library",
  2035. "extra": {
  2036. "laravel": {
  2037. "providers": [
  2038. "iBrand\\Shoppingcart\\ServiceProvider"
  2039. ],
  2040. "aliases": {
  2041. "Cart": "iBrand\\Shoppingcart\\Facade"
  2042. }
  2043. }
  2044. },
  2045. "autoload": {
  2046. "psr-4": {
  2047. "iBrand\\Shoppingcart\\": "src/"
  2048. }
  2049. },
  2050. "notification-url": "https://packagist.org/downloads/",
  2051. "license": [
  2052. "MIT"
  2053. ],
  2054. "authors": [
  2055. {
  2056. "name": "shjchen",
  2057. "email": "ibrand.shjchen@foxmail.com"
  2058. }
  2059. ],
  2060. "description": "Shopping cart for Laravel Application.",
  2061. "keywords": [
  2062. "laravel",
  2063. "shopping",
  2064. "shopping cart"
  2065. ],
  2066. "time": "2018-03-27T14:53:30+00:00"
  2067. },
  2068. {
  2069. "name": "ibrand/laravel-sms",
  2070. "version": "v1.3.3",
  2071. "source": {
  2072. "type": "git",
  2073. "url": "https://github.com/ibrandcc/laravel-sms.git",
  2074. "reference": "0023d0f7f2d27d1abef5ba863c255023077db558"
  2075. },
  2076. "dist": {
  2077. "type": "zip",
  2078. "url": "https://api.github.com/repos/ibrandcc/laravel-sms/zipball/0023d0f7f2d27d1abef5ba863c255023077db558",
  2079. "reference": "0023d0f7f2d27d1abef5ba863c255023077db558",
  2080. "shasum": "",
  2081. "mirrors": [
  2082. {
  2083. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2084. "preferred": true
  2085. }
  2086. ]
  2087. },
  2088. "require": {
  2089. "overtrue/easy-sms": "~1.0",
  2090. "php": ">=7.0"
  2091. },
  2092. "require-dev": {
  2093. "mockery/mockery": "~0.9",
  2094. "orchestra/testbench": "~3.5",
  2095. "phpunit/phpunit": "~6.0"
  2096. },
  2097. "type": "library",
  2098. "extra": {
  2099. "laravel": {
  2100. "providers": [
  2101. "iBrand\\Sms\\ServiceProvider"
  2102. ],
  2103. "aliases": {
  2104. "Sms": "iBrand\\Sms\\Facade"
  2105. }
  2106. }
  2107. },
  2108. "autoload": {
  2109. "psr-4": {
  2110. "iBrand\\Sms\\": "src/"
  2111. }
  2112. },
  2113. "notification-url": "https://packagist.org/downloads/",
  2114. "license": [
  2115. "MIT"
  2116. ],
  2117. "authors": [
  2118. {
  2119. "name": "shjchen",
  2120. "email": "ibrand.shjchen@foxmail.com"
  2121. }
  2122. ],
  2123. "description": "ibrand laravel sms base overtrue's easy-sms",
  2124. "keywords": [
  2125. "ibrand",
  2126. "laravel sms"
  2127. ],
  2128. "time": "2018-05-04T12:53:37+00:00"
  2129. },
  2130. {
  2131. "name": "ibrand/laravel-ueditor",
  2132. "version": "v1.0.0",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/ibrandcc/laravel-ueditor.git",
  2136. "reference": "8cde57d57fab056770d1ea91443b585799162aee"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/ibrandcc/laravel-ueditor/zipball/8cde57d57fab056770d1ea91443b585799162aee",
  2141. "reference": "8cde57d57fab056770d1ea91443b585799162aee",
  2142. "shasum": "",
  2143. "mirrors": [
  2144. {
  2145. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2146. "preferred": true
  2147. }
  2148. ]
  2149. },
  2150. "require": {
  2151. "ext-fileinfo": "*",
  2152. "illuminate/support": "5.*",
  2153. "php": ">=5.4.0",
  2154. "qiniu/php-sdk": "7.*"
  2155. },
  2156. "type": "library",
  2157. "autoload": {
  2158. "psr-4": {
  2159. "iBrand\\UEditor\\": "src/"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "chen hao",
  2169. "email": "chenhao@element.vip"
  2170. }
  2171. ],
  2172. "description": "UEditor for laravel5. Support i18n. UEditor is a Rich Text Web Editor From Baidu.",
  2173. "keywords": [
  2174. "laravel",
  2175. "laravel-u-editor",
  2176. "laravel5 web text editor",
  2177. "ueditor"
  2178. ],
  2179. "time": "2018-11-22T09:33:21+00:00"
  2180. },
  2181. {
  2182. "name": "ibrand/pay",
  2183. "version": "v0.1.1",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/ibrandcc/pay.git",
  2187. "reference": "4d8419dcbea621307896adb85397412dab471a81"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/ibrandcc/pay/zipball/4d8419dcbea621307896adb85397412dab471a81",
  2192. "reference": "4d8419dcbea621307896adb85397412dab471a81",
  2193. "shasum": "",
  2194. "mirrors": [
  2195. {
  2196. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2197. "preferred": true
  2198. }
  2199. ]
  2200. },
  2201. "require": {
  2202. "hidehalo/nanoid-php": "^1.1",
  2203. "php": ">=7.0",
  2204. "yansongda/pay": "^2.5"
  2205. },
  2206. "require-dev": {
  2207. "mockery/mockery": "~1.0",
  2208. "orchestra/database": "~3.5",
  2209. "orchestra/testbench": "~3.5",
  2210. "phpunit/phpunit": "~6.0"
  2211. },
  2212. "type": "library",
  2213. "extra": {
  2214. "laravel": {
  2215. "providers": [
  2216. "iBrand\\Component\\Pay\\PayServiceProvider"
  2217. ],
  2218. "aliases": {
  2219. "Charge": "iBrand\\Component\\Pay\\Facades\\Charge"
  2220. }
  2221. }
  2222. },
  2223. "autoload": {
  2224. "psr-4": {
  2225. "iBrand\\Component\\Pay\\": "src/"
  2226. }
  2227. },
  2228. "notification-url": "https://packagist.org/downloads/",
  2229. "license": [
  2230. "MIT"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "shjchen",
  2235. "email": "ibrand.shjchen@foxmail.com"
  2236. }
  2237. ],
  2238. "description": "ibrand pay component",
  2239. "keywords": [
  2240. "component",
  2241. "ibrand",
  2242. "pay"
  2243. ],
  2244. "time": "2018-12-29T03:37:46+00:00"
  2245. },
  2246. {
  2247. "name": "ibrand/setting",
  2248. "version": "v1.2.1",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/ibrandcc/setting.git",
  2252. "reference": "e922c2a7bb680d836af7a6def9507f39bbce1ee9"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/ibrandcc/setting/zipball/e922c2a7bb680d836af7a6def9507f39bbce1ee9",
  2257. "reference": "e922c2a7bb680d836af7a6def9507f39bbce1ee9",
  2258. "shasum": "",
  2259. "mirrors": [
  2260. {
  2261. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2262. "preferred": true
  2263. }
  2264. ]
  2265. },
  2266. "require": {
  2267. "php": ">=7.0"
  2268. },
  2269. "require-dev": {
  2270. "mockery/mockery": "~0.9",
  2271. "orchestra/database": "^3.5",
  2272. "orchestra/testbench": "~3.5",
  2273. "phpunit/phpunit": "~6.0"
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "laravel": {
  2278. "providers": [
  2279. "iBrand\\Component\\Setting\\ServiceProvider"
  2280. ]
  2281. }
  2282. },
  2283. "autoload": {
  2284. "files": [
  2285. "src/helpers.php"
  2286. ],
  2287. "psr-4": {
  2288. "iBrand\\Component\\Setting\\": "src/"
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "shjchen",
  2298. "email": "ibrand.shjchen@foxmail.com"
  2299. }
  2300. ],
  2301. "description": "ibrand setting component",
  2302. "keywords": [
  2303. "component",
  2304. "ibrand",
  2305. "setting"
  2306. ],
  2307. "time": "2018-12-19T05:56:45+00:00"
  2308. },
  2309. {
  2310. "name": "intervention/image",
  2311. "version": "2.4.2",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/Intervention/image.git",
  2315. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
  2320. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
  2321. "shasum": "",
  2322. "mirrors": [
  2323. {
  2324. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2325. "preferred": true
  2326. }
  2327. ]
  2328. },
  2329. "require": {
  2330. "ext-fileinfo": "*",
  2331. "guzzlehttp/psr7": "~1.1",
  2332. "php": ">=5.4.0"
  2333. },
  2334. "require-dev": {
  2335. "mockery/mockery": "~0.9.2",
  2336. "phpunit/phpunit": "^4.8 || ^5.7"
  2337. },
  2338. "suggest": {
  2339. "ext-gd": "to use GD library based image processing.",
  2340. "ext-imagick": "to use Imagick based image processing.",
  2341. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2342. },
  2343. "type": "library",
  2344. "extra": {
  2345. "branch-alias": {
  2346. "dev-master": "2.4-dev"
  2347. },
  2348. "laravel": {
  2349. "providers": [
  2350. "Intervention\\Image\\ImageServiceProvider"
  2351. ],
  2352. "aliases": {
  2353. "Image": "Intervention\\Image\\Facades\\Image"
  2354. }
  2355. }
  2356. },
  2357. "autoload": {
  2358. "psr-4": {
  2359. "Intervention\\Image\\": "src/Intervention/Image"
  2360. }
  2361. },
  2362. "notification-url": "https://packagist.org/downloads/",
  2363. "license": [
  2364. "MIT"
  2365. ],
  2366. "authors": [
  2367. {
  2368. "name": "Oliver Vogel",
  2369. "email": "oliver@olivervogel.com",
  2370. "homepage": "http://olivervogel.com/"
  2371. }
  2372. ],
  2373. "description": "Image handling and manipulation library with support for Laravel integration",
  2374. "homepage": "http://image.intervention.io/",
  2375. "keywords": [
  2376. "gd",
  2377. "image",
  2378. "imagick",
  2379. "laravel",
  2380. "thumbnail",
  2381. "watermark"
  2382. ],
  2383. "time": "2018-05-29T14:19:03+00:00"
  2384. },
  2385. {
  2386. "name": "jakub-onderka/php-console-color",
  2387. "version": "v0.2",
  2388. "source": {
  2389. "type": "git",
  2390. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  2391. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  2392. },
  2393. "dist": {
  2394. "type": "zip",
  2395. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  2396. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  2397. "shasum": "",
  2398. "mirrors": [
  2399. {
  2400. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2401. "preferred": true
  2402. }
  2403. ]
  2404. },
  2405. "require": {
  2406. "php": ">=5.4.0"
  2407. },
  2408. "require-dev": {
  2409. "jakub-onderka/php-code-style": "1.0",
  2410. "jakub-onderka/php-parallel-lint": "1.0",
  2411. "jakub-onderka/php-var-dump-check": "0.*",
  2412. "phpunit/phpunit": "~4.3",
  2413. "squizlabs/php_codesniffer": "1.*"
  2414. },
  2415. "type": "library",
  2416. "autoload": {
  2417. "psr-4": {
  2418. "JakubOnderka\\PhpConsoleColor\\": "src/"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "BSD-2-Clause"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Jakub Onderka",
  2428. "email": "jakub.onderka@gmail.com"
  2429. }
  2430. ],
  2431. "time": "2018-09-29T17:23:10+00:00"
  2432. },
  2433. {
  2434. "name": "jakub-onderka/php-console-highlighter",
  2435. "version": "v0.4",
  2436. "source": {
  2437. "type": "git",
  2438. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  2439. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  2440. },
  2441. "dist": {
  2442. "type": "zip",
  2443. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2444. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2445. "shasum": "",
  2446. "mirrors": [
  2447. {
  2448. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2449. "preferred": true
  2450. }
  2451. ]
  2452. },
  2453. "require": {
  2454. "ext-tokenizer": "*",
  2455. "jakub-onderka/php-console-color": "~0.2",
  2456. "php": ">=5.4.0"
  2457. },
  2458. "require-dev": {
  2459. "jakub-onderka/php-code-style": "~1.0",
  2460. "jakub-onderka/php-parallel-lint": "~1.0",
  2461. "jakub-onderka/php-var-dump-check": "~0.1",
  2462. "phpunit/phpunit": "~4.0",
  2463. "squizlabs/php_codesniffer": "~1.5"
  2464. },
  2465. "type": "library",
  2466. "autoload": {
  2467. "psr-4": {
  2468. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  2469. }
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "Jakub Onderka",
  2478. "email": "acci@acci.cz",
  2479. "homepage": "http://www.acci.cz/"
  2480. }
  2481. ],
  2482. "description": "Highlight PHP code in terminal",
  2483. "time": "2018-09-29T18:48:56+00:00"
  2484. },
  2485. {
  2486. "name": "jaybizzle/crawler-detect",
  2487. "version": "v1.2.76",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2491. "reference": "728dd7f210819ccafbf008a6ef7956f4f3c3571c"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/728dd7f210819ccafbf008a6ef7956f4f3c3571c",
  2496. "reference": "728dd7f210819ccafbf008a6ef7956f4f3c3571c",
  2497. "shasum": "",
  2498. "mirrors": [
  2499. {
  2500. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2501. "preferred": true
  2502. }
  2503. ]
  2504. },
  2505. "require": {
  2506. "php": ">=5.3.0"
  2507. },
  2508. "require-dev": {
  2509. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  2510. "satooshi/php-coveralls": "1.*"
  2511. },
  2512. "type": "library",
  2513. "autoload": {
  2514. "psr-4": {
  2515. "Jaybizzle\\CrawlerDetect\\": "src/"
  2516. }
  2517. },
  2518. "notification-url": "https://packagist.org/downloads/",
  2519. "license": [
  2520. "MIT"
  2521. ],
  2522. "authors": [
  2523. {
  2524. "name": "Mark Beech",
  2525. "email": "m@rkbee.ch",
  2526. "role": "Developer"
  2527. }
  2528. ],
  2529. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2530. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2531. "keywords": [
  2532. "crawler",
  2533. "crawler detect",
  2534. "crawler detector",
  2535. "crawlerdetect",
  2536. "php crawler detect"
  2537. ],
  2538. "time": "2018-12-18T08:52:44+00:00"
  2539. },
  2540. {
  2541. "name": "jenssegers/agent",
  2542. "version": "v2.6.0",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/jenssegers/agent.git",
  2546. "reference": "df71082ed2a95fc8a82ba30832ccf72df939f02a"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/jenssegers/agent/zipball/df71082ed2a95fc8a82ba30832ccf72df939f02a",
  2551. "reference": "df71082ed2a95fc8a82ba30832ccf72df939f02a",
  2552. "shasum": "",
  2553. "mirrors": [
  2554. {
  2555. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2556. "preferred": true
  2557. }
  2558. ]
  2559. },
  2560. "require": {
  2561. "jaybizzle/crawler-detect": "^1.2",
  2562. "mobiledetect/mobiledetectlib": "^2.7.6",
  2563. "php": ">=5.4.0"
  2564. },
  2565. "require-dev": {
  2566. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  2567. "satooshi/php-coveralls": "^1.0"
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "3.0-dev"
  2573. },
  2574. "laravel": {
  2575. "providers": [
  2576. "Jenssegers\\Agent\\AgentServiceProvider"
  2577. ],
  2578. "aliases": {
  2579. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2580. }
  2581. }
  2582. },
  2583. "autoload": {
  2584. "psr-4": {
  2585. "Jenssegers\\Agent\\": "src/"
  2586. }
  2587. },
  2588. "notification-url": "https://packagist.org/downloads/",
  2589. "license": [
  2590. "MIT"
  2591. ],
  2592. "authors": [
  2593. {
  2594. "name": "Jens Segers",
  2595. "homepage": "https://jenssegers.com"
  2596. }
  2597. ],
  2598. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2599. "homepage": "https://github.com/jenssegers/agent",
  2600. "keywords": [
  2601. "Agent",
  2602. "browser",
  2603. "desktop",
  2604. "laravel",
  2605. "mobile",
  2606. "platform",
  2607. "user agent",
  2608. "useragent"
  2609. ],
  2610. "time": "2017-11-10T10:35:35+00:00"
  2611. },
  2612. {
  2613. "name": "jeremeamia/SuperClosure",
  2614. "version": "2.4.0",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/jeremeamia/super_closure.git",
  2618. "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
  2623. "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
  2624. "shasum": "",
  2625. "mirrors": [
  2626. {
  2627. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2628. "preferred": true
  2629. }
  2630. ]
  2631. },
  2632. "require": {
  2633. "nikic/php-parser": "^1.2|^2.0|^3.0|^4.0",
  2634. "php": ">=5.4",
  2635. "symfony/polyfill-php56": "^1.0"
  2636. },
  2637. "require-dev": {
  2638. "phpunit/phpunit": "^4.0|^5.0"
  2639. },
  2640. "type": "library",
  2641. "extra": {
  2642. "branch-alias": {
  2643. "dev-master": "2.4-dev"
  2644. }
  2645. },
  2646. "autoload": {
  2647. "psr-4": {
  2648. "SuperClosure\\": "src/"
  2649. }
  2650. },
  2651. "notification-url": "https://packagist.org/downloads/",
  2652. "license": [
  2653. "MIT"
  2654. ],
  2655. "authors": [
  2656. {
  2657. "name": "Jeremy Lindblom",
  2658. "email": "jeremeamia@gmail.com",
  2659. "homepage": "https://github.com/jeremeamia",
  2660. "role": "Developer"
  2661. }
  2662. ],
  2663. "description": "Serialize Closure objects, including their context and binding",
  2664. "homepage": "https://github.com/jeremeamia/super_closure",
  2665. "keywords": [
  2666. "closure",
  2667. "function",
  2668. "lambda",
  2669. "parser",
  2670. "serializable",
  2671. "serialize",
  2672. "tokenizer"
  2673. ],
  2674. "time": "2018-03-21T22:21:57+00:00"
  2675. },
  2676. {
  2677. "name": "kalnoy/nestedset",
  2678. "version": "v4.3.3",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/lazychaser/laravel-nestedset.git",
  2682. "reference": "8f2882b8e402cce1204233541ea8ff51513f9e71"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/lazychaser/laravel-nestedset/zipball/8f2882b8e402cce1204233541ea8ff51513f9e71",
  2687. "reference": "8f2882b8e402cce1204233541ea8ff51513f9e71",
  2688. "shasum": "",
  2689. "mirrors": [
  2690. {
  2691. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2692. "preferred": true
  2693. }
  2694. ]
  2695. },
  2696. "require": {
  2697. "illuminate/database": "5.2 - 5.7",
  2698. "illuminate/events": "5.2 - 5.7",
  2699. "illuminate/support": "5.2 - 5.7",
  2700. "php": ">=5.5.9"
  2701. },
  2702. "require-dev": {
  2703. "phpunit/phpunit": "4.8.*"
  2704. },
  2705. "type": "library",
  2706. "extra": {
  2707. "branch-alias": {
  2708. "dev-master": "v4.2.x-dev"
  2709. },
  2710. "laravel": {
  2711. "providers": [
  2712. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  2713. ]
  2714. }
  2715. },
  2716. "autoload": {
  2717. "psr-4": {
  2718. "Kalnoy\\Nestedset\\": "src/"
  2719. }
  2720. },
  2721. "notification-url": "https://packagist.org/downloads/",
  2722. "license": [
  2723. "MIT"
  2724. ],
  2725. "authors": [
  2726. {
  2727. "name": "Alexander Kalnoy",
  2728. "email": "lazychaser@gmail.com"
  2729. }
  2730. ],
  2731. "description": "Nested Set Model for Laravel 4-5",
  2732. "keywords": [
  2733. "database",
  2734. "hierarchy",
  2735. "laravel",
  2736. "nested sets",
  2737. "nsm"
  2738. ],
  2739. "time": "2018-09-04T15:11:11+00:00"
  2740. },
  2741. {
  2742. "name": "laracasts/flash",
  2743. "version": "2.0.1",
  2744. "source": {
  2745. "type": "git",
  2746. "url": "https://github.com/laracasts/flash.git",
  2747. "reference": "03eec812fd6ae948664ff51b4320785f6d15ee5d"
  2748. },
  2749. "dist": {
  2750. "type": "zip",
  2751. "url": "https://api.github.com/repos/laracasts/flash/zipball/03eec812fd6ae948664ff51b4320785f6d15ee5d",
  2752. "reference": "03eec812fd6ae948664ff51b4320785f6d15ee5d",
  2753. "shasum": "",
  2754. "mirrors": [
  2755. {
  2756. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2757. "preferred": true
  2758. }
  2759. ]
  2760. },
  2761. "require": {
  2762. "illuminate/support": "~5.0",
  2763. "php": ">=5.4.0"
  2764. },
  2765. "require-dev": {
  2766. "mockery/mockery": "dev-master"
  2767. },
  2768. "type": "library",
  2769. "autoload": {
  2770. "psr-0": {
  2771. "Laracasts\\Flash": "src/"
  2772. },
  2773. "files": [
  2774. "src/Laracasts/Flash/functions.php"
  2775. ]
  2776. },
  2777. "notification-url": "https://packagist.org/downloads/",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "Jeffrey Way",
  2784. "email": "jeffrey@laracasts.com"
  2785. }
  2786. ],
  2787. "description": "Easy flash notifications",
  2788. "time": "2016-07-11T20:46:02+00:00"
  2789. },
  2790. {
  2791. "name": "laravel-admin-ext/backup",
  2792. "version": "v1.0.2",
  2793. "source": {
  2794. "type": "git",
  2795. "url": "https://github.com/laravel-admin-extensions/backup.git",
  2796. "reference": "9477a6ad6d345333cc3f39285a9b786836715bfe"
  2797. },
  2798. "dist": {
  2799. "type": "zip",
  2800. "url": "https://api.github.com/repos/laravel-admin-extensions/backup/zipball/9477a6ad6d345333cc3f39285a9b786836715bfe",
  2801. "reference": "9477a6ad6d345333cc3f39285a9b786836715bfe",
  2802. "shasum": "",
  2803. "mirrors": [
  2804. {
  2805. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2806. "preferred": true
  2807. }
  2808. ]
  2809. },
  2810. "require": {
  2811. "encore/laravel-admin": "~1.5",
  2812. "laravel/framework": "~5.5",
  2813. "php": ">=7.0.0",
  2814. "spatie/laravel-backup": "^5.0"
  2815. },
  2816. "require-dev": {
  2817. "laravel/laravel": "~5.5",
  2818. "phpunit/phpunit": "~6.0"
  2819. },
  2820. "type": "library",
  2821. "extra": {
  2822. "laravel": {
  2823. "providers": [
  2824. "Encore\\Admin\\Backup\\BackupServiceProvider"
  2825. ]
  2826. }
  2827. },
  2828. "autoload": {
  2829. "psr-4": {
  2830. "Encore\\Admin\\Backup\\": "src/"
  2831. }
  2832. },
  2833. "notification-url": "https://packagist.org/downloads/",
  2834. "license": [
  2835. "MIT"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "z-song",
  2840. "email": "zosong@126.com"
  2841. }
  2842. ],
  2843. "description": "Backup extension for laravel-admin",
  2844. "homepage": "https://github.com/laravel-admin-extensions/backup",
  2845. "keywords": [
  2846. "backup",
  2847. "laravel-admin"
  2848. ],
  2849. "time": "2018-04-24T11:45:17+00:00"
  2850. },
  2851. {
  2852. "name": "laravel-admin-ext/helpers",
  2853. "version": "v1.0.2",
  2854. "source": {
  2855. "type": "git",
  2856. "url": "https://github.com/laravel-admin-extensions/helpers.git",
  2857. "reference": "c670d85e827bf2347d2ff0c26161ab1497f7a5ed"
  2858. },
  2859. "dist": {
  2860. "type": "zip",
  2861. "url": "https://api.github.com/repos/laravel-admin-extensions/helpers/zipball/c670d85e827bf2347d2ff0c26161ab1497f7a5ed",
  2862. "reference": "c670d85e827bf2347d2ff0c26161ab1497f7a5ed",
  2863. "shasum": "",
  2864. "mirrors": [
  2865. {
  2866. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2867. "preferred": true
  2868. }
  2869. ]
  2870. },
  2871. "require": {
  2872. "encore/laravel-admin": "1.5.*",
  2873. "laravel/framework": "~5.5",
  2874. "php": ">=7.0.0"
  2875. },
  2876. "require-dev": {
  2877. "laravel/laravel": "~5.5",
  2878. "phpunit/phpunit": "~6.0"
  2879. },
  2880. "type": "library",
  2881. "extra": {
  2882. "laravel": {
  2883. "providers": [
  2884. "Encore\\Admin\\Helpers\\HelpersServiceProvider"
  2885. ]
  2886. }
  2887. },
  2888. "autoload": {
  2889. "psr-4": {
  2890. "Encore\\Admin\\Helpers\\": "src/"
  2891. }
  2892. },
  2893. "notification-url": "https://packagist.org/downloads/",
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "authors": [
  2898. {
  2899. "name": "z-song",
  2900. "email": "zosong@126.com"
  2901. }
  2902. ],
  2903. "description": "Helpers extension for laravel-admin",
  2904. "homepage": "https://github.com/laravel-admin-extensions/helpers",
  2905. "keywords": [
  2906. "helpers",
  2907. "laravel-admin"
  2908. ],
  2909. "time": "2018-04-24T09:35:32+00:00"
  2910. },
  2911. {
  2912. "name": "laravel-admin-ext/log-viewer",
  2913. "version": "v1.0.2",
  2914. "source": {
  2915. "type": "git",
  2916. "url": "https://github.com/laravel-admin-extensions/log-viewer.git",
  2917. "reference": "19c78d7b81b0f062d4a1a61fb0c0310305b097c2"
  2918. },
  2919. "dist": {
  2920. "type": "zip",
  2921. "url": "https://api.github.com/repos/laravel-admin-extensions/log-viewer/zipball/19c78d7b81b0f062d4a1a61fb0c0310305b097c2",
  2922. "reference": "19c78d7b81b0f062d4a1a61fb0c0310305b097c2",
  2923. "shasum": "",
  2924. "mirrors": [
  2925. {
  2926. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2927. "preferred": true
  2928. }
  2929. ]
  2930. },
  2931. "require": {
  2932. "encore/laravel-admin": "~1.5",
  2933. "laravel/framework": "~5.5",
  2934. "php": ">=7.0.0"
  2935. },
  2936. "require-dev": {
  2937. "laravel/laravel": "~5.5",
  2938. "phpunit/phpunit": "~6.0"
  2939. },
  2940. "type": "library",
  2941. "extra": {
  2942. "laravel": {
  2943. "providers": [
  2944. "Encore\\Admin\\LogViewer\\LogViewerServiceProvider"
  2945. ]
  2946. }
  2947. },
  2948. "autoload": {
  2949. "psr-4": {
  2950. "Encore\\Admin\\LogViewer\\": "src/"
  2951. }
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "MIT"
  2956. ],
  2957. "authors": [
  2958. {
  2959. "name": "z-song",
  2960. "email": "zosong@126.com"
  2961. }
  2962. ],
  2963. "description": "Log viewer for laravel",
  2964. "homepage": "https://github.com/laravel-admin-extensions/log-viewer",
  2965. "keywords": [
  2966. "Viewer",
  2967. "laravel-admin",
  2968. "log"
  2969. ],
  2970. "time": "2018-04-25T06:14:03+00:00"
  2971. },
  2972. {
  2973. "name": "laravel-admin-ext/redis-manager",
  2974. "version": "v1.0.1",
  2975. "source": {
  2976. "type": "git",
  2977. "url": "https://github.com/laravel-admin-extensions/redis-manager.git",
  2978. "reference": "391d683fc7fa27535142c20de5a70aa9f94ef23c"
  2979. },
  2980. "dist": {
  2981. "type": "zip",
  2982. "url": "https://api.github.com/repos/laravel-admin-extensions/redis-manager/zipball/391d683fc7fa27535142c20de5a70aa9f94ef23c",
  2983. "reference": "391d683fc7fa27535142c20de5a70aa9f94ef23c",
  2984. "shasum": "",
  2985. "mirrors": [
  2986. {
  2987. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2988. "preferred": true
  2989. }
  2990. ]
  2991. },
  2992. "require": {
  2993. "encore/laravel-admin": "~1.5",
  2994. "laravel/framework": "~5.5",
  2995. "php": ">=7.0.0",
  2996. "predis/predis": "~1.0"
  2997. },
  2998. "require-dev": {
  2999. "laravel/laravel": "~5.5",
  3000. "phpunit/phpunit": "~6.0"
  3001. },
  3002. "type": "library",
  3003. "extra": {
  3004. "laravel": {
  3005. "providers": [
  3006. "Encore\\Admin\\RedisManager\\RedisManagerServiceProvider"
  3007. ]
  3008. }
  3009. },
  3010. "autoload": {
  3011. "psr-4": {
  3012. "Encore\\Admin\\RedisManager\\": "src/"
  3013. }
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "z-song",
  3022. "email": "zosong@126.com"
  3023. }
  3024. ],
  3025. "description": "Redis manager for laravel-admin",
  3026. "homepage": "https://github.com/laravel-admin-extensions/redis-manager",
  3027. "keywords": [
  3028. "laravel-admin",
  3029. "manager",
  3030. "redis"
  3031. ],
  3032. "time": "2018-05-03T07:59:06+00:00"
  3033. },
  3034. {
  3035. "name": "laravel-admin-ext/scheduling",
  3036. "version": "v1.0.1",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/laravel-admin-extensions/scheduling.git",
  3040. "reference": "663ef072b65e8c01c004c3c4577a9428904ba78c"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/laravel-admin-extensions/scheduling/zipball/663ef072b65e8c01c004c3c4577a9428904ba78c",
  3045. "reference": "663ef072b65e8c01c004c3c4577a9428904ba78c",
  3046. "shasum": "",
  3047. "mirrors": [
  3048. {
  3049. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3050. "preferred": true
  3051. }
  3052. ]
  3053. },
  3054. "require": {
  3055. "encore/laravel-admin": "~1.5",
  3056. "laravel/framework": "~5.5",
  3057. "php": ">=7.0.0"
  3058. },
  3059. "require-dev": {
  3060. "laravel/laravel": "~5.5",
  3061. "phpunit/phpunit": "~6.0"
  3062. },
  3063. "type": "library",
  3064. "extra": {
  3065. "laravel": {
  3066. "providers": [
  3067. "Encore\\Admin\\Scheduling\\SchedulingServiceProvider"
  3068. ]
  3069. }
  3070. },
  3071. "autoload": {
  3072. "psr-4": {
  3073. "Encore\\Admin\\Scheduling\\": "src/"
  3074. }
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "z-song",
  3083. "email": "zosong@126.com"
  3084. }
  3085. ],
  3086. "description": "Task scheduling extension for laravel-admin",
  3087. "homepage": "https://github.com/laravel-admin-extensions/scheduling",
  3088. "keywords": [
  3089. "laravel-admin",
  3090. "scheduling",
  3091. "task"
  3092. ],
  3093. "time": "2018-05-07T02:07:14+00:00"
  3094. },
  3095. {
  3096. "name": "laravel/framework",
  3097. "version": "v5.5.44",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/laravel/framework.git",
  3101. "reference": "00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/laravel/framework/zipball/00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b",
  3106. "reference": "00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b",
  3107. "shasum": "",
  3108. "mirrors": [
  3109. {
  3110. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3111. "preferred": true
  3112. }
  3113. ]
  3114. },
  3115. "require": {
  3116. "doctrine/inflector": "~1.1",
  3117. "erusev/parsedown": "~1.7",
  3118. "ext-mbstring": "*",
  3119. "ext-openssl": "*",
  3120. "league/flysystem": "^1.0.8",
  3121. "monolog/monolog": "~1.12",
  3122. "mtdowling/cron-expression": "~1.0",
  3123. "nesbot/carbon": "^1.24.1",
  3124. "php": ">=7.0",
  3125. "psr/container": "~1.0",
  3126. "psr/simple-cache": "^1.0",
  3127. "ramsey/uuid": "~3.0",
  3128. "swiftmailer/swiftmailer": "~6.0",
  3129. "symfony/console": "~3.3",
  3130. "symfony/debug": "~3.3",
  3131. "symfony/finder": "~3.3",
  3132. "symfony/http-foundation": "~3.3",
  3133. "symfony/http-kernel": "~3.3",
  3134. "symfony/process": "~3.3",
  3135. "symfony/routing": "~3.3",
  3136. "symfony/var-dumper": "~3.3",
  3137. "tijsverkoyen/css-to-inline-styles": "~2.2",
  3138. "vlucas/phpdotenv": "~2.2"
  3139. },
  3140. "replace": {
  3141. "illuminate/auth": "self.version",
  3142. "illuminate/broadcasting": "self.version",
  3143. "illuminate/bus": "self.version",
  3144. "illuminate/cache": "self.version",
  3145. "illuminate/config": "self.version",
  3146. "illuminate/console": "self.version",
  3147. "illuminate/container": "self.version",
  3148. "illuminate/contracts": "self.version",
  3149. "illuminate/cookie": "self.version",
  3150. "illuminate/database": "self.version",
  3151. "illuminate/encryption": "self.version",
  3152. "illuminate/events": "self.version",
  3153. "illuminate/filesystem": "self.version",
  3154. "illuminate/hashing": "self.version",
  3155. "illuminate/http": "self.version",
  3156. "illuminate/log": "self.version",
  3157. "illuminate/mail": "self.version",
  3158. "illuminate/notifications": "self.version",
  3159. "illuminate/pagination": "self.version",
  3160. "illuminate/pipeline": "self.version",
  3161. "illuminate/queue": "self.version",
  3162. "illuminate/redis": "self.version",
  3163. "illuminate/routing": "self.version",
  3164. "illuminate/session": "self.version",
  3165. "illuminate/support": "self.version",
  3166. "illuminate/translation": "self.version",
  3167. "illuminate/validation": "self.version",
  3168. "illuminate/view": "self.version",
  3169. "tightenco/collect": "<5.5.33"
  3170. },
  3171. "require-dev": {
  3172. "aws/aws-sdk-php": "~3.0",
  3173. "doctrine/dbal": "~2.5",
  3174. "filp/whoops": "^2.1.4",
  3175. "mockery/mockery": "~1.0",
  3176. "orchestra/testbench-core": "3.5.*",
  3177. "pda/pheanstalk": "~3.0",
  3178. "phpunit/phpunit": "~6.0",
  3179. "predis/predis": "^1.1.1",
  3180. "symfony/css-selector": "~3.3",
  3181. "symfony/dom-crawler": "~3.3"
  3182. },
  3183. "suggest": {
  3184. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  3185. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  3186. "ext-pcntl": "Required to use all features of the queue worker.",
  3187. "ext-posix": "Required to use all features of the queue worker.",
  3188. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  3189. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  3190. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  3191. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  3192. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  3193. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  3194. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  3195. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  3196. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  3197. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  3198. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  3199. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  3200. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  3201. },
  3202. "type": "library",
  3203. "extra": {
  3204. "branch-alias": {
  3205. "dev-master": "5.5-dev"
  3206. }
  3207. },
  3208. "autoload": {
  3209. "files": [
  3210. "src/Illuminate/Foundation/helpers.php",
  3211. "src/Illuminate/Support/helpers.php"
  3212. ],
  3213. "psr-4": {
  3214. "Illuminate\\": "src/Illuminate/"
  3215. }
  3216. },
  3217. "notification-url": "https://packagist.org/downloads/",
  3218. "license": [
  3219. "MIT"
  3220. ],
  3221. "authors": [
  3222. {
  3223. "name": "Taylor Otwell",
  3224. "email": "taylor@laravel.com"
  3225. }
  3226. ],
  3227. "description": "The Laravel Framework.",
  3228. "homepage": "https://laravel.com",
  3229. "keywords": [
  3230. "framework",
  3231. "laravel"
  3232. ],
  3233. "time": "2018-10-04T14:51:24+00:00"
  3234. },
  3235. {
  3236. "name": "laravel/passport",
  3237. "version": "v4.0.3",
  3238. "source": {
  3239. "type": "git",
  3240. "url": "https://github.com/laravel/passport.git",
  3241. "reference": "0542f1f82edfbf857d0197c34a3d41f549aff30a"
  3242. },
  3243. "dist": {
  3244. "type": "zip",
  3245. "url": "https://api.github.com/repos/laravel/passport/zipball/0542f1f82edfbf857d0197c34a3d41f549aff30a",
  3246. "reference": "0542f1f82edfbf857d0197c34a3d41f549aff30a",
  3247. "shasum": "",
  3248. "mirrors": [
  3249. {
  3250. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3251. "preferred": true
  3252. }
  3253. ]
  3254. },
  3255. "require": {
  3256. "firebase/php-jwt": "~3.0|~4.0|~5.0",
  3257. "guzzlehttp/guzzle": "~6.0",
  3258. "illuminate/auth": "~5.4",
  3259. "illuminate/console": "~5.4",
  3260. "illuminate/container": "~5.4",
  3261. "illuminate/contracts": "~5.4",
  3262. "illuminate/database": "~5.4",
  3263. "illuminate/encryption": "~5.4",
  3264. "illuminate/http": "~5.4",
  3265. "illuminate/support": "~5.4",
  3266. "league/oauth2-server": "^6.0",
  3267. "php": ">=5.6.4",
  3268. "phpseclib/phpseclib": "^2.0",
  3269. "symfony/psr-http-message-bridge": "~1.0",
  3270. "zendframework/zend-diactoros": "~1.0"
  3271. },
  3272. "require-dev": {
  3273. "mockery/mockery": "~0.9",
  3274. "phpunit/phpunit": "~5.0"
  3275. },
  3276. "type": "library",
  3277. "extra": {
  3278. "branch-alias": {
  3279. "dev-master": "4.0-dev"
  3280. },
  3281. "laravel": {
  3282. "providers": [
  3283. "Laravel\\Passport\\PassportServiceProvider"
  3284. ]
  3285. }
  3286. },
  3287. "autoload": {
  3288. "psr-4": {
  3289. "Laravel\\Passport\\": "src/"
  3290. }
  3291. },
  3292. "notification-url": "https://packagist.org/downloads/",
  3293. "license": [
  3294. "MIT"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Taylor Otwell",
  3299. "email": "taylor@laravel.com"
  3300. }
  3301. ],
  3302. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  3303. "keywords": [
  3304. "laravel",
  3305. "oauth",
  3306. "passport"
  3307. ],
  3308. "time": "2017-09-24T14:21:39+00:00"
  3309. },
  3310. {
  3311. "name": "laravel/tinker",
  3312. "version": "v1.0.8",
  3313. "source": {
  3314. "type": "git",
  3315. "url": "https://github.com/laravel/tinker.git",
  3316. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  3317. },
  3318. "dist": {
  3319. "type": "zip",
  3320. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  3321. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  3322. "shasum": "",
  3323. "mirrors": [
  3324. {
  3325. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3326. "preferred": true
  3327. }
  3328. ]
  3329. },
  3330. "require": {
  3331. "illuminate/console": "~5.1",
  3332. "illuminate/contracts": "~5.1",
  3333. "illuminate/support": "~5.1",
  3334. "php": ">=5.5.9",
  3335. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  3336. "symfony/var-dumper": "~3.0|~4.0"
  3337. },
  3338. "require-dev": {
  3339. "phpunit/phpunit": "~4.0|~5.0"
  3340. },
  3341. "suggest": {
  3342. "illuminate/database": "The Illuminate Database package (~5.1)."
  3343. },
  3344. "type": "library",
  3345. "extra": {
  3346. "branch-alias": {
  3347. "dev-master": "1.0-dev"
  3348. },
  3349. "laravel": {
  3350. "providers": [
  3351. "Laravel\\Tinker\\TinkerServiceProvider"
  3352. ]
  3353. }
  3354. },
  3355. "autoload": {
  3356. "psr-4": {
  3357. "Laravel\\Tinker\\": "src/"
  3358. }
  3359. },
  3360. "notification-url": "https://packagist.org/downloads/",
  3361. "license": [
  3362. "MIT"
  3363. ],
  3364. "authors": [
  3365. {
  3366. "name": "Taylor Otwell",
  3367. "email": "taylor@laravel.com"
  3368. }
  3369. ],
  3370. "description": "Powerful REPL for the Laravel framework.",
  3371. "keywords": [
  3372. "REPL",
  3373. "Tinker",
  3374. "laravel",
  3375. "psysh"
  3376. ],
  3377. "time": "2018-10-12T19:39:35+00:00"
  3378. },
  3379. {
  3380. "name": "laravelcollective/html",
  3381. "version": "v5.5.4",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/LaravelCollective/html.git",
  3385. "reference": "04c596a69975b901f2223eb6eb4adf55354121c2"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/LaravelCollective/html/zipball/04c596a69975b901f2223eb6eb4adf55354121c2",
  3390. "reference": "04c596a69975b901f2223eb6eb4adf55354121c2",
  3391. "shasum": "",
  3392. "mirrors": [
  3393. {
  3394. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3395. "preferred": true
  3396. }
  3397. ]
  3398. },
  3399. "require": {
  3400. "illuminate/http": "5.5.*",
  3401. "illuminate/routing": "5.5.*",
  3402. "illuminate/session": "5.5.*",
  3403. "illuminate/support": "5.5.*",
  3404. "illuminate/view": "5.5.*",
  3405. "php": ">=7.0.0"
  3406. },
  3407. "require-dev": {
  3408. "illuminate/database": "5.5.*",
  3409. "mockery/mockery": "~0.9.4",
  3410. "phpunit/phpunit": "~5.4"
  3411. },
  3412. "type": "library",
  3413. "extra": {
  3414. "branch-alias": {
  3415. "dev-master": "5.5-dev"
  3416. },
  3417. "laravel": {
  3418. "providers": [
  3419. "Collective\\Html\\HtmlServiceProvider"
  3420. ],
  3421. "aliases": {
  3422. "Form": "Collective\\Html\\FormFacade",
  3423. "Html": "Collective\\Html\\HtmlFacade"
  3424. }
  3425. }
  3426. },
  3427. "autoload": {
  3428. "psr-4": {
  3429. "Collective\\Html\\": "src/"
  3430. },
  3431. "files": [
  3432. "src/helpers.php"
  3433. ]
  3434. },
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "MIT"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "Taylor Otwell",
  3442. "email": "taylorotwell@gmail.com"
  3443. },
  3444. {
  3445. "name": "Adam Engebretson",
  3446. "email": "adam@laravelcollective.com"
  3447. }
  3448. ],
  3449. "description": "HTML and Form Builders for the Laravel Framework",
  3450. "homepage": "https://laravelcollective.com",
  3451. "time": "2018-03-24T00:39:21+00:00"
  3452. },
  3453. {
  3454. "name": "lavary/laravel-menu",
  3455. "version": "v1.7.3",
  3456. "source": {
  3457. "type": "git",
  3458. "url": "https://github.com/lavary/laravel-menu.git",
  3459. "reference": "a301b61093aca4f7de67a966b6ddfd8cf2296695"
  3460. },
  3461. "dist": {
  3462. "type": "zip",
  3463. "url": "https://api.github.com/repos/lavary/laravel-menu/zipball/a301b61093aca4f7de67a966b6ddfd8cf2296695",
  3464. "reference": "a301b61093aca4f7de67a966b6ddfd8cf2296695",
  3465. "shasum": "",
  3466. "mirrors": [
  3467. {
  3468. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3469. "preferred": true
  3470. }
  3471. ]
  3472. },
  3473. "require": {
  3474. "illuminate/support": ">=5.0",
  3475. "illuminate/view": ">=5.0",
  3476. "php": ">=5.4.0"
  3477. },
  3478. "type": "library",
  3479. "extra": {
  3480. "laravel": {
  3481. "providers": [
  3482. "Lavary\\Menu\\ServiceProvider"
  3483. ],
  3484. "aliases": {
  3485. "Menu": "Lavary\\Menu\\Facade"
  3486. }
  3487. }
  3488. },
  3489. "autoload": {
  3490. "psr-0": {
  3491. "Lavary\\Menu\\": "src/"
  3492. }
  3493. },
  3494. "notification-url": "https://packagist.org/downloads/",
  3495. "license": [
  3496. "MIT"
  3497. ],
  3498. "authors": [
  3499. {
  3500. "name": "Lavary",
  3501. "email": "mrl.8081@gmail.com"
  3502. }
  3503. ],
  3504. "description": "A quick way to create menus in Laravel 5",
  3505. "homepage": "https://github.com/lavary/laravel-menu",
  3506. "keywords": [
  3507. "laravel"
  3508. ],
  3509. "time": "2018-12-07T17:24:41+00:00"
  3510. },
  3511. {
  3512. "name": "lcobucci/jwt",
  3513. "version": "3.2.5",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/lcobucci/jwt.git",
  3517. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b",
  3522. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b",
  3523. "shasum": "",
  3524. "mirrors": [
  3525. {
  3526. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3527. "preferred": true
  3528. }
  3529. ]
  3530. },
  3531. "require": {
  3532. "ext-openssl": "*",
  3533. "php": ">=5.5"
  3534. },
  3535. "require-dev": {
  3536. "mdanter/ecc": "~0.3.1",
  3537. "mikey179/vfsstream": "~1.5",
  3538. "phpmd/phpmd": "~2.2",
  3539. "phpunit/php-invoker": "~1.1",
  3540. "phpunit/phpunit": "~4.5",
  3541. "squizlabs/php_codesniffer": "~2.3"
  3542. },
  3543. "suggest": {
  3544. "mdanter/ecc": "Required to use Elliptic Curves based algorithms."
  3545. },
  3546. "type": "library",
  3547. "extra": {
  3548. "branch-alias": {
  3549. "dev-master": "3.1-dev"
  3550. }
  3551. },
  3552. "autoload": {
  3553. "psr-4": {
  3554. "Lcobucci\\JWT\\": "src"
  3555. }
  3556. },
  3557. "notification-url": "https://packagist.org/downloads/",
  3558. "license": [
  3559. "BSD-3-Clause"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "Luís Otávio Cobucci Oblonczyk",
  3564. "email": "lcobucci@gmail.com",
  3565. "role": "developer"
  3566. }
  3567. ],
  3568. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3569. "keywords": [
  3570. "JWS",
  3571. "jwt"
  3572. ],
  3573. "time": "2018-11-11T12:22:26+00:00"
  3574. },
  3575. {
  3576. "name": "league/event",
  3577. "version": "2.2.0",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://github.com/thephpleague/event.git",
  3581. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3586. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3587. "shasum": "",
  3588. "mirrors": [
  3589. {
  3590. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3591. "preferred": true
  3592. }
  3593. ]
  3594. },
  3595. "require": {
  3596. "php": ">=5.4.0"
  3597. },
  3598. "require-dev": {
  3599. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3600. "phpspec/phpspec": "^2.2"
  3601. },
  3602. "type": "library",
  3603. "extra": {
  3604. "branch-alias": {
  3605. "dev-master": "2.2-dev"
  3606. }
  3607. },
  3608. "autoload": {
  3609. "psr-4": {
  3610. "League\\Event\\": "src/"
  3611. }
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "authors": [
  3618. {
  3619. "name": "Frank de Jonge",
  3620. "email": "info@frenky.net"
  3621. }
  3622. ],
  3623. "description": "Event package",
  3624. "keywords": [
  3625. "emitter",
  3626. "event",
  3627. "listener"
  3628. ],
  3629. "time": "2018-11-26T11:52:41+00:00"
  3630. },
  3631. {
  3632. "name": "league/flysystem",
  3633. "version": "1.0.49",
  3634. "source": {
  3635. "type": "git",
  3636. "url": "https://github.com/thephpleague/flysystem.git",
  3637. "reference": "a63cc83d8a931b271be45148fa39ba7156782ffd"
  3638. },
  3639. "dist": {
  3640. "type": "zip",
  3641. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a63cc83d8a931b271be45148fa39ba7156782ffd",
  3642. "reference": "a63cc83d8a931b271be45148fa39ba7156782ffd",
  3643. "shasum": "",
  3644. "mirrors": [
  3645. {
  3646. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3647. "preferred": true
  3648. }
  3649. ]
  3650. },
  3651. "require": {
  3652. "ext-fileinfo": "*",
  3653. "php": ">=5.5.9"
  3654. },
  3655. "conflict": {
  3656. "league/flysystem-sftp": "<1.0.6"
  3657. },
  3658. "require-dev": {
  3659. "phpspec/phpspec": "^3.4",
  3660. "phpunit/phpunit": "^5.7.10"
  3661. },
  3662. "suggest": {
  3663. "ext-fileinfo": "Required for MimeType",
  3664. "ext-ftp": "Allows you to use FTP server storage",
  3665. "ext-openssl": "Allows you to use FTPS server storage",
  3666. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3667. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3668. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3669. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3670. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3671. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3672. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3673. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3674. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3675. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3676. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3677. },
  3678. "type": "library",
  3679. "extra": {
  3680. "branch-alias": {
  3681. "dev-master": "1.1-dev"
  3682. }
  3683. },
  3684. "autoload": {
  3685. "psr-4": {
  3686. "League\\Flysystem\\": "src/"
  3687. }
  3688. },
  3689. "notification-url": "https://packagist.org/downloads/",
  3690. "license": [
  3691. "MIT"
  3692. ],
  3693. "authors": [
  3694. {
  3695. "name": "Frank de Jonge",
  3696. "email": "info@frenky.net"
  3697. }
  3698. ],
  3699. "description": "Filesystem abstraction: Many filesystems, one API.",
  3700. "keywords": [
  3701. "Cloud Files",
  3702. "WebDAV",
  3703. "abstraction",
  3704. "aws",
  3705. "cloud",
  3706. "copy.com",
  3707. "dropbox",
  3708. "file systems",
  3709. "files",
  3710. "filesystem",
  3711. "filesystems",
  3712. "ftp",
  3713. "rackspace",
  3714. "remote",
  3715. "s3",
  3716. "sftp",
  3717. "storage"
  3718. ],
  3719. "time": "2018-11-23T23:41:29+00:00"
  3720. },
  3721. {
  3722. "name": "league/fractal",
  3723. "version": "0.17.0",
  3724. "source": {
  3725. "type": "git",
  3726. "url": "https://github.com/thephpleague/fractal.git",
  3727. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  3728. },
  3729. "dist": {
  3730. "type": "zip",
  3731. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3732. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3733. "shasum": "",
  3734. "mirrors": [
  3735. {
  3736. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3737. "preferred": true
  3738. }
  3739. ]
  3740. },
  3741. "require": {
  3742. "php": ">=5.4"
  3743. },
  3744. "require-dev": {
  3745. "doctrine/orm": "^2.5",
  3746. "illuminate/contracts": "~5.0",
  3747. "mockery/mockery": "~0.9",
  3748. "pagerfanta/pagerfanta": "~1.0.0",
  3749. "phpunit/phpunit": "~4.0",
  3750. "squizlabs/php_codesniffer": "~1.5",
  3751. "zendframework/zend-paginator": "~2.3"
  3752. },
  3753. "suggest": {
  3754. "illuminate/pagination": "The Illuminate Pagination component.",
  3755. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3756. "zendframework/zend-paginator": "Zend Framework Paginator"
  3757. },
  3758. "type": "library",
  3759. "extra": {
  3760. "branch-alias": {
  3761. "dev-master": "0.13-dev"
  3762. }
  3763. },
  3764. "autoload": {
  3765. "psr-4": {
  3766. "League\\Fractal\\": "src"
  3767. }
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "MIT"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "Phil Sturgeon",
  3776. "email": "me@philsturgeon.uk",
  3777. "homepage": "http://philsturgeon.uk/",
  3778. "role": "Developer"
  3779. }
  3780. ],
  3781. "description": "Handle the output of complex data structures ready for API output.",
  3782. "homepage": "http://fractal.thephpleague.com/",
  3783. "keywords": [
  3784. "api",
  3785. "json",
  3786. "league",
  3787. "rest"
  3788. ],
  3789. "time": "2017-06-12T11:04:56+00:00"
  3790. },
  3791. {
  3792. "name": "league/oauth2-server",
  3793. "version": "6.1.1",
  3794. "source": {
  3795. "type": "git",
  3796. "url": "https://github.com/thephpleague/oauth2-server.git",
  3797. "reference": "a0cabb573c7cd5ee01803daec992d6ee3677c4ae"
  3798. },
  3799. "dist": {
  3800. "type": "zip",
  3801. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/a0cabb573c7cd5ee01803daec992d6ee3677c4ae",
  3802. "reference": "a0cabb573c7cd5ee01803daec992d6ee3677c4ae",
  3803. "shasum": "",
  3804. "mirrors": [
  3805. {
  3806. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3807. "preferred": true
  3808. }
  3809. ]
  3810. },
  3811. "require": {
  3812. "defuse/php-encryption": "^2.1",
  3813. "ext-openssl": "*",
  3814. "lcobucci/jwt": "^3.1",
  3815. "league/event": "^2.1",
  3816. "paragonie/random_compat": "^2.0",
  3817. "php": ">=5.6.0",
  3818. "psr/http-message": "^1.0"
  3819. },
  3820. "replace": {
  3821. "league/oauth2server": "*",
  3822. "lncd/oauth2": "*"
  3823. },
  3824. "require-dev": {
  3825. "phpunit/phpunit": "^4.8.38 || ^5.7.21",
  3826. "zendframework/zend-diactoros": "^1.0"
  3827. },
  3828. "type": "library",
  3829. "autoload": {
  3830. "psr-4": {
  3831. "League\\OAuth2\\Server\\": "src/"
  3832. }
  3833. },
  3834. "notification-url": "https://packagist.org/downloads/",
  3835. "license": [
  3836. "MIT"
  3837. ],
  3838. "authors": [
  3839. {
  3840. "name": "Alex Bilbie",
  3841. "email": "hello@alexbilbie.com",
  3842. "homepage": "http://www.alexbilbie.com",
  3843. "role": "Developer"
  3844. }
  3845. ],
  3846. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  3847. "homepage": "https://oauth2.thephpleague.com/",
  3848. "keywords": [
  3849. "Authentication",
  3850. "api",
  3851. "auth",
  3852. "authorisation",
  3853. "authorization",
  3854. "oauth",
  3855. "oauth 2",
  3856. "oauth 2.0",
  3857. "oauth2",
  3858. "protect",
  3859. "resource",
  3860. "secure",
  3861. "server"
  3862. ],
  3863. "time": "2017-12-23T23:33:42+00:00"
  3864. },
  3865. {
  3866. "name": "maatwebsite/excel",
  3867. "version": "2.1.30",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  3871. "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
  3876. "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
  3877. "shasum": "",
  3878. "mirrors": [
  3879. {
  3880. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3881. "preferred": true
  3882. }
  3883. ]
  3884. },
  3885. "require": {
  3886. "illuminate/cache": "^5.0",
  3887. "illuminate/config": "^5.0",
  3888. "illuminate/filesystem": "^5.0",
  3889. "illuminate/support": "^5.0",
  3890. "jeremeamia/superclosure": "^2.3",
  3891. "nesbot/carbon": "~1.0",
  3892. "php": ">=5.5",
  3893. "phpoffice/phpexcel": "^1.8.1",
  3894. "tijsverkoyen/css-to-inline-styles": "~2.0"
  3895. },
  3896. "require-dev": {
  3897. "mockery/mockery": "~1.0",
  3898. "orchestra/testbench": "3.1.*|3.2.*|3.3.*|3.4.*|3.5.*|3.6.*",
  3899. "phpseclib/phpseclib": "~1.0",
  3900. "phpunit/phpunit": "~4.0"
  3901. },
  3902. "suggest": {
  3903. "illuminate/http": "^5.0",
  3904. "illuminate/queue": "^5.0",
  3905. "illuminate/routing": "^5.0",
  3906. "illuminate/view": "^5.0"
  3907. },
  3908. "type": "library",
  3909. "extra": {
  3910. "laravel": {
  3911. "providers": [
  3912. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3913. ],
  3914. "aliases": {
  3915. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3916. }
  3917. }
  3918. },
  3919. "autoload": {
  3920. "classmap": [
  3921. "src/Maatwebsite/Excel"
  3922. ],
  3923. "psr-0": {
  3924. "Maatwebsite\\Excel\\": "src/"
  3925. }
  3926. },
  3927. "notification-url": "https://packagist.org/downloads/",
  3928. "license": [
  3929. "MIT"
  3930. ],
  3931. "authors": [
  3932. {
  3933. "name": "Maatwebsite.nl",
  3934. "email": "patrick@maatwebsite.nl"
  3935. }
  3936. ],
  3937. "description": "Supercharged Excel exports in Laravel",
  3938. "keywords": [
  3939. "PHPExcel",
  3940. "batch",
  3941. "csv",
  3942. "excel",
  3943. "export",
  3944. "import",
  3945. "laravel"
  3946. ],
  3947. "time": "2018-09-04T19:00:09+00:00"
  3948. },
  3949. {
  3950. "name": "marktopper/doctrine-dbal-timestamp-type",
  3951. "version": "v1.0.2",
  3952. "source": {
  3953. "type": "git",
  3954. "url": "https://github.com/marktopper/doctrine-dbal-timestamp-type.git",
  3955. "reference": "e028dda876204e271d0fc921f013544d58770638"
  3956. },
  3957. "dist": {
  3958. "type": "zip",
  3959. "url": "https://api.github.com/repos/marktopper/doctrine-dbal-timestamp-type/zipball/e028dda876204e271d0fc921f013544d58770638",
  3960. "reference": "e028dda876204e271d0fc921f013544d58770638",
  3961. "shasum": "",
  3962. "mirrors": [
  3963. {
  3964. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3965. "preferred": true
  3966. }
  3967. ]
  3968. },
  3969. "require": {
  3970. "doctrine/dbal": "^2.5",
  3971. "php": ">=5.6.4"
  3972. },
  3973. "type": "package",
  3974. "autoload": {
  3975. "psr-4": {
  3976. "MarkTopper\\DoctrineDBALTimestampType\\": "src/"
  3977. }
  3978. },
  3979. "notification-url": "https://packagist.org/downloads/",
  3980. "license": [
  3981. "MIT"
  3982. ],
  3983. "description": "Add the timestamp type for Doctrine/DBAL",
  3984. "keywords": [
  3985. "database",
  3986. "dbal",
  3987. "doctrine",
  3988. "laravel",
  3989. "mysql",
  3990. "timestamp"
  3991. ],
  3992. "time": "2018-11-11T09:54:26+00:00"
  3993. },
  3994. {
  3995. "name": "milon/barcode",
  3996. "version": "5.3.6",
  3997. "source": {
  3998. "type": "git",
  3999. "url": "https://github.com/milon/barcode.git",
  4000. "reference": "ca2f3efbf46142ff7f7afe3b0f3660ea4a067576"
  4001. },
  4002. "dist": {
  4003. "type": "zip",
  4004. "url": "https://api.github.com/repos/milon/barcode/zipball/ca2f3efbf46142ff7f7afe3b0f3660ea4a067576",
  4005. "reference": "ca2f3efbf46142ff7f7afe3b0f3660ea4a067576",
  4006. "shasum": "",
  4007. "mirrors": [
  4008. {
  4009. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4010. "preferred": true
  4011. }
  4012. ]
  4013. },
  4014. "require": {
  4015. "illuminate/support": "5.*",
  4016. "php": ">=5.6.0"
  4017. },
  4018. "type": "library",
  4019. "autoload": {
  4020. "psr-0": {
  4021. "Milon\\Barcode": "src/"
  4022. }
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "LGPL-3.0"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Nuruzzaman Milon",
  4031. "email": "contact@milon.im"
  4032. }
  4033. ],
  4034. "description": "Barcode generator like Qr Code , PDF417,C39, C39+,C39E,C39E+,C93,S25,S25+,I25,I25+,C128,C128A,C128B,C128C,2-Digits UPC-Based Extention,5-Digits UPC-Based Extention,EAN 8,EAN 13,UPC-A,UPC-E,MSI (Variation of Plessey code) ",
  4035. "keywords": [
  4036. "CODABAR",
  4037. "CODE 128",
  4038. "CODE 39",
  4039. "barcode",
  4040. "datamatrix",
  4041. "ean",
  4042. "laravel",
  4043. "pdf417",
  4044. "qr code",
  4045. "qrcode"
  4046. ],
  4047. "time": "2017-07-28T00:33:38+00:00"
  4048. },
  4049. {
  4050. "name": "mobiledetect/mobiledetectlib",
  4051. "version": "2.8.33",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4055. "reference": "cd385290f9a0d609d2eddd165a1e44ec1bf12102"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/cd385290f9a0d609d2eddd165a1e44ec1bf12102",
  4060. "reference": "cd385290f9a0d609d2eddd165a1e44ec1bf12102",
  4061. "shasum": "",
  4062. "mirrors": [
  4063. {
  4064. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4065. "preferred": true
  4066. }
  4067. ]
  4068. },
  4069. "require": {
  4070. "php": ">=5.0.0"
  4071. },
  4072. "require-dev": {
  4073. "phpunit/phpunit": "~4.8.35||~5.7"
  4074. },
  4075. "type": "library",
  4076. "autoload": {
  4077. "classmap": [
  4078. "Mobile_Detect.php"
  4079. ],
  4080. "psr-0": {
  4081. "Detection": "namespaced/"
  4082. }
  4083. },
  4084. "notification-url": "https://packagist.org/downloads/",
  4085. "license": [
  4086. "MIT"
  4087. ],
  4088. "authors": [
  4089. {
  4090. "name": "Serban Ghita",
  4091. "email": "serbanghita@gmail.com",
  4092. "homepage": "http://mobiledetect.net",
  4093. "role": "Developer"
  4094. }
  4095. ],
  4096. "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.",
  4097. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4098. "keywords": [
  4099. "detect mobile devices",
  4100. "mobile",
  4101. "mobile detect",
  4102. "mobile detector",
  4103. "php mobile detect"
  4104. ],
  4105. "time": "2018-09-01T15:05:15+00:00"
  4106. },
  4107. {
  4108. "name": "monolog/monolog",
  4109. "version": "1.24.0",
  4110. "source": {
  4111. "type": "git",
  4112. "url": "https://github.com/Seldaek/monolog.git",
  4113. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  4114. },
  4115. "dist": {
  4116. "type": "zip",
  4117. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  4118. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  4119. "shasum": "",
  4120. "mirrors": [
  4121. {
  4122. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4123. "preferred": true
  4124. }
  4125. ]
  4126. },
  4127. "require": {
  4128. "php": ">=5.3.0",
  4129. "psr/log": "~1.0"
  4130. },
  4131. "provide": {
  4132. "psr/log-implementation": "1.0.0"
  4133. },
  4134. "require-dev": {
  4135. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4136. "doctrine/couchdb": "~1.0@dev",
  4137. "graylog2/gelf-php": "~1.0",
  4138. "jakub-onderka/php-parallel-lint": "0.9",
  4139. "php-amqplib/php-amqplib": "~2.4",
  4140. "php-console/php-console": "^3.1.3",
  4141. "phpunit/phpunit": "~4.5",
  4142. "phpunit/phpunit-mock-objects": "2.3.0",
  4143. "ruflin/elastica": ">=0.90 <3.0",
  4144. "sentry/sentry": "^0.13",
  4145. "swiftmailer/swiftmailer": "^5.3|^6.0"
  4146. },
  4147. "suggest": {
  4148. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4149. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4150. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4151. "ext-mongo": "Allow sending log messages to a MongoDB server",
  4152. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4153. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  4154. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4155. "php-console/php-console": "Allow sending log messages to Google Chrome",
  4156. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4157. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  4158. "sentry/sentry": "Allow sending log messages to a Sentry server"
  4159. },
  4160. "type": "library",
  4161. "extra": {
  4162. "branch-alias": {
  4163. "dev-master": "2.0.x-dev"
  4164. }
  4165. },
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Monolog\\": "src/Monolog"
  4169. }
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Jordi Boggiano",
  4178. "email": "j.boggiano@seld.be",
  4179. "homepage": "http://seld.be"
  4180. }
  4181. ],
  4182. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4183. "homepage": "http://github.com/Seldaek/monolog",
  4184. "keywords": [
  4185. "log",
  4186. "logging",
  4187. "psr-3"
  4188. ],
  4189. "time": "2018-11-05T09:00:11+00:00"
  4190. },
  4191. {
  4192. "name": "mtdowling/cron-expression",
  4193. "version": "v1.2.1",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://github.com/mtdowling/cron-expression.git",
  4197. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  4202. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  4203. "shasum": "",
  4204. "mirrors": [
  4205. {
  4206. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4207. "preferred": true
  4208. }
  4209. ]
  4210. },
  4211. "require": {
  4212. "php": ">=5.3.2"
  4213. },
  4214. "require-dev": {
  4215. "phpunit/phpunit": "~4.0|~5.0"
  4216. },
  4217. "type": "library",
  4218. "autoload": {
  4219. "psr-4": {
  4220. "Cron\\": "src/Cron/"
  4221. }
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "MIT"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Michael Dowling",
  4230. "email": "mtdowling@gmail.com",
  4231. "homepage": "https://github.com/mtdowling"
  4232. }
  4233. ],
  4234. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  4235. "keywords": [
  4236. "cron",
  4237. "schedule"
  4238. ],
  4239. "time": "2017-01-23T04:29:33+00:00"
  4240. },
  4241. {
  4242. "name": "nesbot/carbon",
  4243. "version": "1.36.2",
  4244. "source": {
  4245. "type": "git",
  4246. "url": "https://github.com/briannesbitt/Carbon.git",
  4247. "reference": "cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9"
  4248. },
  4249. "dist": {
  4250. "type": "zip",
  4251. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9",
  4252. "reference": "cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9",
  4253. "shasum": "",
  4254. "mirrors": [
  4255. {
  4256. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4257. "preferred": true
  4258. }
  4259. ]
  4260. },
  4261. "require": {
  4262. "php": ">=5.3.9",
  4263. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  4264. },
  4265. "require-dev": {
  4266. "phpunit/phpunit": "^4.8.35 || ^5.7"
  4267. },
  4268. "suggest": {
  4269. "friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style.",
  4270. "phpstan/phpstan": "Needed for the `composer phpstan` command. Allow to detect potential errors."
  4271. },
  4272. "type": "library",
  4273. "extra": {
  4274. "laravel": {
  4275. "providers": [
  4276. "Carbon\\Laravel\\ServiceProvider"
  4277. ]
  4278. }
  4279. },
  4280. "autoload": {
  4281. "psr-4": {
  4282. "": "src/"
  4283. }
  4284. },
  4285. "notification-url": "https://packagist.org/downloads/",
  4286. "license": [
  4287. "MIT"
  4288. ],
  4289. "authors": [
  4290. {
  4291. "name": "Brian Nesbitt",
  4292. "email": "brian@nesbot.com",
  4293. "homepage": "http://nesbot.com"
  4294. }
  4295. ],
  4296. "description": "A simple API extension for DateTime.",
  4297. "homepage": "http://carbon.nesbot.com",
  4298. "keywords": [
  4299. "date",
  4300. "datetime",
  4301. "time"
  4302. ],
  4303. "time": "2018-12-28T10:07:33+00:00"
  4304. },
  4305. {
  4306. "name": "nikic/php-parser",
  4307. "version": "v4.1.1",
  4308. "source": {
  4309. "type": "git",
  4310. "url": "https://github.com/nikic/PHP-Parser.git",
  4311. "reference": "8aae5b59b83bb4d0dbf07b0a835f2680a658f610"
  4312. },
  4313. "dist": {
  4314. "type": "zip",
  4315. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8aae5b59b83bb4d0dbf07b0a835f2680a658f610",
  4316. "reference": "8aae5b59b83bb4d0dbf07b0a835f2680a658f610",
  4317. "shasum": "",
  4318. "mirrors": [
  4319. {
  4320. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4321. "preferred": true
  4322. }
  4323. ]
  4324. },
  4325. "require": {
  4326. "ext-tokenizer": "*",
  4327. "php": ">=7.0"
  4328. },
  4329. "require-dev": {
  4330. "phpunit/phpunit": "^6.5 || ^7.0"
  4331. },
  4332. "bin": [
  4333. "bin/php-parse"
  4334. ],
  4335. "type": "library",
  4336. "extra": {
  4337. "branch-alias": {
  4338. "dev-master": "4.1-dev"
  4339. }
  4340. },
  4341. "autoload": {
  4342. "psr-4": {
  4343. "PhpParser\\": "lib/PhpParser"
  4344. }
  4345. },
  4346. "notification-url": "https://packagist.org/downloads/",
  4347. "license": [
  4348. "BSD-3-Clause"
  4349. ],
  4350. "authors": [
  4351. {
  4352. "name": "Nikita Popov"
  4353. }
  4354. ],
  4355. "description": "A PHP parser written in PHP",
  4356. "keywords": [
  4357. "parser",
  4358. "php"
  4359. ],
  4360. "time": "2018-12-26T11:32:39+00:00"
  4361. },
  4362. {
  4363. "name": "overtrue/easy-sms",
  4364. "version": "1.1.7",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/overtrue/easy-sms.git",
  4368. "reference": "bfeb22617bfa5508daa42b24dfca492a75721319"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/bfeb22617bfa5508daa42b24dfca492a75721319",
  4373. "reference": "bfeb22617bfa5508daa42b24dfca492a75721319",
  4374. "shasum": "",
  4375. "mirrors": [
  4376. {
  4377. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4378. "preferred": true
  4379. }
  4380. ]
  4381. },
  4382. "require": {
  4383. "guzzlehttp/guzzle": "^6.2",
  4384. "php": ">=5.6"
  4385. },
  4386. "require-dev": {
  4387. "mockery/mockery": "1.0.x-dev",
  4388. "phpunit/phpunit": "^5.6"
  4389. },
  4390. "type": "library",
  4391. "autoload": {
  4392. "psr-4": {
  4393. "Overtrue\\EasySms\\": "src"
  4394. }
  4395. },
  4396. "notification-url": "https://packagist.org/downloads/",
  4397. "license": [
  4398. "MIT"
  4399. ],
  4400. "authors": [
  4401. {
  4402. "name": "overtrue",
  4403. "email": "i@overtrue.me"
  4404. }
  4405. ],
  4406. "description": "The easiest way to send short message.",
  4407. "time": "2018-12-04T12:49:55+00:00"
  4408. },
  4409. {
  4410. "name": "overtrue/laravel-uploader",
  4411. "version": "0.0.8",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/overtrue/laravel-uploader.git",
  4415. "reference": "a47f0573f523372db985f00827fe7e86cb64b6dd"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/overtrue/laravel-uploader/zipball/a47f0573f523372db985f00827fe7e86cb64b6dd",
  4420. "reference": "a47f0573f523372db985f00827fe7e86cb64b6dd",
  4421. "shasum": "",
  4422. "mirrors": [
  4423. {
  4424. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4425. "preferred": true
  4426. }
  4427. ]
  4428. },
  4429. "require": {
  4430. "php": ">=5.5.9"
  4431. },
  4432. "type": "library",
  4433. "extra": {
  4434. "laravel": {
  4435. "providers": [
  4436. "\\Overtrue\\LaravelUploader\\UploadServiceProvider"
  4437. ],
  4438. "aliases": {
  4439. "LaravelUploader": "\\Overtrue\\LaravelUploader\\LaravelUploader"
  4440. }
  4441. }
  4442. },
  4443. "autoload": {
  4444. "psr-4": {
  4445. "Overtrue\\LaravelUploader\\": "src/LaravelUploader"
  4446. },
  4447. "files": [
  4448. "src/LaravelUploader/helpers.php"
  4449. ]
  4450. },
  4451. "notification-url": "https://packagist.org/downloads/",
  4452. "license": [
  4453. "MIT"
  4454. ],
  4455. "authors": [
  4456. {
  4457. "name": "overtrue",
  4458. "email": "i@overtrue.me"
  4459. }
  4460. ],
  4461. "time": "2018-04-13T01:26:50+00:00"
  4462. },
  4463. {
  4464. "name": "overtrue/laravel-wechat",
  4465. "version": "4.0.22",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/overtrue/laravel-wechat.git",
  4469. "reference": "1d985af7c2d3b27ae5046dbdd3678172fd028490"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1d985af7c2d3b27ae5046dbdd3678172fd028490",
  4474. "reference": "1d985af7c2d3b27ae5046dbdd3678172fd028490",
  4475. "shasum": "",
  4476. "mirrors": [
  4477. {
  4478. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4479. "preferred": true
  4480. }
  4481. ]
  4482. },
  4483. "require": {
  4484. "illuminate/container": "^5.1",
  4485. "overtrue/wechat": "^4.0"
  4486. },
  4487. "type": "library",
  4488. "extra": {
  4489. "laravel": {
  4490. "providers": [
  4491. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4492. ],
  4493. "aliases": {
  4494. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4495. }
  4496. }
  4497. },
  4498. "autoload": {
  4499. "psr-4": {
  4500. "Overtrue\\LaravelWeChat\\": "src/"
  4501. }
  4502. },
  4503. "notification-url": "https://packagist.org/downloads/",
  4504. "license": [
  4505. "MIT"
  4506. ],
  4507. "authors": [
  4508. {
  4509. "name": "overtrue",
  4510. "email": "anzhengchao@gmail.com"
  4511. }
  4512. ],
  4513. "description": "微信 SDK for Laravel",
  4514. "keywords": [
  4515. "laravel",
  4516. "sdk",
  4517. "wechat",
  4518. "weixin"
  4519. ],
  4520. "time": "2018-05-23T14:03:58+00:00"
  4521. },
  4522. {
  4523. "name": "overtrue/socialite",
  4524. "version": "2.0.3",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://github.com/overtrue/socialite.git",
  4528. "reference": "20bc0ac598aa41365c209bbe4cb5c0cf314d46b3"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://api.github.com/repos/overtrue/socialite/zipball/20bc0ac598aa41365c209bbe4cb5c0cf314d46b3",
  4533. "reference": "20bc0ac598aa41365c209bbe4cb5c0cf314d46b3",
  4534. "shasum": "",
  4535. "mirrors": [
  4536. {
  4537. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4538. "preferred": true
  4539. }
  4540. ]
  4541. },
  4542. "require": {
  4543. "guzzlehttp/guzzle": "~5.0|~6.0",
  4544. "php": ">=7.0",
  4545. "symfony/http-foundation": "^2.7|^3.0|^4.0"
  4546. },
  4547. "require-dev": {
  4548. "mockery/mockery": "~0.9",
  4549. "phpunit/phpunit": "~4.0"
  4550. },
  4551. "type": "library",
  4552. "autoload": {
  4553. "psr-4": {
  4554. "Overtrue\\Socialite\\": "src/"
  4555. }
  4556. },
  4557. "notification-url": "https://packagist.org/downloads/",
  4558. "license": [
  4559. "MIT"
  4560. ],
  4561. "authors": [
  4562. {
  4563. "name": "overtrue",
  4564. "email": "anzhengchao@gmail.com"
  4565. }
  4566. ],
  4567. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  4568. "keywords": [
  4569. "login",
  4570. "oauth",
  4571. "qq",
  4572. "social",
  4573. "wechat",
  4574. "weibo"
  4575. ],
  4576. "time": "2018-03-28T02:22:49+00:00"
  4577. },
  4578. {
  4579. "name": "overtrue/wechat",
  4580. "version": "4.1.15",
  4581. "source": {
  4582. "type": "git",
  4583. "url": "https://github.com/overtrue/wechat.git",
  4584. "reference": "438057687bfd47d75413c7df32a698c72be751c1"
  4585. },
  4586. "dist": {
  4587. "type": "zip",
  4588. "url": "https://api.github.com/repos/overtrue/wechat/zipball/438057687bfd47d75413c7df32a698c72be751c1",
  4589. "reference": "438057687bfd47d75413c7df32a698c72be751c1",
  4590. "shasum": "",
  4591. "mirrors": [
  4592. {
  4593. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4594. "preferred": true
  4595. }
  4596. ]
  4597. },
  4598. "require": {
  4599. "easywechat-composer/easywechat-composer": "^1.1",
  4600. "ext-fileinfo": "*",
  4601. "ext-openssl": "*",
  4602. "ext-simplexml": "*",
  4603. "guzzlehttp/guzzle": "^6.2",
  4604. "monolog/monolog": "^1.22",
  4605. "overtrue/socialite": "~2.0",
  4606. "php": ">=7.0",
  4607. "pimple/pimple": "^3.0",
  4608. "symfony/cache": "^3.3 || ^4.0",
  4609. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0",
  4610. "symfony/psr-http-message-bridge": "^0.3 || ^1.0"
  4611. },
  4612. "require-dev": {
  4613. "mikey179/vfsstream": "^1.6",
  4614. "mockery/mockery": "^1.0",
  4615. "overtrue/phplint": "dev-master",
  4616. "phpunit/phpunit": "~6.0"
  4617. },
  4618. "type": "library",
  4619. "autoload": {
  4620. "psr-4": {
  4621. "EasyWeChat\\": "src/"
  4622. },
  4623. "files": [
  4624. "src/Kernel/Support/Helpers.php",
  4625. "src/Kernel/Helpers.php"
  4626. ]
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "MIT"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "overtrue",
  4635. "email": "anzhengchao@gmail.com"
  4636. }
  4637. ],
  4638. "description": "微信SDK",
  4639. "keywords": [
  4640. "sdk",
  4641. "wechat",
  4642. "weixin",
  4643. "weixin-sdk"
  4644. ],
  4645. "time": "2018-11-28T08:07:26+00:00"
  4646. },
  4647. {
  4648. "name": "paragonie/random_compat",
  4649. "version": "v2.0.17",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://github.com/paragonie/random_compat.git",
  4653. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  4658. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  4659. "shasum": "",
  4660. "mirrors": [
  4661. {
  4662. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4663. "preferred": true
  4664. }
  4665. ]
  4666. },
  4667. "require": {
  4668. "php": ">=5.2.0"
  4669. },
  4670. "require-dev": {
  4671. "phpunit/phpunit": "4.*|5.*"
  4672. },
  4673. "suggest": {
  4674. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4675. },
  4676. "type": "library",
  4677. "autoload": {
  4678. "files": [
  4679. "lib/random.php"
  4680. ]
  4681. },
  4682. "notification-url": "https://packagist.org/downloads/",
  4683. "license": [
  4684. "MIT"
  4685. ],
  4686. "authors": [
  4687. {
  4688. "name": "Paragon Initiative Enterprises",
  4689. "email": "security@paragonie.com",
  4690. "homepage": "https://paragonie.com"
  4691. }
  4692. ],
  4693. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4694. "keywords": [
  4695. "csprng",
  4696. "polyfill",
  4697. "pseudorandom",
  4698. "random"
  4699. ],
  4700. "time": "2018-07-04T16:31:37+00:00"
  4701. },
  4702. {
  4703. "name": "phpdocumentor/reflection-common",
  4704. "version": "1.0.1",
  4705. "source": {
  4706. "type": "git",
  4707. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4708. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  4709. },
  4710. "dist": {
  4711. "type": "zip",
  4712. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  4713. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  4714. "shasum": "",
  4715. "mirrors": [
  4716. {
  4717. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4718. "preferred": true
  4719. }
  4720. ]
  4721. },
  4722. "require": {
  4723. "php": ">=5.5"
  4724. },
  4725. "require-dev": {
  4726. "phpunit/phpunit": "^4.6"
  4727. },
  4728. "type": "library",
  4729. "extra": {
  4730. "branch-alias": {
  4731. "dev-master": "1.0.x-dev"
  4732. }
  4733. },
  4734. "autoload": {
  4735. "psr-4": {
  4736. "phpDocumentor\\Reflection\\": [
  4737. "src"
  4738. ]
  4739. }
  4740. },
  4741. "notification-url": "https://packagist.org/downloads/",
  4742. "license": [
  4743. "MIT"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "Jaap van Otterdijk",
  4748. "email": "opensource@ijaap.nl"
  4749. }
  4750. ],
  4751. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4752. "homepage": "http://www.phpdoc.org",
  4753. "keywords": [
  4754. "FQSEN",
  4755. "phpDocumentor",
  4756. "phpdoc",
  4757. "reflection",
  4758. "static analysis"
  4759. ],
  4760. "time": "2017-09-11T18:02:19+00:00"
  4761. },
  4762. {
  4763. "name": "phpdocumentor/reflection-docblock",
  4764. "version": "3.3.2",
  4765. "source": {
  4766. "type": "git",
  4767. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4768. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
  4769. },
  4770. "dist": {
  4771. "type": "zip",
  4772. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
  4773. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
  4774. "shasum": "",
  4775. "mirrors": [
  4776. {
  4777. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4778. "preferred": true
  4779. }
  4780. ]
  4781. },
  4782. "require": {
  4783. "php": "^5.6 || ^7.0",
  4784. "phpdocumentor/reflection-common": "^1.0.0",
  4785. "phpdocumentor/type-resolver": "^0.4.0",
  4786. "webmozart/assert": "^1.0"
  4787. },
  4788. "require-dev": {
  4789. "mockery/mockery": "^0.9.4",
  4790. "phpunit/phpunit": "^4.4"
  4791. },
  4792. "type": "library",
  4793. "autoload": {
  4794. "psr-4": {
  4795. "phpDocumentor\\Reflection\\": [
  4796. "src/"
  4797. ]
  4798. }
  4799. },
  4800. "notification-url": "https://packagist.org/downloads/",
  4801. "license": [
  4802. "MIT"
  4803. ],
  4804. "authors": [
  4805. {
  4806. "name": "Mike van Riel",
  4807. "email": "me@mikevanriel.com"
  4808. }
  4809. ],
  4810. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4811. "time": "2017-11-10T14:09:06+00:00"
  4812. },
  4813. {
  4814. "name": "phpdocumentor/type-resolver",
  4815. "version": "0.4.0",
  4816. "source": {
  4817. "type": "git",
  4818. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4819. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  4820. },
  4821. "dist": {
  4822. "type": "zip",
  4823. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  4824. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  4825. "shasum": "",
  4826. "mirrors": [
  4827. {
  4828. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4829. "preferred": true
  4830. }
  4831. ]
  4832. },
  4833. "require": {
  4834. "php": "^5.5 || ^7.0",
  4835. "phpdocumentor/reflection-common": "^1.0"
  4836. },
  4837. "require-dev": {
  4838. "mockery/mockery": "^0.9.4",
  4839. "phpunit/phpunit": "^5.2||^4.8.24"
  4840. },
  4841. "type": "library",
  4842. "extra": {
  4843. "branch-alias": {
  4844. "dev-master": "1.0.x-dev"
  4845. }
  4846. },
  4847. "autoload": {
  4848. "psr-4": {
  4849. "phpDocumentor\\Reflection\\": [
  4850. "src/"
  4851. ]
  4852. }
  4853. },
  4854. "notification-url": "https://packagist.org/downloads/",
  4855. "license": [
  4856. "MIT"
  4857. ],
  4858. "authors": [
  4859. {
  4860. "name": "Mike van Riel",
  4861. "email": "me@mikevanriel.com"
  4862. }
  4863. ],
  4864. "time": "2017-07-14T14:27:02+00:00"
  4865. },
  4866. {
  4867. "name": "phpoffice/phpexcel",
  4868. "version": "1.8.2",
  4869. "source": {
  4870. "type": "git",
  4871. "url": "https://github.com/PHPOffice/PHPExcel.git",
  4872. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  4873. },
  4874. "dist": {
  4875. "type": "zip",
  4876. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  4877. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  4878. "shasum": "",
  4879. "mirrors": [
  4880. {
  4881. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4882. "preferred": true
  4883. }
  4884. ]
  4885. },
  4886. "require": {
  4887. "ext-mbstring": "*",
  4888. "ext-xml": "*",
  4889. "ext-xmlwriter": "*",
  4890. "php": "^5.2|^7.0"
  4891. },
  4892. "require-dev": {
  4893. "squizlabs/php_codesniffer": "2.*"
  4894. },
  4895. "type": "library",
  4896. "autoload": {
  4897. "psr-0": {
  4898. "PHPExcel": "Classes/"
  4899. }
  4900. },
  4901. "notification-url": "https://packagist.org/downloads/",
  4902. "license": [
  4903. "LGPL-2.1"
  4904. ],
  4905. "authors": [
  4906. {
  4907. "name": "Maarten Balliauw",
  4908. "homepage": "http://blog.maartenballiauw.be"
  4909. },
  4910. {
  4911. "name": "Erik Tilt"
  4912. },
  4913. {
  4914. "name": "Franck Lefevre",
  4915. "homepage": "http://rootslabs.net"
  4916. },
  4917. {
  4918. "name": "Mark Baker",
  4919. "homepage": "http://markbakeruk.net"
  4920. }
  4921. ],
  4922. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4923. "homepage": "https://github.com/PHPOffice/PHPExcel",
  4924. "keywords": [
  4925. "OpenXML",
  4926. "excel",
  4927. "php",
  4928. "spreadsheet",
  4929. "xls",
  4930. "xlsx"
  4931. ],
  4932. "abandoned": "phpoffice/phpspreadsheet",
  4933. "time": "2018-11-22T23:07:24+00:00"
  4934. },
  4935. {
  4936. "name": "phpseclib/phpseclib",
  4937. "version": "2.0.13",
  4938. "source": {
  4939. "type": "git",
  4940. "url": "https://github.com/phpseclib/phpseclib.git",
  4941. "reference": "42603ce3f42a27f7e14e54feab95db7b680ad473"
  4942. },
  4943. "dist": {
  4944. "type": "zip",
  4945. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/42603ce3f42a27f7e14e54feab95db7b680ad473",
  4946. "reference": "42603ce3f42a27f7e14e54feab95db7b680ad473",
  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.3.3"
  4957. },
  4958. "require-dev": {
  4959. "phing/phing": "~2.7",
  4960. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  4961. "sami/sami": "~2.0",
  4962. "squizlabs/php_codesniffer": "~2.0"
  4963. },
  4964. "suggest": {
  4965. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  4966. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  4967. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  4968. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  4969. },
  4970. "type": "library",
  4971. "autoload": {
  4972. "files": [
  4973. "phpseclib/bootstrap.php"
  4974. ],
  4975. "psr-4": {
  4976. "phpseclib\\": "phpseclib/"
  4977. }
  4978. },
  4979. "notification-url": "https://packagist.org/downloads/",
  4980. "license": [
  4981. "MIT"
  4982. ],
  4983. "authors": [
  4984. {
  4985. "name": "Jim Wigginton",
  4986. "email": "terrafrost@php.net",
  4987. "role": "Lead Developer"
  4988. },
  4989. {
  4990. "name": "Patrick Monnerat",
  4991. "email": "pm@datasphere.ch",
  4992. "role": "Developer"
  4993. },
  4994. {
  4995. "name": "Andreas Fischer",
  4996. "email": "bantu@phpbb.com",
  4997. "role": "Developer"
  4998. },
  4999. {
  5000. "name": "Hans-Jürgen Petrich",
  5001. "email": "petrich@tronic-media.com",
  5002. "role": "Developer"
  5003. },
  5004. {
  5005. "name": "Graham Campbell",
  5006. "email": "graham@alt-three.com",
  5007. "role": "Developer"
  5008. }
  5009. ],
  5010. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5011. "homepage": "http://phpseclib.sourceforge.net",
  5012. "keywords": [
  5013. "BigInteger",
  5014. "aes",
  5015. "asn.1",
  5016. "asn1",
  5017. "blowfish",
  5018. "crypto",
  5019. "cryptography",
  5020. "encryption",
  5021. "rsa",
  5022. "security",
  5023. "sftp",
  5024. "signature",
  5025. "signing",
  5026. "ssh",
  5027. "twofish",
  5028. "x.509",
  5029. "x509"
  5030. ],
  5031. "time": "2018-12-16T17:45:25+00:00"
  5032. },
  5033. {
  5034. "name": "pimple/pimple",
  5035. "version": "v3.2.3",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://github.com/silexphp/Pimple.git",
  5039. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  5044. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  5045. "shasum": "",
  5046. "mirrors": [
  5047. {
  5048. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5049. "preferred": true
  5050. }
  5051. ]
  5052. },
  5053. "require": {
  5054. "php": ">=5.3.0",
  5055. "psr/container": "^1.0"
  5056. },
  5057. "require-dev": {
  5058. "symfony/phpunit-bridge": "^3.2"
  5059. },
  5060. "type": "library",
  5061. "extra": {
  5062. "branch-alias": {
  5063. "dev-master": "3.2.x-dev"
  5064. }
  5065. },
  5066. "autoload": {
  5067. "psr-0": {
  5068. "Pimple": "src/"
  5069. }
  5070. },
  5071. "notification-url": "https://packagist.org/downloads/",
  5072. "license": [
  5073. "MIT"
  5074. ],
  5075. "authors": [
  5076. {
  5077. "name": "Fabien Potencier",
  5078. "email": "fabien@symfony.com"
  5079. }
  5080. ],
  5081. "description": "Pimple, a simple Dependency Injection Container",
  5082. "homepage": "http://pimple.sensiolabs.org",
  5083. "keywords": [
  5084. "container",
  5085. "dependency injection"
  5086. ],
  5087. "time": "2018-01-21T07:42:36+00:00"
  5088. },
  5089. {
  5090. "name": "predis/predis",
  5091. "version": "v1.1.1",
  5092. "source": {
  5093. "type": "git",
  5094. "url": "https://github.com/nrk/predis.git",
  5095. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  5096. },
  5097. "dist": {
  5098. "type": "zip",
  5099. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  5100. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  5101. "shasum": "",
  5102. "mirrors": [
  5103. {
  5104. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5105. "preferred": true
  5106. }
  5107. ]
  5108. },
  5109. "require": {
  5110. "php": ">=5.3.9"
  5111. },
  5112. "require-dev": {
  5113. "phpunit/phpunit": "~4.8"
  5114. },
  5115. "suggest": {
  5116. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  5117. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  5118. },
  5119. "type": "library",
  5120. "autoload": {
  5121. "psr-4": {
  5122. "Predis\\": "src/"
  5123. }
  5124. },
  5125. "notification-url": "https://packagist.org/downloads/",
  5126. "license": [
  5127. "MIT"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "Daniele Alessandri",
  5132. "email": "suppakilla@gmail.com",
  5133. "homepage": "http://clorophilla.net"
  5134. }
  5135. ],
  5136. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  5137. "homepage": "http://github.com/nrk/predis",
  5138. "keywords": [
  5139. "nosql",
  5140. "predis",
  5141. "redis"
  5142. ],
  5143. "time": "2016-06-16T16:22:20+00:00"
  5144. },
  5145. {
  5146. "name": "prettus/l5-repository",
  5147. "version": "2.6.32",
  5148. "source": {
  5149. "type": "git",
  5150. "url": "https://github.com/andersao/l5-repository.git",
  5151. "reference": "f6ebfffee80a38e1d2dcf479e70b1a9ead397c24"
  5152. },
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/f6ebfffee80a38e1d2dcf479e70b1a9ead397c24",
  5156. "reference": "f6ebfffee80a38e1d2dcf479e70b1a9ead397c24",
  5157. "shasum": "",
  5158. "mirrors": [
  5159. {
  5160. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5161. "preferred": true
  5162. }
  5163. ]
  5164. },
  5165. "require": {
  5166. "illuminate/config": "~5.0",
  5167. "illuminate/console": "~5.0",
  5168. "illuminate/database": "~5.0",
  5169. "illuminate/filesystem": "~5.0",
  5170. "illuminate/http": "~5.0",
  5171. "illuminate/pagination": "~5.0",
  5172. "illuminate/support": "~5.0",
  5173. "prettus/laravel-validation": "1.1.*"
  5174. },
  5175. "suggest": {
  5176. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  5177. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  5178. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  5179. },
  5180. "type": "library",
  5181. "extra": {
  5182. "laravel": {
  5183. "providers": [
  5184. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  5185. ]
  5186. }
  5187. },
  5188. "autoload": {
  5189. "psr-4": {
  5190. "Prettus\\Repository\\": "src/Prettus/Repository/"
  5191. }
  5192. },
  5193. "notification-url": "https://packagist.org/downloads/",
  5194. "license": [
  5195. "MIT"
  5196. ],
  5197. "authors": [
  5198. {
  5199. "name": "Anderson Andrade",
  5200. "email": "contato@andersonandra.de",
  5201. "role": "Developer"
  5202. }
  5203. ],
  5204. "description": "Laravel 5 - Repositories to the database layer",
  5205. "keywords": [
  5206. "cache",
  5207. "eloquent",
  5208. "laravel",
  5209. "model",
  5210. "repository"
  5211. ],
  5212. "time": "2018-01-27T15:53:20+00:00"
  5213. },
  5214. {
  5215. "name": "prettus/laravel-validation",
  5216. "version": "1.1.5",
  5217. "source": {
  5218. "type": "git",
  5219. "url": "https://github.com/andersao/laravel-validator.git",
  5220. "reference": "d9eb401fb3518a890b117e83bd25a4109fcdb704"
  5221. },
  5222. "dist": {
  5223. "type": "zip",
  5224. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/d9eb401fb3518a890b117e83bd25a4109fcdb704",
  5225. "reference": "d9eb401fb3518a890b117e83bd25a4109fcdb704",
  5226. "shasum": "",
  5227. "mirrors": [
  5228. {
  5229. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5230. "preferred": true
  5231. }
  5232. ]
  5233. },
  5234. "require": {
  5235. "illuminate/support": "~5.4",
  5236. "illuminate/validation": "~5.4",
  5237. "php": ">=5.4.0"
  5238. },
  5239. "type": "library",
  5240. "autoload": {
  5241. "psr-4": {
  5242. "Prettus\\Validator\\": "src/Prettus/Validator/"
  5243. }
  5244. },
  5245. "notification-url": "https://packagist.org/downloads/",
  5246. "authors": [
  5247. {
  5248. "name": "Anderson Andrade",
  5249. "email": "contato@andersonandra.de"
  5250. }
  5251. ],
  5252. "description": "Laravel Validation Service",
  5253. "keywords": [
  5254. "laravel",
  5255. "service",
  5256. "validation"
  5257. ],
  5258. "time": "2017-08-28T23:28:32+00:00"
  5259. },
  5260. {
  5261. "name": "psr/cache",
  5262. "version": "1.0.1",
  5263. "source": {
  5264. "type": "git",
  5265. "url": "https://github.com/php-fig/cache.git",
  5266. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  5267. },
  5268. "dist": {
  5269. "type": "zip",
  5270. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  5271. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  5272. "shasum": "",
  5273. "mirrors": [
  5274. {
  5275. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5276. "preferred": true
  5277. }
  5278. ]
  5279. },
  5280. "require": {
  5281. "php": ">=5.3.0"
  5282. },
  5283. "type": "library",
  5284. "extra": {
  5285. "branch-alias": {
  5286. "dev-master": "1.0.x-dev"
  5287. }
  5288. },
  5289. "autoload": {
  5290. "psr-4": {
  5291. "Psr\\Cache\\": "src/"
  5292. }
  5293. },
  5294. "notification-url": "https://packagist.org/downloads/",
  5295. "license": [
  5296. "MIT"
  5297. ],
  5298. "authors": [
  5299. {
  5300. "name": "PHP-FIG",
  5301. "homepage": "http://www.php-fig.org/"
  5302. }
  5303. ],
  5304. "description": "Common interface for caching libraries",
  5305. "keywords": [
  5306. "cache",
  5307. "psr",
  5308. "psr-6"
  5309. ],
  5310. "time": "2016-08-06T20:24:11+00:00"
  5311. },
  5312. {
  5313. "name": "psr/container",
  5314. "version": "1.0.0",
  5315. "source": {
  5316. "type": "git",
  5317. "url": "https://github.com/php-fig/container.git",
  5318. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  5319. },
  5320. "dist": {
  5321. "type": "zip",
  5322. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  5323. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  5324. "shasum": "",
  5325. "mirrors": [
  5326. {
  5327. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5328. "preferred": true
  5329. }
  5330. ]
  5331. },
  5332. "require": {
  5333. "php": ">=5.3.0"
  5334. },
  5335. "type": "library",
  5336. "extra": {
  5337. "branch-alias": {
  5338. "dev-master": "1.0.x-dev"
  5339. }
  5340. },
  5341. "autoload": {
  5342. "psr-4": {
  5343. "Psr\\Container\\": "src/"
  5344. }
  5345. },
  5346. "notification-url": "https://packagist.org/downloads/",
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "PHP-FIG",
  5353. "homepage": "http://www.php-fig.org/"
  5354. }
  5355. ],
  5356. "description": "Common Container Interface (PHP FIG PSR-11)",
  5357. "homepage": "https://github.com/php-fig/container",
  5358. "keywords": [
  5359. "PSR-11",
  5360. "container",
  5361. "container-interface",
  5362. "container-interop",
  5363. "psr"
  5364. ],
  5365. "time": "2017-02-14T16:28:37+00:00"
  5366. },
  5367. {
  5368. "name": "psr/http-message",
  5369. "version": "1.0.1",
  5370. "source": {
  5371. "type": "git",
  5372. "url": "https://github.com/php-fig/http-message.git",
  5373. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5374. },
  5375. "dist": {
  5376. "type": "zip",
  5377. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5378. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5379. "shasum": "",
  5380. "mirrors": [
  5381. {
  5382. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5383. "preferred": true
  5384. }
  5385. ]
  5386. },
  5387. "require": {
  5388. "php": ">=5.3.0"
  5389. },
  5390. "type": "library",
  5391. "extra": {
  5392. "branch-alias": {
  5393. "dev-master": "1.0.x-dev"
  5394. }
  5395. },
  5396. "autoload": {
  5397. "psr-4": {
  5398. "Psr\\Http\\Message\\": "src/"
  5399. }
  5400. },
  5401. "notification-url": "https://packagist.org/downloads/",
  5402. "license": [
  5403. "MIT"
  5404. ],
  5405. "authors": [
  5406. {
  5407. "name": "PHP-FIG",
  5408. "homepage": "http://www.php-fig.org/"
  5409. }
  5410. ],
  5411. "description": "Common interface for HTTP messages",
  5412. "homepage": "https://github.com/php-fig/http-message",
  5413. "keywords": [
  5414. "http",
  5415. "http-message",
  5416. "psr",
  5417. "psr-7",
  5418. "request",
  5419. "response"
  5420. ],
  5421. "time": "2016-08-06T14:39:51+00:00"
  5422. },
  5423. {
  5424. "name": "psr/log",
  5425. "version": "1.1.0",
  5426. "source": {
  5427. "type": "git",
  5428. "url": "https://github.com/php-fig/log.git",
  5429. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  5430. },
  5431. "dist": {
  5432. "type": "zip",
  5433. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  5434. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  5435. "shasum": "",
  5436. "mirrors": [
  5437. {
  5438. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5439. "preferred": true
  5440. }
  5441. ]
  5442. },
  5443. "require": {
  5444. "php": ">=5.3.0"
  5445. },
  5446. "type": "library",
  5447. "extra": {
  5448. "branch-alias": {
  5449. "dev-master": "1.0.x-dev"
  5450. }
  5451. },
  5452. "autoload": {
  5453. "psr-4": {
  5454. "Psr\\Log\\": "Psr/Log/"
  5455. }
  5456. },
  5457. "notification-url": "https://packagist.org/downloads/",
  5458. "license": [
  5459. "MIT"
  5460. ],
  5461. "authors": [
  5462. {
  5463. "name": "PHP-FIG",
  5464. "homepage": "http://www.php-fig.org/"
  5465. }
  5466. ],
  5467. "description": "Common interface for logging libraries",
  5468. "homepage": "https://github.com/php-fig/log",
  5469. "keywords": [
  5470. "log",
  5471. "psr",
  5472. "psr-3"
  5473. ],
  5474. "time": "2018-11-20T15:27:04+00:00"
  5475. },
  5476. {
  5477. "name": "psr/simple-cache",
  5478. "version": "1.0.1",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://github.com/php-fig/simple-cache.git",
  5482. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5487. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5488. "shasum": "",
  5489. "mirrors": [
  5490. {
  5491. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5492. "preferred": true
  5493. }
  5494. ]
  5495. },
  5496. "require": {
  5497. "php": ">=5.3.0"
  5498. },
  5499. "type": "library",
  5500. "extra": {
  5501. "branch-alias": {
  5502. "dev-master": "1.0.x-dev"
  5503. }
  5504. },
  5505. "autoload": {
  5506. "psr-4": {
  5507. "Psr\\SimpleCache\\": "src/"
  5508. }
  5509. },
  5510. "notification-url": "https://packagist.org/downloads/",
  5511. "license": [
  5512. "MIT"
  5513. ],
  5514. "authors": [
  5515. {
  5516. "name": "PHP-FIG",
  5517. "homepage": "http://www.php-fig.org/"
  5518. }
  5519. ],
  5520. "description": "Common interfaces for simple caching",
  5521. "keywords": [
  5522. "cache",
  5523. "caching",
  5524. "psr",
  5525. "psr-16",
  5526. "simple-cache"
  5527. ],
  5528. "time": "2017-10-23T01:57:42+00:00"
  5529. },
  5530. {
  5531. "name": "psy/psysh",
  5532. "version": "v0.9.9",
  5533. "source": {
  5534. "type": "git",
  5535. "url": "https://github.com/bobthecow/psysh.git",
  5536. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  5537. },
  5538. "dist": {
  5539. "type": "zip",
  5540. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  5541. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  5542. "shasum": "",
  5543. "mirrors": [
  5544. {
  5545. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5546. "preferred": true
  5547. }
  5548. ]
  5549. },
  5550. "require": {
  5551. "dnoegel/php-xdg-base-dir": "0.1",
  5552. "ext-json": "*",
  5553. "ext-tokenizer": "*",
  5554. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  5555. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  5556. "php": ">=5.4.0",
  5557. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  5558. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  5559. },
  5560. "require-dev": {
  5561. "bamarni/composer-bin-plugin": "^1.2",
  5562. "hoa/console": "~2.15|~3.16",
  5563. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  5564. },
  5565. "suggest": {
  5566. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5567. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5568. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5569. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  5570. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  5571. },
  5572. "bin": [
  5573. "bin/psysh"
  5574. ],
  5575. "type": "library",
  5576. "extra": {
  5577. "branch-alias": {
  5578. "dev-develop": "0.9.x-dev"
  5579. }
  5580. },
  5581. "autoload": {
  5582. "files": [
  5583. "src/functions.php"
  5584. ],
  5585. "psr-4": {
  5586. "Psy\\": "src/"
  5587. }
  5588. },
  5589. "notification-url": "https://packagist.org/downloads/",
  5590. "license": [
  5591. "MIT"
  5592. ],
  5593. "authors": [
  5594. {
  5595. "name": "Justin Hileman",
  5596. "email": "justin@justinhileman.info",
  5597. "homepage": "http://justinhileman.com"
  5598. }
  5599. ],
  5600. "description": "An interactive shell for modern PHP.",
  5601. "homepage": "http://psysh.org",
  5602. "keywords": [
  5603. "REPL",
  5604. "console",
  5605. "interactive",
  5606. "shell"
  5607. ],
  5608. "time": "2018-10-13T15:16:03+00:00"
  5609. },
  5610. {
  5611. "name": "qiniu/php-sdk",
  5612. "version": "v7.2.7",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/qiniu/php-sdk.git",
  5616. "reference": "88d11a5857ebc6871204e9be6ceec54bf5f381e6"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/88d11a5857ebc6871204e9be6ceec54bf5f381e6",
  5621. "reference": "88d11a5857ebc6871204e9be6ceec54bf5f381e6",
  5622. "shasum": "",
  5623. "mirrors": [
  5624. {
  5625. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5626. "preferred": true
  5627. }
  5628. ]
  5629. },
  5630. "require": {
  5631. "php": ">=5.3.3"
  5632. },
  5633. "require-dev": {
  5634. "phpunit/phpunit": "~4.0",
  5635. "squizlabs/php_codesniffer": "~2.3"
  5636. },
  5637. "type": "library",
  5638. "autoload": {
  5639. "psr-4": {
  5640. "Qiniu\\": "src/Qiniu"
  5641. },
  5642. "files": [
  5643. "src/Qiniu/functions.php"
  5644. ]
  5645. },
  5646. "notification-url": "https://packagist.org/downloads/",
  5647. "license": [
  5648. "MIT"
  5649. ],
  5650. "authors": [
  5651. {
  5652. "name": "Qiniu",
  5653. "email": "sdk@qiniu.com",
  5654. "homepage": "http://www.qiniu.com"
  5655. }
  5656. ],
  5657. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  5658. "homepage": "http://developer.qiniu.com/",
  5659. "keywords": [
  5660. "cloud",
  5661. "qiniu",
  5662. "sdk",
  5663. "storage"
  5664. ],
  5665. "time": "2018-11-06T13:34:32+00:00"
  5666. },
  5667. {
  5668. "name": "ralouphie/getallheaders",
  5669. "version": "2.0.5",
  5670. "source": {
  5671. "type": "git",
  5672. "url": "https://github.com/ralouphie/getallheaders.git",
  5673. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  5674. },
  5675. "dist": {
  5676. "type": "zip",
  5677. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  5678. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  5679. "shasum": "",
  5680. "mirrors": [
  5681. {
  5682. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5683. "preferred": true
  5684. }
  5685. ]
  5686. },
  5687. "require": {
  5688. "php": ">=5.3"
  5689. },
  5690. "require-dev": {
  5691. "phpunit/phpunit": "~3.7.0",
  5692. "satooshi/php-coveralls": ">=1.0"
  5693. },
  5694. "type": "library",
  5695. "autoload": {
  5696. "files": [
  5697. "src/getallheaders.php"
  5698. ]
  5699. },
  5700. "notification-url": "https://packagist.org/downloads/",
  5701. "license": [
  5702. "MIT"
  5703. ],
  5704. "authors": [
  5705. {
  5706. "name": "Ralph Khattar",
  5707. "email": "ralph.khattar@gmail.com"
  5708. }
  5709. ],
  5710. "description": "A polyfill for getallheaders.",
  5711. "time": "2016-02-11T07:05:27+00:00"
  5712. },
  5713. {
  5714. "name": "ramsey/uuid",
  5715. "version": "3.8.0",
  5716. "source": {
  5717. "type": "git",
  5718. "url": "https://github.com/ramsey/uuid.git",
  5719. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  5720. },
  5721. "dist": {
  5722. "type": "zip",
  5723. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  5724. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  5725. "shasum": "",
  5726. "mirrors": [
  5727. {
  5728. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5729. "preferred": true
  5730. }
  5731. ]
  5732. },
  5733. "require": {
  5734. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  5735. "php": "^5.4 || ^7.0",
  5736. "symfony/polyfill-ctype": "^1.8"
  5737. },
  5738. "replace": {
  5739. "rhumsaa/uuid": "self.version"
  5740. },
  5741. "require-dev": {
  5742. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  5743. "doctrine/annotations": "~1.2.0",
  5744. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  5745. "ircmaxell/random-lib": "^1.1",
  5746. "jakub-onderka/php-parallel-lint": "^0.9.0",
  5747. "mockery/mockery": "^0.9.9",
  5748. "moontoast/math": "^1.1",
  5749. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  5750. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  5751. "squizlabs/php_codesniffer": "^2.3"
  5752. },
  5753. "suggest": {
  5754. "ext-ctype": "Provides support for PHP Ctype functions",
  5755. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  5756. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  5757. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5758. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  5759. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  5760. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5761. },
  5762. "type": "library",
  5763. "extra": {
  5764. "branch-alias": {
  5765. "dev-master": "3.x-dev"
  5766. }
  5767. },
  5768. "autoload": {
  5769. "psr-4": {
  5770. "Ramsey\\Uuid\\": "src/"
  5771. }
  5772. },
  5773. "notification-url": "https://packagist.org/downloads/",
  5774. "license": [
  5775. "MIT"
  5776. ],
  5777. "authors": [
  5778. {
  5779. "name": "Marijn Huizendveld",
  5780. "email": "marijn.huizendveld@gmail.com"
  5781. },
  5782. {
  5783. "name": "Thibaud Fabre",
  5784. "email": "thibaud@aztech.io"
  5785. },
  5786. {
  5787. "name": "Ben Ramsey",
  5788. "email": "ben@benramsey.com",
  5789. "homepage": "https://benramsey.com"
  5790. }
  5791. ],
  5792. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  5793. "homepage": "https://github.com/ramsey/uuid",
  5794. "keywords": [
  5795. "guid",
  5796. "identifier",
  5797. "uuid"
  5798. ],
  5799. "time": "2018-07-19T23:38:55+00:00"
  5800. },
  5801. {
  5802. "name": "simplesoftwareio/simple-qrcode",
  5803. "version": "1.5.1",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  5807. "reference": "0d8fbf73f7adc166ec5aabbf898b7327f6c69600"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/0d8fbf73f7adc166ec5aabbf898b7327f6c69600",
  5812. "reference": "0d8fbf73f7adc166ec5aabbf898b7327f6c69600",
  5813. "shasum": "",
  5814. "mirrors": [
  5815. {
  5816. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5817. "preferred": true
  5818. }
  5819. ]
  5820. },
  5821. "require": {
  5822. "bacon/bacon-qr-code": "1.0.*",
  5823. "ext-gd": "*",
  5824. "illuminate/support": ">=4.2.0",
  5825. "php": ">=5.4.0"
  5826. },
  5827. "require-dev": {
  5828. "mockery/mockery": "0.9.*",
  5829. "phpunit/phpunit": "~5"
  5830. },
  5831. "type": "library",
  5832. "autoload": {
  5833. "psr-0": {
  5834. "SimpleSoftwareIO\\QrCode\\": "src"
  5835. }
  5836. },
  5837. "notification-url": "https://packagist.org/downloads/",
  5838. "license": [
  5839. "MIT"
  5840. ],
  5841. "authors": [
  5842. {
  5843. "name": "Simple Software LLC",
  5844. "email": "support@simplesoftware.io"
  5845. }
  5846. ],
  5847. "description": "Simple QrCode is a QR code generator made for Laravel.",
  5848. "homepage": "http://www.simplesoftware.io",
  5849. "keywords": [
  5850. "Simple",
  5851. "generator",
  5852. "laravel",
  5853. "qrcode",
  5854. "wrapper"
  5855. ],
  5856. "time": "2016-12-06T01:39:52+00:00"
  5857. },
  5858. {
  5859. "name": "spatie/db-dumper",
  5860. "version": "2.12.0",
  5861. "source": {
  5862. "type": "git",
  5863. "url": "https://github.com/spatie/db-dumper.git",
  5864. "reference": "61cf73e3b53e163d6e888a0013b9df6bb235752c"
  5865. },
  5866. "dist": {
  5867. "type": "zip",
  5868. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/61cf73e3b53e163d6e888a0013b9df6bb235752c",
  5869. "reference": "61cf73e3b53e163d6e888a0013b9df6bb235752c",
  5870. "shasum": "",
  5871. "mirrors": [
  5872. {
  5873. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5874. "preferred": true
  5875. }
  5876. ]
  5877. },
  5878. "require": {
  5879. "php": "^7.0",
  5880. "symfony/process": "^3.0|^4.0"
  5881. },
  5882. "require-dev": {
  5883. "phpunit/phpunit": "^6.0"
  5884. },
  5885. "type": "library",
  5886. "autoload": {
  5887. "psr-4": {
  5888. "Spatie\\DbDumper\\": "src"
  5889. }
  5890. },
  5891. "notification-url": "https://packagist.org/downloads/",
  5892. "license": [
  5893. "MIT"
  5894. ],
  5895. "authors": [
  5896. {
  5897. "name": "Freek Van der Herten",
  5898. "email": "freek@spatie.be",
  5899. "homepage": "https://spatie.be",
  5900. "role": "Developer"
  5901. }
  5902. ],
  5903. "description": "Dump databases",
  5904. "homepage": "https://github.com/spatie/db-dumper",
  5905. "keywords": [
  5906. "database",
  5907. "db-dumper",
  5908. "dump",
  5909. "mysqldump",
  5910. "spatie"
  5911. ],
  5912. "time": "2018-12-10T10:41:18+00:00"
  5913. },
  5914. {
  5915. "name": "spatie/laravel-backup",
  5916. "version": "5.12.0",
  5917. "source": {
  5918. "type": "git",
  5919. "url": "https://github.com/spatie/laravel-backup.git",
  5920. "reference": "9f6466ad6b51dedba0ceccc65aff8a613d5f4521"
  5921. },
  5922. "dist": {
  5923. "type": "zip",
  5924. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/9f6466ad6b51dedba0ceccc65aff8a613d5f4521",
  5925. "reference": "9f6466ad6b51dedba0ceccc65aff8a613d5f4521",
  5926. "shasum": "",
  5927. "mirrors": [
  5928. {
  5929. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5930. "preferred": true
  5931. }
  5932. ]
  5933. },
  5934. "require": {
  5935. "illuminate/console": "~5.5.0|~5.6.0|~5.7.0",
  5936. "illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0",
  5937. "illuminate/events": "~5.5.0|~5.6.0|~5.7.0",
  5938. "illuminate/filesystem": "~5.5.0|~5.6.0|~5.7.0",
  5939. "illuminate/notifications": "~5.5.0|~5.6.0|~5.7.0",
  5940. "illuminate/support": "~5.5.0|~5.6.0|~5.7.0",
  5941. "league/flysystem": "^1.0.27",
  5942. "php": "^7.1",
  5943. "spatie/db-dumper": "^2.11.1",
  5944. "spatie/temporary-directory": "^1.1",
  5945. "symfony/finder": "^3.3|^4.0"
  5946. },
  5947. "require-dev": {
  5948. "mockery/mockery": "^1.0",
  5949. "orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0",
  5950. "phpunit/phpunit": "^7.3"
  5951. },
  5952. "suggest": {
  5953. "guzzlehttp/guzzle": "Allows notifications to be sent via Slack"
  5954. },
  5955. "type": "library",
  5956. "extra": {
  5957. "laravel": {
  5958. "providers": [
  5959. "Spatie\\Backup\\BackupServiceProvider"
  5960. ]
  5961. }
  5962. },
  5963. "autoload": {
  5964. "psr-4": {
  5965. "Spatie\\Backup\\": "src"
  5966. },
  5967. "files": [
  5968. "src/Helpers/functions.php"
  5969. ]
  5970. },
  5971. "notification-url": "https://packagist.org/downloads/",
  5972. "license": [
  5973. "MIT"
  5974. ],
  5975. "authors": [
  5976. {
  5977. "name": "Freek Van der Herten",
  5978. "email": "freek@spatie.be",
  5979. "homepage": "https://spatie.be",
  5980. "role": "Developer"
  5981. }
  5982. ],
  5983. "description": "A Laravel 5 package to backup your application",
  5984. "homepage": "https://github.com/spatie/laravel-backup",
  5985. "keywords": [
  5986. "backup",
  5987. "database",
  5988. "laravel-backup",
  5989. "spatie"
  5990. ],
  5991. "time": "2018-12-28T07:57:48+00:00"
  5992. },
  5993. {
  5994. "name": "spatie/temporary-directory",
  5995. "version": "1.1.4",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/spatie/temporary-directory.git",
  5999. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  6004. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  6005. "shasum": "",
  6006. "mirrors": [
  6007. {
  6008. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6009. "preferred": true
  6010. }
  6011. ]
  6012. },
  6013. "require": {
  6014. "php": "^7.0"
  6015. },
  6016. "require-dev": {
  6017. "phpunit/phpunit": "^6.3"
  6018. },
  6019. "type": "library",
  6020. "autoload": {
  6021. "psr-4": {
  6022. "Spatie\\TemporaryDirectory\\": "src"
  6023. }
  6024. },
  6025. "notification-url": "https://packagist.org/downloads/",
  6026. "license": [
  6027. "MIT"
  6028. ],
  6029. "authors": [
  6030. {
  6031. "name": "Alex Vanderbist",
  6032. "email": "alex@spatie.be",
  6033. "homepage": "https://spatie.be",
  6034. "role": "Developer"
  6035. }
  6036. ],
  6037. "description": "Easily create, use and destroy temporary directories",
  6038. "homepage": "https://github.com/spatie/temporary-directory",
  6039. "keywords": [
  6040. "spatie",
  6041. "temporary-directory"
  6042. ],
  6043. "time": "2018-04-12T09:34:43+00:00"
  6044. },
  6045. {
  6046. "name": "swiftmailer/swiftmailer",
  6047. "version": "v6.1.3",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6051. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  6056. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  6057. "shasum": "",
  6058. "mirrors": [
  6059. {
  6060. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6061. "preferred": true
  6062. }
  6063. ]
  6064. },
  6065. "require": {
  6066. "egulias/email-validator": "~2.0",
  6067. "php": ">=7.0.0"
  6068. },
  6069. "require-dev": {
  6070. "mockery/mockery": "~0.9.1",
  6071. "symfony/phpunit-bridge": "~3.3@dev"
  6072. },
  6073. "suggest": {
  6074. "ext-intl": "Needed to support internationalized email addresses",
  6075. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  6076. },
  6077. "type": "library",
  6078. "extra": {
  6079. "branch-alias": {
  6080. "dev-master": "6.1-dev"
  6081. }
  6082. },
  6083. "autoload": {
  6084. "files": [
  6085. "lib/swift_required.php"
  6086. ]
  6087. },
  6088. "notification-url": "https://packagist.org/downloads/",
  6089. "license": [
  6090. "MIT"
  6091. ],
  6092. "authors": [
  6093. {
  6094. "name": "Chris Corbyn"
  6095. },
  6096. {
  6097. "name": "Fabien Potencier",
  6098. "email": "fabien@symfony.com"
  6099. }
  6100. ],
  6101. "description": "Swiftmailer, free feature-rich PHP mailer",
  6102. "homepage": "https://swiftmailer.symfony.com",
  6103. "keywords": [
  6104. "email",
  6105. "mail",
  6106. "mailer"
  6107. ],
  6108. "time": "2018-09-11T07:12:52+00:00"
  6109. },
  6110. {
  6111. "name": "symfony/cache",
  6112. "version": "v4.2.1",
  6113. "source": {
  6114. "type": "git",
  6115. "url": "https://github.com/symfony/cache.git",
  6116. "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41"
  6117. },
  6118. "dist": {
  6119. "type": "zip",
  6120. "url": "https://api.github.com/repos/symfony/cache/zipball/5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
  6121. "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
  6122. "shasum": "",
  6123. "mirrors": [
  6124. {
  6125. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6126. "preferred": true
  6127. }
  6128. ]
  6129. },
  6130. "require": {
  6131. "php": "^7.1.3",
  6132. "psr/cache": "~1.0",
  6133. "psr/log": "~1.0",
  6134. "psr/simple-cache": "^1.0",
  6135. "symfony/contracts": "^1.0",
  6136. "symfony/var-exporter": "^4.2"
  6137. },
  6138. "conflict": {
  6139. "doctrine/dbal": "<2.5",
  6140. "symfony/dependency-injection": "<3.4",
  6141. "symfony/var-dumper": "<3.4"
  6142. },
  6143. "provide": {
  6144. "psr/cache-implementation": "1.0",
  6145. "psr/simple-cache-implementation": "1.0",
  6146. "symfony/cache-contracts-implementation": "1.0"
  6147. },
  6148. "require-dev": {
  6149. "cache/integration-tests": "dev-master",
  6150. "doctrine/cache": "~1.6",
  6151. "doctrine/dbal": "~2.5",
  6152. "predis/predis": "~1.1",
  6153. "symfony/config": "~4.2",
  6154. "symfony/dependency-injection": "~3.4|~4.1",
  6155. "symfony/var-dumper": "^4.1.1"
  6156. },
  6157. "type": "library",
  6158. "extra": {
  6159. "branch-alias": {
  6160. "dev-master": "4.2-dev"
  6161. }
  6162. },
  6163. "autoload": {
  6164. "psr-4": {
  6165. "Symfony\\Component\\Cache\\": ""
  6166. },
  6167. "exclude-from-classmap": [
  6168. "/Tests/"
  6169. ]
  6170. },
  6171. "notification-url": "https://packagist.org/downloads/",
  6172. "license": [
  6173. "MIT"
  6174. ],
  6175. "authors": [
  6176. {
  6177. "name": "Nicolas Grekas",
  6178. "email": "p@tchwork.com"
  6179. },
  6180. {
  6181. "name": "Symfony Community",
  6182. "homepage": "https://symfony.com/contributors"
  6183. }
  6184. ],
  6185. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  6186. "homepage": "https://symfony.com",
  6187. "keywords": [
  6188. "caching",
  6189. "psr6"
  6190. ],
  6191. "time": "2018-12-06T11:00:08+00:00"
  6192. },
  6193. {
  6194. "name": "symfony/console",
  6195. "version": "v3.4.20",
  6196. "source": {
  6197. "type": "git",
  6198. "url": "https://github.com/symfony/console.git",
  6199. "reference": "8f80fc39bbc3b7c47ee54ba7aa2653521ace94bb"
  6200. },
  6201. "dist": {
  6202. "type": "zip",
  6203. "url": "https://api.github.com/repos/symfony/console/zipball/8f80fc39bbc3b7c47ee54ba7aa2653521ace94bb",
  6204. "reference": "8f80fc39bbc3b7c47ee54ba7aa2653521ace94bb",
  6205. "shasum": "",
  6206. "mirrors": [
  6207. {
  6208. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6209. "preferred": true
  6210. }
  6211. ]
  6212. },
  6213. "require": {
  6214. "php": "^5.5.9|>=7.0.8",
  6215. "symfony/debug": "~2.8|~3.0|~4.0",
  6216. "symfony/polyfill-mbstring": "~1.0"
  6217. },
  6218. "conflict": {
  6219. "symfony/dependency-injection": "<3.4",
  6220. "symfony/process": "<3.3"
  6221. },
  6222. "require-dev": {
  6223. "psr/log": "~1.0",
  6224. "symfony/config": "~3.3|~4.0",
  6225. "symfony/dependency-injection": "~3.4|~4.0",
  6226. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  6227. "symfony/lock": "~3.4|~4.0",
  6228. "symfony/process": "~3.3|~4.0"
  6229. },
  6230. "suggest": {
  6231. "psr/log-implementation": "For using the console logger",
  6232. "symfony/event-dispatcher": "",
  6233. "symfony/lock": "",
  6234. "symfony/process": ""
  6235. },
  6236. "type": "library",
  6237. "extra": {
  6238. "branch-alias": {
  6239. "dev-master": "3.4-dev"
  6240. }
  6241. },
  6242. "autoload": {
  6243. "psr-4": {
  6244. "Symfony\\Component\\Console\\": ""
  6245. },
  6246. "exclude-from-classmap": [
  6247. "/Tests/"
  6248. ]
  6249. },
  6250. "notification-url": "https://packagist.org/downloads/",
  6251. "license": [
  6252. "MIT"
  6253. ],
  6254. "authors": [
  6255. {
  6256. "name": "Fabien Potencier",
  6257. "email": "fabien@symfony.com"
  6258. },
  6259. {
  6260. "name": "Symfony Community",
  6261. "homepage": "https://symfony.com/contributors"
  6262. }
  6263. ],
  6264. "description": "Symfony Console Component",
  6265. "homepage": "https://symfony.com",
  6266. "time": "2018-11-26T12:48:07+00:00"
  6267. },
  6268. {
  6269. "name": "symfony/contracts",
  6270. "version": "v1.0.2",
  6271. "source": {
  6272. "type": "git",
  6273. "url": "https://github.com/symfony/contracts.git",
  6274. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  6275. },
  6276. "dist": {
  6277. "type": "zip",
  6278. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  6279. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  6280. "shasum": "",
  6281. "mirrors": [
  6282. {
  6283. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6284. "preferred": true
  6285. }
  6286. ]
  6287. },
  6288. "require": {
  6289. "php": "^7.1.3"
  6290. },
  6291. "require-dev": {
  6292. "psr/cache": "^1.0",
  6293. "psr/container": "^1.0"
  6294. },
  6295. "suggest": {
  6296. "psr/cache": "When using the Cache contracts",
  6297. "psr/container": "When using the Service contracts",
  6298. "symfony/cache-contracts-implementation": "",
  6299. "symfony/service-contracts-implementation": "",
  6300. "symfony/translation-contracts-implementation": ""
  6301. },
  6302. "type": "library",
  6303. "extra": {
  6304. "branch-alias": {
  6305. "dev-master": "1.0-dev"
  6306. }
  6307. },
  6308. "autoload": {
  6309. "psr-4": {
  6310. "Symfony\\Contracts\\": ""
  6311. },
  6312. "exclude-from-classmap": [
  6313. "**/Tests/"
  6314. ]
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Nicolas Grekas",
  6323. "email": "p@tchwork.com"
  6324. },
  6325. {
  6326. "name": "Symfony Community",
  6327. "homepage": "https://symfony.com/contributors"
  6328. }
  6329. ],
  6330. "description": "A set of abstractions extracted out of the Symfony components",
  6331. "homepage": "https://symfony.com",
  6332. "keywords": [
  6333. "abstractions",
  6334. "contracts",
  6335. "decoupling",
  6336. "interfaces",
  6337. "interoperability",
  6338. "standards"
  6339. ],
  6340. "time": "2018-12-05T08:06:11+00:00"
  6341. },
  6342. {
  6343. "name": "symfony/css-selector",
  6344. "version": "v4.2.1",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/symfony/css-selector.git",
  6348. "reference": "aa9fa526ba1b2ec087ffdfb32753803d999fcfcd"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aa9fa526ba1b2ec087ffdfb32753803d999fcfcd",
  6353. "reference": "aa9fa526ba1b2ec087ffdfb32753803d999fcfcd",
  6354. "shasum": "",
  6355. "mirrors": [
  6356. {
  6357. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6358. "preferred": true
  6359. }
  6360. ]
  6361. },
  6362. "require": {
  6363. "php": "^7.1.3"
  6364. },
  6365. "type": "library",
  6366. "extra": {
  6367. "branch-alias": {
  6368. "dev-master": "4.2-dev"
  6369. }
  6370. },
  6371. "autoload": {
  6372. "psr-4": {
  6373. "Symfony\\Component\\CssSelector\\": ""
  6374. },
  6375. "exclude-from-classmap": [
  6376. "/Tests/"
  6377. ]
  6378. },
  6379. "notification-url": "https://packagist.org/downloads/",
  6380. "license": [
  6381. "MIT"
  6382. ],
  6383. "authors": [
  6384. {
  6385. "name": "Jean-François Simon",
  6386. "email": "jeanfrancois.simon@sensiolabs.com"
  6387. },
  6388. {
  6389. "name": "Fabien Potencier",
  6390. "email": "fabien@symfony.com"
  6391. },
  6392. {
  6393. "name": "Symfony Community",
  6394. "homepage": "https://symfony.com/contributors"
  6395. }
  6396. ],
  6397. "description": "Symfony CssSelector Component",
  6398. "homepage": "https://symfony.com",
  6399. "time": "2018-11-11T19:52:12+00:00"
  6400. },
  6401. {
  6402. "name": "symfony/debug",
  6403. "version": "v3.4.20",
  6404. "source": {
  6405. "type": "git",
  6406. "url": "https://github.com/symfony/debug.git",
  6407. "reference": "a2233f555ddf55e5600f386fba7781cea1cb82d3"
  6408. },
  6409. "dist": {
  6410. "type": "zip",
  6411. "url": "https://api.github.com/repos/symfony/debug/zipball/a2233f555ddf55e5600f386fba7781cea1cb82d3",
  6412. "reference": "a2233f555ddf55e5600f386fba7781cea1cb82d3",
  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": "^5.5.9|>=7.0.8",
  6423. "psr/log": "~1.0"
  6424. },
  6425. "conflict": {
  6426. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  6427. },
  6428. "require-dev": {
  6429. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  6430. },
  6431. "type": "library",
  6432. "extra": {
  6433. "branch-alias": {
  6434. "dev-master": "3.4-dev"
  6435. }
  6436. },
  6437. "autoload": {
  6438. "psr-4": {
  6439. "Symfony\\Component\\Debug\\": ""
  6440. },
  6441. "exclude-from-classmap": [
  6442. "/Tests/"
  6443. ]
  6444. },
  6445. "notification-url": "https://packagist.org/downloads/",
  6446. "license": [
  6447. "MIT"
  6448. ],
  6449. "authors": [
  6450. {
  6451. "name": "Fabien Potencier",
  6452. "email": "fabien@symfony.com"
  6453. },
  6454. {
  6455. "name": "Symfony Community",
  6456. "homepage": "https://symfony.com/contributors"
  6457. }
  6458. ],
  6459. "description": "Symfony Debug Component",
  6460. "homepage": "https://symfony.com",
  6461. "time": "2018-11-27T12:43:10+00:00"
  6462. },
  6463. {
  6464. "name": "symfony/dom-crawler",
  6465. "version": "v3.4.20",
  6466. "source": {
  6467. "type": "git",
  6468. "url": "https://github.com/symfony/dom-crawler.git",
  6469. "reference": "b6e94248eb4f8602a5825301b0bea1eb8cc82cfa"
  6470. },
  6471. "dist": {
  6472. "type": "zip",
  6473. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b6e94248eb4f8602a5825301b0bea1eb8cc82cfa",
  6474. "reference": "b6e94248eb4f8602a5825301b0bea1eb8cc82cfa",
  6475. "shasum": "",
  6476. "mirrors": [
  6477. {
  6478. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6479. "preferred": true
  6480. }
  6481. ]
  6482. },
  6483. "require": {
  6484. "php": "^5.5.9|>=7.0.8",
  6485. "symfony/polyfill-ctype": "~1.8",
  6486. "symfony/polyfill-mbstring": "~1.0"
  6487. },
  6488. "require-dev": {
  6489. "symfony/css-selector": "~2.8|~3.0|~4.0"
  6490. },
  6491. "suggest": {
  6492. "symfony/css-selector": ""
  6493. },
  6494. "type": "library",
  6495. "extra": {
  6496. "branch-alias": {
  6497. "dev-master": "3.4-dev"
  6498. }
  6499. },
  6500. "autoload": {
  6501. "psr-4": {
  6502. "Symfony\\Component\\DomCrawler\\": ""
  6503. },
  6504. "exclude-from-classmap": [
  6505. "/Tests/"
  6506. ]
  6507. },
  6508. "notification-url": "https://packagist.org/downloads/",
  6509. "license": [
  6510. "MIT"
  6511. ],
  6512. "authors": [
  6513. {
  6514. "name": "Fabien Potencier",
  6515. "email": "fabien@symfony.com"
  6516. },
  6517. {
  6518. "name": "Symfony Community",
  6519. "homepage": "https://symfony.com/contributors"
  6520. }
  6521. ],
  6522. "description": "Symfony DomCrawler Component",
  6523. "homepage": "https://symfony.com",
  6524. "time": "2018-11-26T10:17:44+00:00"
  6525. },
  6526. {
  6527. "name": "symfony/event-dispatcher",
  6528. "version": "v4.2.1",
  6529. "source": {
  6530. "type": "git",
  6531. "url": "https://github.com/symfony/event-dispatcher.git",
  6532. "reference": "921f49c3158a276d27c0d770a5a347a3b718b328"
  6533. },
  6534. "dist": {
  6535. "type": "zip",
  6536. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/921f49c3158a276d27c0d770a5a347a3b718b328",
  6537. "reference": "921f49c3158a276d27c0d770a5a347a3b718b328",
  6538. "shasum": "",
  6539. "mirrors": [
  6540. {
  6541. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6542. "preferred": true
  6543. }
  6544. ]
  6545. },
  6546. "require": {
  6547. "php": "^7.1.3",
  6548. "symfony/contracts": "^1.0"
  6549. },
  6550. "conflict": {
  6551. "symfony/dependency-injection": "<3.4"
  6552. },
  6553. "require-dev": {
  6554. "psr/log": "~1.0",
  6555. "symfony/config": "~3.4|~4.0",
  6556. "symfony/dependency-injection": "~3.4|~4.0",
  6557. "symfony/expression-language": "~3.4|~4.0",
  6558. "symfony/stopwatch": "~3.4|~4.0"
  6559. },
  6560. "suggest": {
  6561. "symfony/dependency-injection": "",
  6562. "symfony/http-kernel": ""
  6563. },
  6564. "type": "library",
  6565. "extra": {
  6566. "branch-alias": {
  6567. "dev-master": "4.2-dev"
  6568. }
  6569. },
  6570. "autoload": {
  6571. "psr-4": {
  6572. "Symfony\\Component\\EventDispatcher\\": ""
  6573. },
  6574. "exclude-from-classmap": [
  6575. "/Tests/"
  6576. ]
  6577. },
  6578. "notification-url": "https://packagist.org/downloads/",
  6579. "license": [
  6580. "MIT"
  6581. ],
  6582. "authors": [
  6583. {
  6584. "name": "Fabien Potencier",
  6585. "email": "fabien@symfony.com"
  6586. },
  6587. {
  6588. "name": "Symfony Community",
  6589. "homepage": "https://symfony.com/contributors"
  6590. }
  6591. ],
  6592. "description": "Symfony EventDispatcher Component",
  6593. "homepage": "https://symfony.com",
  6594. "time": "2018-12-01T08:52:38+00:00"
  6595. },
  6596. {
  6597. "name": "symfony/finder",
  6598. "version": "v3.4.20",
  6599. "source": {
  6600. "type": "git",
  6601. "url": "https://github.com/symfony/finder.git",
  6602. "reference": "6cf2be5cbd0e87aa35c01f80ae0bf40b6798e442"
  6603. },
  6604. "dist": {
  6605. "type": "zip",
  6606. "url": "https://api.github.com/repos/symfony/finder/zipball/6cf2be5cbd0e87aa35c01f80ae0bf40b6798e442",
  6607. "reference": "6cf2be5cbd0e87aa35c01f80ae0bf40b6798e442",
  6608. "shasum": "",
  6609. "mirrors": [
  6610. {
  6611. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6612. "preferred": true
  6613. }
  6614. ]
  6615. },
  6616. "require": {
  6617. "php": "^5.5.9|>=7.0.8"
  6618. },
  6619. "type": "library",
  6620. "extra": {
  6621. "branch-alias": {
  6622. "dev-master": "3.4-dev"
  6623. }
  6624. },
  6625. "autoload": {
  6626. "psr-4": {
  6627. "Symfony\\Component\\Finder\\": ""
  6628. },
  6629. "exclude-from-classmap": [
  6630. "/Tests/"
  6631. ]
  6632. },
  6633. "notification-url": "https://packagist.org/downloads/",
  6634. "license": [
  6635. "MIT"
  6636. ],
  6637. "authors": [
  6638. {
  6639. "name": "Fabien Potencier",
  6640. "email": "fabien@symfony.com"
  6641. },
  6642. {
  6643. "name": "Symfony Community",
  6644. "homepage": "https://symfony.com/contributors"
  6645. }
  6646. ],
  6647. "description": "Symfony Finder Component",
  6648. "homepage": "https://symfony.com",
  6649. "time": "2018-11-11T19:48:54+00:00"
  6650. },
  6651. {
  6652. "name": "symfony/http-foundation",
  6653. "version": "v3.4.20",
  6654. "source": {
  6655. "type": "git",
  6656. "url": "https://github.com/symfony/http-foundation.git",
  6657. "reference": "ea61dd57c4399b0b2a4162e1820cd9d0783acd38"
  6658. },
  6659. "dist": {
  6660. "type": "zip",
  6661. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ea61dd57c4399b0b2a4162e1820cd9d0783acd38",
  6662. "reference": "ea61dd57c4399b0b2a4162e1820cd9d0783acd38",
  6663. "shasum": "",
  6664. "mirrors": [
  6665. {
  6666. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6667. "preferred": true
  6668. }
  6669. ]
  6670. },
  6671. "require": {
  6672. "php": "^5.5.9|>=7.0.8",
  6673. "symfony/polyfill-mbstring": "~1.1",
  6674. "symfony/polyfill-php70": "~1.6"
  6675. },
  6676. "require-dev": {
  6677. "symfony/expression-language": "~2.8|~3.0|~4.0"
  6678. },
  6679. "type": "library",
  6680. "extra": {
  6681. "branch-alias": {
  6682. "dev-master": "3.4-dev"
  6683. }
  6684. },
  6685. "autoload": {
  6686. "psr-4": {
  6687. "Symfony\\Component\\HttpFoundation\\": ""
  6688. },
  6689. "exclude-from-classmap": [
  6690. "/Tests/"
  6691. ]
  6692. },
  6693. "notification-url": "https://packagist.org/downloads/",
  6694. "license": [
  6695. "MIT"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Fabien Potencier",
  6700. "email": "fabien@symfony.com"
  6701. },
  6702. {
  6703. "name": "Symfony Community",
  6704. "homepage": "https://symfony.com/contributors"
  6705. }
  6706. ],
  6707. "description": "Symfony HttpFoundation Component",
  6708. "homepage": "https://symfony.com",
  6709. "time": "2018-11-26T10:17:44+00:00"
  6710. },
  6711. {
  6712. "name": "symfony/http-kernel",
  6713. "version": "v3.4.20",
  6714. "source": {
  6715. "type": "git",
  6716. "url": "https://github.com/symfony/http-kernel.git",
  6717. "reference": "31f20eb6e00467ae85501dd98770aef17cd9aba7"
  6718. },
  6719. "dist": {
  6720. "type": "zip",
  6721. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/31f20eb6e00467ae85501dd98770aef17cd9aba7",
  6722. "reference": "31f20eb6e00467ae85501dd98770aef17cd9aba7",
  6723. "shasum": "",
  6724. "mirrors": [
  6725. {
  6726. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6727. "preferred": true
  6728. }
  6729. ]
  6730. },
  6731. "require": {
  6732. "php": "^5.5.9|>=7.0.8",
  6733. "psr/log": "~1.0",
  6734. "symfony/debug": "~2.8|~3.0|~4.0",
  6735. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  6736. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  6737. "symfony/polyfill-ctype": "~1.8"
  6738. },
  6739. "conflict": {
  6740. "symfony/config": "<2.8",
  6741. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  6742. "symfony/var-dumper": "<3.3",
  6743. "twig/twig": "<1.34|<2.4,>=2"
  6744. },
  6745. "provide": {
  6746. "psr/log-implementation": "1.0"
  6747. },
  6748. "require-dev": {
  6749. "psr/cache": "~1.0",
  6750. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  6751. "symfony/class-loader": "~2.8|~3.0",
  6752. "symfony/config": "~2.8|~3.0|~4.0",
  6753. "symfony/console": "~2.8|~3.0|~4.0",
  6754. "symfony/css-selector": "~2.8|~3.0|~4.0",
  6755. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  6756. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  6757. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6758. "symfony/finder": "~2.8|~3.0|~4.0",
  6759. "symfony/process": "~2.8|~3.0|~4.0",
  6760. "symfony/routing": "~3.4|~4.0",
  6761. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  6762. "symfony/templating": "~2.8|~3.0|~4.0",
  6763. "symfony/translation": "~2.8|~3.0|~4.0",
  6764. "symfony/var-dumper": "~3.3|~4.0"
  6765. },
  6766. "suggest": {
  6767. "symfony/browser-kit": "",
  6768. "symfony/config": "",
  6769. "symfony/console": "",
  6770. "symfony/dependency-injection": "",
  6771. "symfony/finder": "",
  6772. "symfony/var-dumper": ""
  6773. },
  6774. "type": "library",
  6775. "extra": {
  6776. "branch-alias": {
  6777. "dev-master": "3.4-dev"
  6778. }
  6779. },
  6780. "autoload": {
  6781. "psr-4": {
  6782. "Symfony\\Component\\HttpKernel\\": ""
  6783. },
  6784. "exclude-from-classmap": [
  6785. "/Tests/"
  6786. ]
  6787. },
  6788. "notification-url": "https://packagist.org/downloads/",
  6789. "license": [
  6790. "MIT"
  6791. ],
  6792. "authors": [
  6793. {
  6794. "name": "Fabien Potencier",
  6795. "email": "fabien@symfony.com"
  6796. },
  6797. {
  6798. "name": "Symfony Community",
  6799. "homepage": "https://symfony.com/contributors"
  6800. }
  6801. ],
  6802. "description": "Symfony HttpKernel Component",
  6803. "homepage": "https://symfony.com",
  6804. "time": "2018-12-06T14:59:33+00:00"
  6805. },
  6806. {
  6807. "name": "symfony/polyfill-ctype",
  6808. "version": "v1.10.0",
  6809. "source": {
  6810. "type": "git",
  6811. "url": "https://github.com/symfony/polyfill-ctype.git",
  6812. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  6813. },
  6814. "dist": {
  6815. "type": "zip",
  6816. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  6817. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  6818. "shasum": "",
  6819. "mirrors": [
  6820. {
  6821. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6822. "preferred": true
  6823. }
  6824. ]
  6825. },
  6826. "require": {
  6827. "php": ">=5.3.3"
  6828. },
  6829. "suggest": {
  6830. "ext-ctype": "For best performance"
  6831. },
  6832. "type": "library",
  6833. "extra": {
  6834. "branch-alias": {
  6835. "dev-master": "1.9-dev"
  6836. }
  6837. },
  6838. "autoload": {
  6839. "psr-4": {
  6840. "Symfony\\Polyfill\\Ctype\\": ""
  6841. },
  6842. "files": [
  6843. "bootstrap.php"
  6844. ]
  6845. },
  6846. "notification-url": "https://packagist.org/downloads/",
  6847. "license": [
  6848. "MIT"
  6849. ],
  6850. "authors": [
  6851. {
  6852. "name": "Symfony Community",
  6853. "homepage": "https://symfony.com/contributors"
  6854. },
  6855. {
  6856. "name": "Gert de Pagter",
  6857. "email": "BackEndTea@gmail.com"
  6858. }
  6859. ],
  6860. "description": "Symfony polyfill for ctype functions",
  6861. "homepage": "https://symfony.com",
  6862. "keywords": [
  6863. "compatibility",
  6864. "ctype",
  6865. "polyfill",
  6866. "portable"
  6867. ],
  6868. "time": "2018-08-06T14:22:27+00:00"
  6869. },
  6870. {
  6871. "name": "symfony/polyfill-mbstring",
  6872. "version": "v1.10.0",
  6873. "source": {
  6874. "type": "git",
  6875. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6876. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  6877. },
  6878. "dist": {
  6879. "type": "zip",
  6880. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  6881. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  6882. "shasum": "",
  6883. "mirrors": [
  6884. {
  6885. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6886. "preferred": true
  6887. }
  6888. ]
  6889. },
  6890. "require": {
  6891. "php": ">=5.3.3"
  6892. },
  6893. "suggest": {
  6894. "ext-mbstring": "For best performance"
  6895. },
  6896. "type": "library",
  6897. "extra": {
  6898. "branch-alias": {
  6899. "dev-master": "1.9-dev"
  6900. }
  6901. },
  6902. "autoload": {
  6903. "psr-4": {
  6904. "Symfony\\Polyfill\\Mbstring\\": ""
  6905. },
  6906. "files": [
  6907. "bootstrap.php"
  6908. ]
  6909. },
  6910. "notification-url": "https://packagist.org/downloads/",
  6911. "license": [
  6912. "MIT"
  6913. ],
  6914. "authors": [
  6915. {
  6916. "name": "Nicolas Grekas",
  6917. "email": "p@tchwork.com"
  6918. },
  6919. {
  6920. "name": "Symfony Community",
  6921. "homepage": "https://symfony.com/contributors"
  6922. }
  6923. ],
  6924. "description": "Symfony polyfill for the Mbstring extension",
  6925. "homepage": "https://symfony.com",
  6926. "keywords": [
  6927. "compatibility",
  6928. "mbstring",
  6929. "polyfill",
  6930. "portable",
  6931. "shim"
  6932. ],
  6933. "time": "2018-09-21T13:07:52+00:00"
  6934. },
  6935. {
  6936. "name": "symfony/polyfill-php56",
  6937. "version": "v1.10.0",
  6938. "source": {
  6939. "type": "git",
  6940. "url": "https://github.com/symfony/polyfill-php56.git",
  6941. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
  6942. },
  6943. "dist": {
  6944. "type": "zip",
  6945. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
  6946. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
  6947. "shasum": "",
  6948. "mirrors": [
  6949. {
  6950. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6951. "preferred": true
  6952. }
  6953. ]
  6954. },
  6955. "require": {
  6956. "php": ">=5.3.3",
  6957. "symfony/polyfill-util": "~1.0"
  6958. },
  6959. "type": "library",
  6960. "extra": {
  6961. "branch-alias": {
  6962. "dev-master": "1.9-dev"
  6963. }
  6964. },
  6965. "autoload": {
  6966. "psr-4": {
  6967. "Symfony\\Polyfill\\Php56\\": ""
  6968. },
  6969. "files": [
  6970. "bootstrap.php"
  6971. ]
  6972. },
  6973. "notification-url": "https://packagist.org/downloads/",
  6974. "license": [
  6975. "MIT"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Nicolas Grekas",
  6980. "email": "p@tchwork.com"
  6981. },
  6982. {
  6983. "name": "Symfony Community",
  6984. "homepage": "https://symfony.com/contributors"
  6985. }
  6986. ],
  6987. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6988. "homepage": "https://symfony.com",
  6989. "keywords": [
  6990. "compatibility",
  6991. "polyfill",
  6992. "portable",
  6993. "shim"
  6994. ],
  6995. "time": "2018-09-21T06:26:08+00:00"
  6996. },
  6997. {
  6998. "name": "symfony/polyfill-php70",
  6999. "version": "v1.10.0",
  7000. "source": {
  7001. "type": "git",
  7002. "url": "https://github.com/symfony/polyfill-php70.git",
  7003. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  7004. },
  7005. "dist": {
  7006. "type": "zip",
  7007. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  7008. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  7009. "shasum": "",
  7010. "mirrors": [
  7011. {
  7012. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7013. "preferred": true
  7014. }
  7015. ]
  7016. },
  7017. "require": {
  7018. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  7019. "php": ">=5.3.3"
  7020. },
  7021. "type": "library",
  7022. "extra": {
  7023. "branch-alias": {
  7024. "dev-master": "1.9-dev"
  7025. }
  7026. },
  7027. "autoload": {
  7028. "psr-4": {
  7029. "Symfony\\Polyfill\\Php70\\": ""
  7030. },
  7031. "files": [
  7032. "bootstrap.php"
  7033. ],
  7034. "classmap": [
  7035. "Resources/stubs"
  7036. ]
  7037. },
  7038. "notification-url": "https://packagist.org/downloads/",
  7039. "license": [
  7040. "MIT"
  7041. ],
  7042. "authors": [
  7043. {
  7044. "name": "Nicolas Grekas",
  7045. "email": "p@tchwork.com"
  7046. },
  7047. {
  7048. "name": "Symfony Community",
  7049. "homepage": "https://symfony.com/contributors"
  7050. }
  7051. ],
  7052. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  7053. "homepage": "https://symfony.com",
  7054. "keywords": [
  7055. "compatibility",
  7056. "polyfill",
  7057. "portable",
  7058. "shim"
  7059. ],
  7060. "time": "2018-09-21T06:26:08+00:00"
  7061. },
  7062. {
  7063. "name": "symfony/polyfill-util",
  7064. "version": "v1.10.0",
  7065. "source": {
  7066. "type": "git",
  7067. "url": "https://github.com/symfony/polyfill-util.git",
  7068. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
  7069. },
  7070. "dist": {
  7071. "type": "zip",
  7072. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
  7073. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
  7074. "shasum": "",
  7075. "mirrors": [
  7076. {
  7077. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7078. "preferred": true
  7079. }
  7080. ]
  7081. },
  7082. "require": {
  7083. "php": ">=5.3.3"
  7084. },
  7085. "type": "library",
  7086. "extra": {
  7087. "branch-alias": {
  7088. "dev-master": "1.9-dev"
  7089. }
  7090. },
  7091. "autoload": {
  7092. "psr-4": {
  7093. "Symfony\\Polyfill\\Util\\": ""
  7094. }
  7095. },
  7096. "notification-url": "https://packagist.org/downloads/",
  7097. "license": [
  7098. "MIT"
  7099. ],
  7100. "authors": [
  7101. {
  7102. "name": "Nicolas Grekas",
  7103. "email": "p@tchwork.com"
  7104. },
  7105. {
  7106. "name": "Symfony Community",
  7107. "homepage": "https://symfony.com/contributors"
  7108. }
  7109. ],
  7110. "description": "Symfony utilities for portability of PHP codes",
  7111. "homepage": "https://symfony.com",
  7112. "keywords": [
  7113. "compat",
  7114. "compatibility",
  7115. "polyfill",
  7116. "shim"
  7117. ],
  7118. "time": "2018-09-30T16:36:12+00:00"
  7119. },
  7120. {
  7121. "name": "symfony/process",
  7122. "version": "v3.4.20",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/symfony/process.git",
  7126. "reference": "abb46b909dd6ba0b50e10d4c10ffe6ee96dd70f2"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/symfony/process/zipball/abb46b909dd6ba0b50e10d4c10ffe6ee96dd70f2",
  7131. "reference": "abb46b909dd6ba0b50e10d4c10ffe6ee96dd70f2",
  7132. "shasum": "",
  7133. "mirrors": [
  7134. {
  7135. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7136. "preferred": true
  7137. }
  7138. ]
  7139. },
  7140. "require": {
  7141. "php": "^5.5.9|>=7.0.8"
  7142. },
  7143. "type": "library",
  7144. "extra": {
  7145. "branch-alias": {
  7146. "dev-master": "3.4-dev"
  7147. }
  7148. },
  7149. "autoload": {
  7150. "psr-4": {
  7151. "Symfony\\Component\\Process\\": ""
  7152. },
  7153. "exclude-from-classmap": [
  7154. "/Tests/"
  7155. ]
  7156. },
  7157. "notification-url": "https://packagist.org/downloads/",
  7158. "license": [
  7159. "MIT"
  7160. ],
  7161. "authors": [
  7162. {
  7163. "name": "Fabien Potencier",
  7164. "email": "fabien@symfony.com"
  7165. },
  7166. {
  7167. "name": "Symfony Community",
  7168. "homepage": "https://symfony.com/contributors"
  7169. }
  7170. ],
  7171. "description": "Symfony Process Component",
  7172. "homepage": "https://symfony.com",
  7173. "time": "2018-11-20T16:10:26+00:00"
  7174. },
  7175. {
  7176. "name": "symfony/psr-http-message-bridge",
  7177. "version": "v1.1.0",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7181. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  7186. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  7187. "shasum": "",
  7188. "mirrors": [
  7189. {
  7190. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7191. "preferred": true
  7192. }
  7193. ]
  7194. },
  7195. "require": {
  7196. "php": "^5.3.3 || ^7.0",
  7197. "psr/http-message": "^1.0",
  7198. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  7199. },
  7200. "require-dev": {
  7201. "symfony/phpunit-bridge": "^3.4 || 4.0"
  7202. },
  7203. "suggest": {
  7204. "psr/http-factory-implementation": "To use the PSR-17 factory",
  7205. "psr/http-message-implementation": "To use the HttpFoundation factory",
  7206. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  7207. },
  7208. "type": "symfony-bridge",
  7209. "extra": {
  7210. "branch-alias": {
  7211. "dev-master": "1.1-dev"
  7212. }
  7213. },
  7214. "autoload": {
  7215. "psr-4": {
  7216. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7217. }
  7218. },
  7219. "notification-url": "https://packagist.org/downloads/",
  7220. "license": [
  7221. "MIT"
  7222. ],
  7223. "authors": [
  7224. {
  7225. "name": "Symfony Community",
  7226. "homepage": "http://symfony.com/contributors"
  7227. },
  7228. {
  7229. "name": "Fabien Potencier",
  7230. "email": "fabien@symfony.com"
  7231. }
  7232. ],
  7233. "description": "PSR HTTP message bridge",
  7234. "homepage": "http://symfony.com",
  7235. "keywords": [
  7236. "http",
  7237. "http-message",
  7238. "psr-7"
  7239. ],
  7240. "time": "2018-08-30T16:28:28+00:00"
  7241. },
  7242. {
  7243. "name": "symfony/routing",
  7244. "version": "v3.4.20",
  7245. "source": {
  7246. "type": "git",
  7247. "url": "https://github.com/symfony/routing.git",
  7248. "reference": "94a3dd89bda078bef0c3bf79eb024fe136dd58f9"
  7249. },
  7250. "dist": {
  7251. "type": "zip",
  7252. "url": "https://api.github.com/repos/symfony/routing/zipball/94a3dd89bda078bef0c3bf79eb024fe136dd58f9",
  7253. "reference": "94a3dd89bda078bef0c3bf79eb024fe136dd58f9",
  7254. "shasum": "",
  7255. "mirrors": [
  7256. {
  7257. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7258. "preferred": true
  7259. }
  7260. ]
  7261. },
  7262. "require": {
  7263. "php": "^5.5.9|>=7.0.8"
  7264. },
  7265. "conflict": {
  7266. "symfony/config": "<3.3.1",
  7267. "symfony/dependency-injection": "<3.3",
  7268. "symfony/yaml": "<3.4"
  7269. },
  7270. "require-dev": {
  7271. "doctrine/annotations": "~1.0",
  7272. "psr/log": "~1.0",
  7273. "symfony/config": "^3.3.1|~4.0",
  7274. "symfony/dependency-injection": "~3.3|~4.0",
  7275. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7276. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  7277. "symfony/yaml": "~3.4|~4.0"
  7278. },
  7279. "suggest": {
  7280. "doctrine/annotations": "For using the annotation loader",
  7281. "symfony/config": "For using the all-in-one router or any loader",
  7282. "symfony/dependency-injection": "For loading routes from a service",
  7283. "symfony/expression-language": "For using expression matching",
  7284. "symfony/http-foundation": "For using a Symfony Request object",
  7285. "symfony/yaml": "For using the YAML loader"
  7286. },
  7287. "type": "library",
  7288. "extra": {
  7289. "branch-alias": {
  7290. "dev-master": "3.4-dev"
  7291. }
  7292. },
  7293. "autoload": {
  7294. "psr-4": {
  7295. "Symfony\\Component\\Routing\\": ""
  7296. },
  7297. "exclude-from-classmap": [
  7298. "/Tests/"
  7299. ]
  7300. },
  7301. "notification-url": "https://packagist.org/downloads/",
  7302. "license": [
  7303. "MIT"
  7304. ],
  7305. "authors": [
  7306. {
  7307. "name": "Fabien Potencier",
  7308. "email": "fabien@symfony.com"
  7309. },
  7310. {
  7311. "name": "Symfony Community",
  7312. "homepage": "https://symfony.com/contributors"
  7313. }
  7314. ],
  7315. "description": "Symfony Routing Component",
  7316. "homepage": "https://symfony.com",
  7317. "keywords": [
  7318. "router",
  7319. "routing",
  7320. "uri",
  7321. "url"
  7322. ],
  7323. "time": "2018-12-03T13:20:34+00:00"
  7324. },
  7325. {
  7326. "name": "symfony/translation",
  7327. "version": "v4.2.1",
  7328. "source": {
  7329. "type": "git",
  7330. "url": "https://github.com/symfony/translation.git",
  7331. "reference": "c0e2191e9bed845946ab3d99767513b56ca7dcd6"
  7332. },
  7333. "dist": {
  7334. "type": "zip",
  7335. "url": "https://api.github.com/repos/symfony/translation/zipball/c0e2191e9bed845946ab3d99767513b56ca7dcd6",
  7336. "reference": "c0e2191e9bed845946ab3d99767513b56ca7dcd6",
  7337. "shasum": "",
  7338. "mirrors": [
  7339. {
  7340. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7341. "preferred": true
  7342. }
  7343. ]
  7344. },
  7345. "require": {
  7346. "php": "^7.1.3",
  7347. "symfony/contracts": "^1.0.2",
  7348. "symfony/polyfill-mbstring": "~1.0"
  7349. },
  7350. "conflict": {
  7351. "symfony/config": "<3.4",
  7352. "symfony/dependency-injection": "<3.4",
  7353. "symfony/yaml": "<3.4"
  7354. },
  7355. "provide": {
  7356. "symfony/translation-contracts-implementation": "1.0"
  7357. },
  7358. "require-dev": {
  7359. "psr/log": "~1.0",
  7360. "symfony/config": "~3.4|~4.0",
  7361. "symfony/console": "~3.4|~4.0",
  7362. "symfony/dependency-injection": "~3.4|~4.0",
  7363. "symfony/finder": "~2.8|~3.0|~4.0",
  7364. "symfony/intl": "~3.4|~4.0",
  7365. "symfony/yaml": "~3.4|~4.0"
  7366. },
  7367. "suggest": {
  7368. "psr/log-implementation": "To use logging capability in translator",
  7369. "symfony/config": "",
  7370. "symfony/yaml": ""
  7371. },
  7372. "type": "library",
  7373. "extra": {
  7374. "branch-alias": {
  7375. "dev-master": "4.2-dev"
  7376. }
  7377. },
  7378. "autoload": {
  7379. "psr-4": {
  7380. "Symfony\\Component\\Translation\\": ""
  7381. },
  7382. "exclude-from-classmap": [
  7383. "/Tests/"
  7384. ]
  7385. },
  7386. "notification-url": "https://packagist.org/downloads/",
  7387. "license": [
  7388. "MIT"
  7389. ],
  7390. "authors": [
  7391. {
  7392. "name": "Fabien Potencier",
  7393. "email": "fabien@symfony.com"
  7394. },
  7395. {
  7396. "name": "Symfony Community",
  7397. "homepage": "https://symfony.com/contributors"
  7398. }
  7399. ],
  7400. "description": "Symfony Translation Component",
  7401. "homepage": "https://symfony.com",
  7402. "time": "2018-12-06T10:45:32+00:00"
  7403. },
  7404. {
  7405. "name": "symfony/var-dumper",
  7406. "version": "v3.4.20",
  7407. "source": {
  7408. "type": "git",
  7409. "url": "https://github.com/symfony/var-dumper.git",
  7410. "reference": "6867713afe6c50ade2f34ed6435563b065a52145"
  7411. },
  7412. "dist": {
  7413. "type": "zip",
  7414. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6867713afe6c50ade2f34ed6435563b065a52145",
  7415. "reference": "6867713afe6c50ade2f34ed6435563b065a52145",
  7416. "shasum": "",
  7417. "mirrors": [
  7418. {
  7419. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7420. "preferred": true
  7421. }
  7422. ]
  7423. },
  7424. "require": {
  7425. "php": "^5.5.9|>=7.0.8",
  7426. "symfony/polyfill-mbstring": "~1.0"
  7427. },
  7428. "conflict": {
  7429. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  7430. },
  7431. "require-dev": {
  7432. "ext-iconv": "*",
  7433. "twig/twig": "~1.34|~2.4"
  7434. },
  7435. "suggest": {
  7436. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7437. "ext-intl": "To show region name in time zone dump",
  7438. "ext-symfony_debug": ""
  7439. },
  7440. "type": "library",
  7441. "extra": {
  7442. "branch-alias": {
  7443. "dev-master": "3.4-dev"
  7444. }
  7445. },
  7446. "autoload": {
  7447. "files": [
  7448. "Resources/functions/dump.php"
  7449. ],
  7450. "psr-4": {
  7451. "Symfony\\Component\\VarDumper\\": ""
  7452. },
  7453. "exclude-from-classmap": [
  7454. "/Tests/"
  7455. ]
  7456. },
  7457. "notification-url": "https://packagist.org/downloads/",
  7458. "license": [
  7459. "MIT"
  7460. ],
  7461. "authors": [
  7462. {
  7463. "name": "Nicolas Grekas",
  7464. "email": "p@tchwork.com"
  7465. },
  7466. {
  7467. "name": "Symfony Community",
  7468. "homepage": "https://symfony.com/contributors"
  7469. }
  7470. ],
  7471. "description": "Symfony mechanism for exploring and dumping PHP variables",
  7472. "homepage": "https://symfony.com",
  7473. "keywords": [
  7474. "debug",
  7475. "dump"
  7476. ],
  7477. "time": "2018-11-20T16:10:26+00:00"
  7478. },
  7479. {
  7480. "name": "symfony/var-exporter",
  7481. "version": "v4.2.1",
  7482. "source": {
  7483. "type": "git",
  7484. "url": "https://github.com/symfony/var-exporter.git",
  7485. "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db"
  7486. },
  7487. "dist": {
  7488. "type": "zip",
  7489. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a39222e357362424b61dcde50e2f7b5a7d3306db",
  7490. "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db",
  7491. "shasum": "",
  7492. "mirrors": [
  7493. {
  7494. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7495. "preferred": true
  7496. }
  7497. ]
  7498. },
  7499. "require": {
  7500. "php": "^7.1.3"
  7501. },
  7502. "require-dev": {
  7503. "symfony/var-dumper": "^4.1.1"
  7504. },
  7505. "type": "library",
  7506. "extra": {
  7507. "branch-alias": {
  7508. "dev-master": "4.2-dev"
  7509. }
  7510. },
  7511. "autoload": {
  7512. "psr-4": {
  7513. "Symfony\\Component\\VarExporter\\": ""
  7514. },
  7515. "exclude-from-classmap": [
  7516. "/Tests/"
  7517. ]
  7518. },
  7519. "notification-url": "https://packagist.org/downloads/",
  7520. "license": [
  7521. "MIT"
  7522. ],
  7523. "authors": [
  7524. {
  7525. "name": "Nicolas Grekas",
  7526. "email": "p@tchwork.com"
  7527. },
  7528. {
  7529. "name": "Symfony Community",
  7530. "homepage": "https://symfony.com/contributors"
  7531. }
  7532. ],
  7533. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  7534. "homepage": "https://symfony.com",
  7535. "keywords": [
  7536. "clone",
  7537. "construct",
  7538. "export",
  7539. "hydrate",
  7540. "instantiate",
  7541. "serialize"
  7542. ],
  7543. "time": "2018-12-03T22:40:09+00:00"
  7544. },
  7545. {
  7546. "name": "tijsverkoyen/css-to-inline-styles",
  7547. "version": "2.2.1",
  7548. "source": {
  7549. "type": "git",
  7550. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7551. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  7552. },
  7553. "dist": {
  7554. "type": "zip",
  7555. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  7556. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  7557. "shasum": "",
  7558. "mirrors": [
  7559. {
  7560. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7561. "preferred": true
  7562. }
  7563. ]
  7564. },
  7565. "require": {
  7566. "php": "^5.5 || ^7.0",
  7567. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  7568. },
  7569. "require-dev": {
  7570. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7571. },
  7572. "type": "library",
  7573. "extra": {
  7574. "branch-alias": {
  7575. "dev-master": "2.2.x-dev"
  7576. }
  7577. },
  7578. "autoload": {
  7579. "psr-4": {
  7580. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7581. }
  7582. },
  7583. "notification-url": "https://packagist.org/downloads/",
  7584. "license": [
  7585. "BSD-3-Clause"
  7586. ],
  7587. "authors": [
  7588. {
  7589. "name": "Tijs Verkoyen",
  7590. "email": "css_to_inline_styles@verkoyen.eu",
  7591. "role": "Developer"
  7592. }
  7593. ],
  7594. "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.",
  7595. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7596. "time": "2017-11-27T11:13:29+00:00"
  7597. },
  7598. {
  7599. "name": "vinkla/hashids",
  7600. "version": "3.3.0",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/vinkla/laravel-hashids.git",
  7604. "reference": "052ee165751cb4dfcd2801d234e9e5835a1c0d56"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/052ee165751cb4dfcd2801d234e9e5835a1c0d56",
  7609. "reference": "052ee165751cb4dfcd2801d234e9e5835a1c0d56",
  7610. "shasum": "",
  7611. "mirrors": [
  7612. {
  7613. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7614. "preferred": true
  7615. }
  7616. ]
  7617. },
  7618. "require": {
  7619. "graham-campbell/manager": "^3.0",
  7620. "hashids/hashids": "^2.0",
  7621. "illuminate/contracts": "5.5.*",
  7622. "illuminate/support": "5.5.*",
  7623. "php": "^7.0"
  7624. },
  7625. "require-dev": {
  7626. "graham-campbell/analyzer": "^1.1",
  7627. "graham-campbell/testbench": "^4.0",
  7628. "mockery/mockery": "dev-master#c90a17247147543081e4d00f46911e422b49e583",
  7629. "orchestra/testbench": "^3.5",
  7630. "phpunit/phpunit": "^6.3"
  7631. },
  7632. "type": "library",
  7633. "extra": {
  7634. "branch-alias": {
  7635. "dev-master": "3.3-dev"
  7636. },
  7637. "laravel": {
  7638. "providers": [
  7639. "Vinkla\\Hashids\\HashidsServiceProvider"
  7640. ],
  7641. "aliases": {
  7642. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7643. }
  7644. }
  7645. },
  7646. "autoload": {
  7647. "psr-4": {
  7648. "Vinkla\\Hashids\\": "src/"
  7649. }
  7650. },
  7651. "notification-url": "https://packagist.org/downloads/",
  7652. "license": [
  7653. "MIT"
  7654. ],
  7655. "authors": [
  7656. {
  7657. "name": "Vincent Klaiber",
  7658. "email": "hello@vinkla.com",
  7659. "homepage": "https://vinkla.com"
  7660. }
  7661. ],
  7662. "description": "A Hashids bridge for Laravel",
  7663. "keywords": [
  7664. "bitly",
  7665. "decrypt",
  7666. "encrypt",
  7667. "hash",
  7668. "hashid",
  7669. "hashids",
  7670. "ids",
  7671. "laravel",
  7672. "obfuscate",
  7673. "youtube"
  7674. ],
  7675. "time": "2017-09-02T21:55:08+00:00"
  7676. },
  7677. {
  7678. "name": "vlucas/phpdotenv",
  7679. "version": "v2.5.1",
  7680. "source": {
  7681. "type": "git",
  7682. "url": "https://github.com/vlucas/phpdotenv.git",
  7683. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e"
  7684. },
  7685. "dist": {
  7686. "type": "zip",
  7687. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  7688. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  7689. "shasum": "",
  7690. "mirrors": [
  7691. {
  7692. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7693. "preferred": true
  7694. }
  7695. ]
  7696. },
  7697. "require": {
  7698. "php": ">=5.3.9"
  7699. },
  7700. "require-dev": {
  7701. "phpunit/phpunit": "^4.8.35 || ^5.0"
  7702. },
  7703. "type": "library",
  7704. "extra": {
  7705. "branch-alias": {
  7706. "dev-master": "2.5-dev"
  7707. }
  7708. },
  7709. "autoload": {
  7710. "psr-4": {
  7711. "Dotenv\\": "src/"
  7712. }
  7713. },
  7714. "notification-url": "https://packagist.org/downloads/",
  7715. "license": [
  7716. "BSD-3-Clause"
  7717. ],
  7718. "authors": [
  7719. {
  7720. "name": "Vance Lucas",
  7721. "email": "vance@vancelucas.com",
  7722. "homepage": "http://www.vancelucas.com"
  7723. }
  7724. ],
  7725. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7726. "keywords": [
  7727. "dotenv",
  7728. "env",
  7729. "environment"
  7730. ],
  7731. "time": "2018-07-29T20:33:41+00:00"
  7732. },
  7733. {
  7734. "name": "webmozart/assert",
  7735. "version": "1.4.0",
  7736. "source": {
  7737. "type": "git",
  7738. "url": "https://github.com/webmozart/assert.git",
  7739. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  7740. },
  7741. "dist": {
  7742. "type": "zip",
  7743. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  7744. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  7745. "shasum": "",
  7746. "mirrors": [
  7747. {
  7748. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7749. "preferred": true
  7750. }
  7751. ]
  7752. },
  7753. "require": {
  7754. "php": "^5.3.3 || ^7.0",
  7755. "symfony/polyfill-ctype": "^1.8"
  7756. },
  7757. "require-dev": {
  7758. "phpunit/phpunit": "^4.6",
  7759. "sebastian/version": "^1.0.1"
  7760. },
  7761. "type": "library",
  7762. "extra": {
  7763. "branch-alias": {
  7764. "dev-master": "1.3-dev"
  7765. }
  7766. },
  7767. "autoload": {
  7768. "psr-4": {
  7769. "Webmozart\\Assert\\": "src/"
  7770. }
  7771. },
  7772. "notification-url": "https://packagist.org/downloads/",
  7773. "license": [
  7774. "MIT"
  7775. ],
  7776. "authors": [
  7777. {
  7778. "name": "Bernhard Schussek",
  7779. "email": "bschussek@gmail.com"
  7780. }
  7781. ],
  7782. "description": "Assertions to validate method input/output with nice error messages.",
  7783. "keywords": [
  7784. "assert",
  7785. "check",
  7786. "validate"
  7787. ],
  7788. "time": "2018-12-25T11:19:39+00:00"
  7789. },
  7790. {
  7791. "name": "wikimedia/composer-merge-plugin",
  7792. "version": "v1.4.1",
  7793. "source": {
  7794. "type": "git",
  7795. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  7796. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  7797. },
  7798. "dist": {
  7799. "type": "zip",
  7800. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  7801. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  7802. "shasum": "",
  7803. "mirrors": [
  7804. {
  7805. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7806. "preferred": true
  7807. }
  7808. ]
  7809. },
  7810. "require": {
  7811. "composer-plugin-api": "^1.0",
  7812. "php": ">=5.3.2"
  7813. },
  7814. "require-dev": {
  7815. "composer/composer": "~1.0.0",
  7816. "jakub-onderka/php-parallel-lint": "~0.8",
  7817. "phpunit/phpunit": "~4.8|~5.0",
  7818. "squizlabs/php_codesniffer": "~2.1.0"
  7819. },
  7820. "type": "composer-plugin",
  7821. "extra": {
  7822. "branch-alias": {
  7823. "dev-master": "1.3.x-dev"
  7824. },
  7825. "class": "Wikimedia\\Composer\\MergePlugin"
  7826. },
  7827. "autoload": {
  7828. "psr-4": {
  7829. "Wikimedia\\Composer\\": "src/"
  7830. }
  7831. },
  7832. "notification-url": "https://packagist.org/downloads/",
  7833. "license": [
  7834. "MIT"
  7835. ],
  7836. "authors": [
  7837. {
  7838. "name": "Bryan Davis",
  7839. "email": "bd808@wikimedia.org"
  7840. }
  7841. ],
  7842. "description": "Composer plugin to merge multiple composer.json files",
  7843. "time": "2017-04-25T02:31:25+00:00"
  7844. },
  7845. {
  7846. "name": "yansongda/pay",
  7847. "version": "v2.6.0",
  7848. "source": {
  7849. "type": "git",
  7850. "url": "https://github.com/yansongda/pay.git",
  7851. "reference": "7f69785bfec6e24be1cf331f0108af65c0f7748c"
  7852. },
  7853. "dist": {
  7854. "type": "zip",
  7855. "url": "https://api.github.com/repos/yansongda/pay/zipball/7f69785bfec6e24be1cf331f0108af65c0f7748c",
  7856. "reference": "7f69785bfec6e24be1cf331f0108af65c0f7748c",
  7857. "shasum": "",
  7858. "mirrors": [
  7859. {
  7860. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7861. "preferred": true
  7862. }
  7863. ]
  7864. },
  7865. "require": {
  7866. "ext-openssl": "*",
  7867. "ext-simplexml": "*",
  7868. "monolog/monolog": "^1.23",
  7869. "php": ">=7.0",
  7870. "symfony/event-dispatcher": "^3.0|^4.0",
  7871. "symfony/http-foundation": "^3.0|^4.0",
  7872. "yansongda/supports": "^1.8"
  7873. },
  7874. "require-dev": {
  7875. "mockery/mockery": "1.0.x-dev",
  7876. "phpunit/phpunit": "^6.2"
  7877. },
  7878. "type": "library",
  7879. "autoload": {
  7880. "psr-4": {
  7881. "Yansongda\\Pay\\": "src"
  7882. }
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "MIT"
  7887. ],
  7888. "authors": [
  7889. {
  7890. "name": "yansongda",
  7891. "email": "me@yansongda.cn"
  7892. }
  7893. ],
  7894. "description": "专注 Alipay 和 WeChat 的支付扩展包",
  7895. "keywords": [
  7896. "alipay",
  7897. "pay",
  7898. "wechat"
  7899. ],
  7900. "time": "2018-12-25T01:31:10+00:00"
  7901. },
  7902. {
  7903. "name": "yansongda/supports",
  7904. "version": "v1.8.5",
  7905. "source": {
  7906. "type": "git",
  7907. "url": "https://github.com/yansongda/supports.git",
  7908. "reference": "0360fd2a430fb838f116999330bd6055c17772a3"
  7909. },
  7910. "dist": {
  7911. "type": "zip",
  7912. "url": "https://api.github.com/repos/yansongda/supports/zipball/0360fd2a430fb838f116999330bd6055c17772a3",
  7913. "reference": "0360fd2a430fb838f116999330bd6055c17772a3",
  7914. "shasum": "",
  7915. "mirrors": [
  7916. {
  7917. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7918. "preferred": true
  7919. }
  7920. ]
  7921. },
  7922. "require": {
  7923. "guzzlehttp/guzzle": "^6.2",
  7924. "monolog/monolog": "^1.23",
  7925. "php": ">=5.5"
  7926. },
  7927. "type": "library",
  7928. "autoload": {
  7929. "psr-4": {
  7930. "Yansongda\\Supports\\": "src/"
  7931. }
  7932. },
  7933. "notification-url": "https://packagist.org/downloads/",
  7934. "license": [
  7935. "MIT"
  7936. ],
  7937. "authors": [
  7938. {
  7939. "name": "yansongda",
  7940. "email": "me@yansongda.cn"
  7941. }
  7942. ],
  7943. "description": "common components",
  7944. "keywords": [
  7945. "Guzzle",
  7946. "array",
  7947. "collection",
  7948. "config",
  7949. "http",
  7950. "support"
  7951. ],
  7952. "time": "2018-12-03T11:38:41+00:00"
  7953. },
  7954. {
  7955. "name": "zendframework/zend-diactoros",
  7956. "version": "1.8.6",
  7957. "source": {
  7958. "type": "git",
  7959. "url": "https://github.com/zendframework/zend-diactoros.git",
  7960. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  7961. },
  7962. "dist": {
  7963. "type": "zip",
  7964. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  7965. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  7966. "shasum": "",
  7967. "mirrors": [
  7968. {
  7969. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  7970. "preferred": true
  7971. }
  7972. ]
  7973. },
  7974. "require": {
  7975. "php": "^5.6 || ^7.0",
  7976. "psr/http-message": "^1.0"
  7977. },
  7978. "provide": {
  7979. "psr/http-message-implementation": "1.0"
  7980. },
  7981. "require-dev": {
  7982. "ext-dom": "*",
  7983. "ext-libxml": "*",
  7984. "php-http/psr7-integration-tests": "dev-master",
  7985. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  7986. "zendframework/zend-coding-standard": "~1.0"
  7987. },
  7988. "type": "library",
  7989. "extra": {
  7990. "branch-alias": {
  7991. "dev-master": "1.8.x-dev",
  7992. "dev-develop": "1.9.x-dev",
  7993. "dev-release-2.0": "2.0.x-dev"
  7994. }
  7995. },
  7996. "autoload": {
  7997. "files": [
  7998. "src/functions/create_uploaded_file.php",
  7999. "src/functions/marshal_headers_from_sapi.php",
  8000. "src/functions/marshal_method_from_sapi.php",
  8001. "src/functions/marshal_protocol_version_from_sapi.php",
  8002. "src/functions/marshal_uri_from_sapi.php",
  8003. "src/functions/normalize_server.php",
  8004. "src/functions/normalize_uploaded_files.php",
  8005. "src/functions/parse_cookie_header.php"
  8006. ],
  8007. "psr-4": {
  8008. "Zend\\Diactoros\\": "src/"
  8009. }
  8010. },
  8011. "notification-url": "https://packagist.org/downloads/",
  8012. "license": [
  8013. "BSD-2-Clause"
  8014. ],
  8015. "description": "PSR HTTP Message implementations",
  8016. "homepage": "https://github.com/zendframework/zend-diactoros",
  8017. "keywords": [
  8018. "http",
  8019. "psr",
  8020. "psr-7"
  8021. ],
  8022. "time": "2018-09-05T19:29:37+00:00"
  8023. }
  8024. ],
  8025. "packages-dev": [
  8026. {
  8027. "name": "barryvdh/laravel-debugbar",
  8028. "version": "v2.4.3",
  8029. "source": {
  8030. "type": "git",
  8031. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8032. "reference": "d7c88f08131f6404cb714f3f6cf0642f6afa3903"
  8033. },
  8034. "dist": {
  8035. "type": "zip",
  8036. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/d7c88f08131f6404cb714f3f6cf0642f6afa3903",
  8037. "reference": "d7c88f08131f6404cb714f3f6cf0642f6afa3903",
  8038. "shasum": "",
  8039. "mirrors": [
  8040. {
  8041. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8042. "preferred": true
  8043. }
  8044. ]
  8045. },
  8046. "require": {
  8047. "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
  8048. "maximebf/debugbar": "~1.13.0",
  8049. "php": ">=5.5.9",
  8050. "symfony/finder": "~2.7|~3.0"
  8051. },
  8052. "type": "library",
  8053. "autoload": {
  8054. "psr-4": {
  8055. "Barryvdh\\Debugbar\\": "src/"
  8056. },
  8057. "files": [
  8058. "src/helpers.php"
  8059. ]
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "MIT"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Barry vd. Heuvel",
  8068. "email": "barryvdh@gmail.com"
  8069. }
  8070. ],
  8071. "description": "PHP Debugbar integration for Laravel",
  8072. "keywords": [
  8073. "debug",
  8074. "debugbar",
  8075. "laravel",
  8076. "profiler",
  8077. "webprofiler"
  8078. ],
  8079. "time": "2017-07-21T11:56:48+00:00"
  8080. },
  8081. {
  8082. "name": "barryvdh/laravel-ide-helper",
  8083. "version": "v2.5.3",
  8084. "source": {
  8085. "type": "git",
  8086. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8087. "reference": "3d7f1240896a075aa23b13f82dfcbe165dadeef2"
  8088. },
  8089. "dist": {
  8090. "type": "zip",
  8091. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3d7f1240896a075aa23b13f82dfcbe165dadeef2",
  8092. "reference": "3d7f1240896a075aa23b13f82dfcbe165dadeef2",
  8093. "shasum": "",
  8094. "mirrors": [
  8095. {
  8096. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8097. "preferred": true
  8098. }
  8099. ]
  8100. },
  8101. "require": {
  8102. "barryvdh/reflection-docblock": "^2.0.6",
  8103. "composer/composer": "^1.6",
  8104. "illuminate/console": "^5.5,<5.8",
  8105. "illuminate/filesystem": "^5.5,<5.8",
  8106. "illuminate/support": "^5.5,<5.8",
  8107. "php": ">=7"
  8108. },
  8109. "require-dev": {
  8110. "doctrine/dbal": "~2.3",
  8111. "illuminate/config": "^5.1,<5.8",
  8112. "illuminate/view": "^5.1,<5.8",
  8113. "phpro/grumphp": "^0.14",
  8114. "phpunit/phpunit": "4.*",
  8115. "scrutinizer/ocular": "~1.1",
  8116. "squizlabs/php_codesniffer": "^3"
  8117. },
  8118. "suggest": {
  8119. "doctrine/dbal": "Load information from the database about models for phpdocs (~2.3)"
  8120. },
  8121. "type": "library",
  8122. "extra": {
  8123. "branch-alias": {
  8124. "dev-master": "2.5-dev"
  8125. },
  8126. "laravel": {
  8127. "providers": [
  8128. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8129. ]
  8130. }
  8131. },
  8132. "autoload": {
  8133. "psr-4": {
  8134. "Barryvdh\\LaravelIdeHelper\\": "src"
  8135. }
  8136. },
  8137. "notification-url": "https://packagist.org/downloads/",
  8138. "license": [
  8139. "MIT"
  8140. ],
  8141. "authors": [
  8142. {
  8143. "name": "Barry vd. Heuvel",
  8144. "email": "barryvdh@gmail.com"
  8145. }
  8146. ],
  8147. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8148. "keywords": [
  8149. "autocomplete",
  8150. "codeintel",
  8151. "helper",
  8152. "ide",
  8153. "laravel",
  8154. "netbeans",
  8155. "phpdoc",
  8156. "phpstorm",
  8157. "sublime"
  8158. ],
  8159. "time": "2018-12-19T12:12:05+00:00"
  8160. },
  8161. {
  8162. "name": "barryvdh/reflection-docblock",
  8163. "version": "v2.0.6",
  8164. "source": {
  8165. "type": "git",
  8166. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8167. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  8168. },
  8169. "dist": {
  8170. "type": "zip",
  8171. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8172. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8173. "shasum": "",
  8174. "mirrors": [
  8175. {
  8176. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8177. "preferred": true
  8178. }
  8179. ]
  8180. },
  8181. "require": {
  8182. "php": ">=5.3.3"
  8183. },
  8184. "require-dev": {
  8185. "phpunit/phpunit": "~4.0,<4.5"
  8186. },
  8187. "suggest": {
  8188. "dflydev/markdown": "~1.0",
  8189. "erusev/parsedown": "~1.0"
  8190. },
  8191. "type": "library",
  8192. "extra": {
  8193. "branch-alias": {
  8194. "dev-master": "2.0.x-dev"
  8195. }
  8196. },
  8197. "autoload": {
  8198. "psr-0": {
  8199. "Barryvdh": [
  8200. "src/"
  8201. ]
  8202. }
  8203. },
  8204. "notification-url": "https://packagist.org/downloads/",
  8205. "license": [
  8206. "MIT"
  8207. ],
  8208. "authors": [
  8209. {
  8210. "name": "Mike van Riel",
  8211. "email": "mike.vanriel@naenius.com"
  8212. }
  8213. ],
  8214. "time": "2018-12-13T10:34:14+00:00"
  8215. },
  8216. {
  8217. "name": "composer/ca-bundle",
  8218. "version": "1.1.3",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/composer/ca-bundle.git",
  8222. "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8afa52cd417f4ec417b4bfe86b68106538a87660",
  8227. "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660",
  8228. "shasum": "",
  8229. "mirrors": [
  8230. {
  8231. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8232. "preferred": true
  8233. }
  8234. ]
  8235. },
  8236. "require": {
  8237. "ext-openssl": "*",
  8238. "ext-pcre": "*",
  8239. "php": "^5.3.2 || ^7.0"
  8240. },
  8241. "require-dev": {
  8242. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  8243. "psr/log": "^1.0",
  8244. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  8245. },
  8246. "type": "library",
  8247. "extra": {
  8248. "branch-alias": {
  8249. "dev-master": "1.x-dev"
  8250. }
  8251. },
  8252. "autoload": {
  8253. "psr-4": {
  8254. "Composer\\CaBundle\\": "src"
  8255. }
  8256. },
  8257. "notification-url": "https://packagist.org/downloads/",
  8258. "license": [
  8259. "MIT"
  8260. ],
  8261. "authors": [
  8262. {
  8263. "name": "Jordi Boggiano",
  8264. "email": "j.boggiano@seld.be",
  8265. "homepage": "http://seld.be"
  8266. }
  8267. ],
  8268. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  8269. "keywords": [
  8270. "cabundle",
  8271. "cacert",
  8272. "certificate",
  8273. "ssl",
  8274. "tls"
  8275. ],
  8276. "time": "2018-10-18T06:09:13+00:00"
  8277. },
  8278. {
  8279. "name": "composer/composer",
  8280. "version": "1.8.0",
  8281. "source": {
  8282. "type": "git",
  8283. "url": "https://github.com/composer/composer.git",
  8284. "reference": "d8aef3af866b28786ce9b8647e52c42496436669"
  8285. },
  8286. "dist": {
  8287. "type": "zip",
  8288. "url": "https://api.github.com/repos/composer/composer/zipball/d8aef3af866b28786ce9b8647e52c42496436669",
  8289. "reference": "d8aef3af866b28786ce9b8647e52c42496436669",
  8290. "shasum": "",
  8291. "mirrors": [
  8292. {
  8293. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8294. "preferred": true
  8295. }
  8296. ]
  8297. },
  8298. "require": {
  8299. "composer/ca-bundle": "^1.0",
  8300. "composer/semver": "^1.0",
  8301. "composer/spdx-licenses": "^1.2",
  8302. "composer/xdebug-handler": "^1.1",
  8303. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  8304. "php": "^5.3.2 || ^7.0",
  8305. "psr/log": "^1.0",
  8306. "seld/jsonlint": "^1.4",
  8307. "seld/phar-utils": "^1.0",
  8308. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  8309. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  8310. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  8311. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  8312. },
  8313. "conflict": {
  8314. "symfony/console": "2.8.38"
  8315. },
  8316. "require-dev": {
  8317. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8318. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  8319. },
  8320. "suggest": {
  8321. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8322. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8323. "ext-zlib": "Allow gzip compression of HTTP requests"
  8324. },
  8325. "bin": [
  8326. "bin/composer"
  8327. ],
  8328. "type": "library",
  8329. "extra": {
  8330. "branch-alias": {
  8331. "dev-master": "1.8-dev"
  8332. }
  8333. },
  8334. "autoload": {
  8335. "psr-4": {
  8336. "Composer\\": "src/Composer"
  8337. }
  8338. },
  8339. "notification-url": "https://packagist.org/downloads/",
  8340. "license": [
  8341. "MIT"
  8342. ],
  8343. "authors": [
  8344. {
  8345. "name": "Nils Adermann",
  8346. "email": "naderman@naderman.de",
  8347. "homepage": "http://www.naderman.de"
  8348. },
  8349. {
  8350. "name": "Jordi Boggiano",
  8351. "email": "j.boggiano@seld.be",
  8352. "homepage": "http://seld.be"
  8353. }
  8354. ],
  8355. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  8356. "homepage": "https://getcomposer.org/",
  8357. "keywords": [
  8358. "autoload",
  8359. "dependency",
  8360. "package"
  8361. ],
  8362. "time": "2018-12-03T09:31:16+00:00"
  8363. },
  8364. {
  8365. "name": "composer/semver",
  8366. "version": "1.4.2",
  8367. "source": {
  8368. "type": "git",
  8369. "url": "https://github.com/composer/semver.git",
  8370. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  8371. },
  8372. "dist": {
  8373. "type": "zip",
  8374. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  8375. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  8376. "shasum": "",
  8377. "mirrors": [
  8378. {
  8379. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8380. "preferred": true
  8381. }
  8382. ]
  8383. },
  8384. "require": {
  8385. "php": "^5.3.2 || ^7.0"
  8386. },
  8387. "require-dev": {
  8388. "phpunit/phpunit": "^4.5 || ^5.0.5",
  8389. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  8390. },
  8391. "type": "library",
  8392. "extra": {
  8393. "branch-alias": {
  8394. "dev-master": "1.x-dev"
  8395. }
  8396. },
  8397. "autoload": {
  8398. "psr-4": {
  8399. "Composer\\Semver\\": "src"
  8400. }
  8401. },
  8402. "notification-url": "https://packagist.org/downloads/",
  8403. "license": [
  8404. "MIT"
  8405. ],
  8406. "authors": [
  8407. {
  8408. "name": "Nils Adermann",
  8409. "email": "naderman@naderman.de",
  8410. "homepage": "http://www.naderman.de"
  8411. },
  8412. {
  8413. "name": "Jordi Boggiano",
  8414. "email": "j.boggiano@seld.be",
  8415. "homepage": "http://seld.be"
  8416. },
  8417. {
  8418. "name": "Rob Bast",
  8419. "email": "rob.bast@gmail.com",
  8420. "homepage": "http://robbast.nl"
  8421. }
  8422. ],
  8423. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8424. "keywords": [
  8425. "semantic",
  8426. "semver",
  8427. "validation",
  8428. "versioning"
  8429. ],
  8430. "time": "2016-08-30T16:08:34+00:00"
  8431. },
  8432. {
  8433. "name": "composer/spdx-licenses",
  8434. "version": "1.5.0",
  8435. "source": {
  8436. "type": "git",
  8437. "url": "https://github.com/composer/spdx-licenses.git",
  8438. "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2"
  8439. },
  8440. "dist": {
  8441. "type": "zip",
  8442. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
  8443. "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
  8444. "shasum": "",
  8445. "mirrors": [
  8446. {
  8447. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8448. "preferred": true
  8449. }
  8450. ]
  8451. },
  8452. "require": {
  8453. "php": "^5.3.2 || ^7.0"
  8454. },
  8455. "require-dev": {
  8456. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  8457. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  8458. },
  8459. "type": "library",
  8460. "extra": {
  8461. "branch-alias": {
  8462. "dev-master": "1.x-dev"
  8463. }
  8464. },
  8465. "autoload": {
  8466. "psr-4": {
  8467. "Composer\\Spdx\\": "src"
  8468. }
  8469. },
  8470. "notification-url": "https://packagist.org/downloads/",
  8471. "license": [
  8472. "MIT"
  8473. ],
  8474. "authors": [
  8475. {
  8476. "name": "Nils Adermann",
  8477. "email": "naderman@naderman.de",
  8478. "homepage": "http://www.naderman.de"
  8479. },
  8480. {
  8481. "name": "Jordi Boggiano",
  8482. "email": "j.boggiano@seld.be",
  8483. "homepage": "http://seld.be"
  8484. },
  8485. {
  8486. "name": "Rob Bast",
  8487. "email": "rob.bast@gmail.com",
  8488. "homepage": "http://robbast.nl"
  8489. }
  8490. ],
  8491. "description": "SPDX licenses list and validation library.",
  8492. "keywords": [
  8493. "license",
  8494. "spdx",
  8495. "validator"
  8496. ],
  8497. "time": "2018-11-01T09:45:54+00:00"
  8498. },
  8499. {
  8500. "name": "composer/xdebug-handler",
  8501. "version": "1.3.1",
  8502. "source": {
  8503. "type": "git",
  8504. "url": "https://github.com/composer/xdebug-handler.git",
  8505. "reference": "dc523135366eb68f22268d069ea7749486458562"
  8506. },
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/dc523135366eb68f22268d069ea7749486458562",
  8510. "reference": "dc523135366eb68f22268d069ea7749486458562",
  8511. "shasum": "",
  8512. "mirrors": [
  8513. {
  8514. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8515. "preferred": true
  8516. }
  8517. ]
  8518. },
  8519. "require": {
  8520. "php": "^5.3.2 || ^7.0",
  8521. "psr/log": "^1.0"
  8522. },
  8523. "require-dev": {
  8524. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  8525. },
  8526. "type": "library",
  8527. "autoload": {
  8528. "psr-4": {
  8529. "Composer\\XdebugHandler\\": "src"
  8530. }
  8531. },
  8532. "notification-url": "https://packagist.org/downloads/",
  8533. "license": [
  8534. "MIT"
  8535. ],
  8536. "authors": [
  8537. {
  8538. "name": "John Stevenson",
  8539. "email": "john-stevenson@blueyonder.co.uk"
  8540. }
  8541. ],
  8542. "description": "Restarts a process without xdebug.",
  8543. "keywords": [
  8544. "Xdebug",
  8545. "performance"
  8546. ],
  8547. "time": "2018-11-29T10:59:02+00:00"
  8548. },
  8549. {
  8550. "name": "doctrine/instantiator",
  8551. "version": "1.1.0",
  8552. "source": {
  8553. "type": "git",
  8554. "url": "https://github.com/doctrine/instantiator.git",
  8555. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  8556. },
  8557. "dist": {
  8558. "type": "zip",
  8559. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  8560. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  8561. "shasum": "",
  8562. "mirrors": [
  8563. {
  8564. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8565. "preferred": true
  8566. }
  8567. ]
  8568. },
  8569. "require": {
  8570. "php": "^7.1"
  8571. },
  8572. "require-dev": {
  8573. "athletic/athletic": "~0.1.8",
  8574. "ext-pdo": "*",
  8575. "ext-phar": "*",
  8576. "phpunit/phpunit": "^6.2.3",
  8577. "squizlabs/php_codesniffer": "^3.0.2"
  8578. },
  8579. "type": "library",
  8580. "extra": {
  8581. "branch-alias": {
  8582. "dev-master": "1.2.x-dev"
  8583. }
  8584. },
  8585. "autoload": {
  8586. "psr-4": {
  8587. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8588. }
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "authors": [
  8595. {
  8596. "name": "Marco Pivetta",
  8597. "email": "ocramius@gmail.com",
  8598. "homepage": "http://ocramius.github.com/"
  8599. }
  8600. ],
  8601. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8602. "homepage": "https://github.com/doctrine/instantiator",
  8603. "keywords": [
  8604. "constructor",
  8605. "instantiate"
  8606. ],
  8607. "time": "2017-07-22T11:58:36+00:00"
  8608. },
  8609. {
  8610. "name": "filp/whoops",
  8611. "version": "2.3.1",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/filp/whoops.git",
  8615. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  8620. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  8621. "shasum": "",
  8622. "mirrors": [
  8623. {
  8624. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8625. "preferred": true
  8626. }
  8627. ]
  8628. },
  8629. "require": {
  8630. "php": "^5.5.9 || ^7.0",
  8631. "psr/log": "^1.0.1"
  8632. },
  8633. "require-dev": {
  8634. "mockery/mockery": "^0.9 || ^1.0",
  8635. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8636. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  8637. },
  8638. "suggest": {
  8639. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8640. "whoops/soap": "Formats errors as SOAP responses"
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-master": "2.2-dev"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "psr-4": {
  8650. "Whoops\\": "src/Whoops/"
  8651. }
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "MIT"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Filipe Dobreira",
  8660. "homepage": "https://github.com/filp",
  8661. "role": "Developer"
  8662. }
  8663. ],
  8664. "description": "php error handling for cool kids",
  8665. "homepage": "https://filp.github.io/whoops/",
  8666. "keywords": [
  8667. "error",
  8668. "exception",
  8669. "handling",
  8670. "library",
  8671. "throwable",
  8672. "whoops"
  8673. ],
  8674. "time": "2018-10-23T09:00:00+00:00"
  8675. },
  8676. {
  8677. "name": "fzaninotto/faker",
  8678. "version": "v1.8.0",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/fzaninotto/Faker.git",
  8682. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  8687. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  8688. "shasum": "",
  8689. "mirrors": [
  8690. {
  8691. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8692. "preferred": true
  8693. }
  8694. ]
  8695. },
  8696. "require": {
  8697. "php": "^5.3.3 || ^7.0"
  8698. },
  8699. "require-dev": {
  8700. "ext-intl": "*",
  8701. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8702. "squizlabs/php_codesniffer": "^1.5"
  8703. },
  8704. "type": "library",
  8705. "extra": {
  8706. "branch-alias": {
  8707. "dev-master": "1.8-dev"
  8708. }
  8709. },
  8710. "autoload": {
  8711. "psr-4": {
  8712. "Faker\\": "src/Faker/"
  8713. }
  8714. },
  8715. "notification-url": "https://packagist.org/downloads/",
  8716. "license": [
  8717. "MIT"
  8718. ],
  8719. "authors": [
  8720. {
  8721. "name": "François Zaninotto"
  8722. }
  8723. ],
  8724. "description": "Faker is a PHP library that generates fake data for you.",
  8725. "keywords": [
  8726. "data",
  8727. "faker",
  8728. "fixtures"
  8729. ],
  8730. "time": "2018-07-12T10:23:15+00:00"
  8731. },
  8732. {
  8733. "name": "hamcrest/hamcrest-php",
  8734. "version": "v2.0.0",
  8735. "source": {
  8736. "type": "git",
  8737. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8738. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  8739. },
  8740. "dist": {
  8741. "type": "zip",
  8742. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  8743. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  8744. "shasum": "",
  8745. "mirrors": [
  8746. {
  8747. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8748. "preferred": true
  8749. }
  8750. ]
  8751. },
  8752. "require": {
  8753. "php": "^5.3|^7.0"
  8754. },
  8755. "replace": {
  8756. "cordoval/hamcrest-php": "*",
  8757. "davedevelopment/hamcrest-php": "*",
  8758. "kodova/hamcrest-php": "*"
  8759. },
  8760. "require-dev": {
  8761. "phpunit/php-file-iterator": "1.3.3",
  8762. "phpunit/phpunit": "~4.0",
  8763. "satooshi/php-coveralls": "^1.0"
  8764. },
  8765. "type": "library",
  8766. "extra": {
  8767. "branch-alias": {
  8768. "dev-master": "2.0-dev"
  8769. }
  8770. },
  8771. "autoload": {
  8772. "classmap": [
  8773. "hamcrest"
  8774. ]
  8775. },
  8776. "notification-url": "https://packagist.org/downloads/",
  8777. "license": [
  8778. "BSD"
  8779. ],
  8780. "description": "This is the PHP port of Hamcrest Matchers",
  8781. "keywords": [
  8782. "test"
  8783. ],
  8784. "time": "2016-01-20T08:20:44+00:00"
  8785. },
  8786. {
  8787. "name": "justinrainbow/json-schema",
  8788. "version": "5.2.7",
  8789. "source": {
  8790. "type": "git",
  8791. "url": "https://github.com/justinrainbow/json-schema.git",
  8792. "reference": "8560d4314577199ba51bf2032f02cd1315587c23"
  8793. },
  8794. "dist": {
  8795. "type": "zip",
  8796. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/8560d4314577199ba51bf2032f02cd1315587c23",
  8797. "reference": "8560d4314577199ba51bf2032f02cd1315587c23",
  8798. "shasum": "",
  8799. "mirrors": [
  8800. {
  8801. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8802. "preferred": true
  8803. }
  8804. ]
  8805. },
  8806. "require": {
  8807. "php": ">=5.3.3"
  8808. },
  8809. "require-dev": {
  8810. "friendsofphp/php-cs-fixer": "^2.1",
  8811. "json-schema/json-schema-test-suite": "1.2.0",
  8812. "phpunit/phpunit": "^4.8.35"
  8813. },
  8814. "bin": [
  8815. "bin/validate-json"
  8816. ],
  8817. "type": "library",
  8818. "extra": {
  8819. "branch-alias": {
  8820. "dev-master": "5.0.x-dev"
  8821. }
  8822. },
  8823. "autoload": {
  8824. "psr-4": {
  8825. "JsonSchema\\": "src/JsonSchema/"
  8826. }
  8827. },
  8828. "notification-url": "https://packagist.org/downloads/",
  8829. "license": [
  8830. "MIT"
  8831. ],
  8832. "authors": [
  8833. {
  8834. "name": "Bruno Prieto Reis",
  8835. "email": "bruno.p.reis@gmail.com"
  8836. },
  8837. {
  8838. "name": "Justin Rainbow",
  8839. "email": "justin.rainbow@gmail.com"
  8840. },
  8841. {
  8842. "name": "Igor Wiedler",
  8843. "email": "igor@wiedler.ch"
  8844. },
  8845. {
  8846. "name": "Robert Schönthal",
  8847. "email": "seroscho@googlemail.com"
  8848. }
  8849. ],
  8850. "description": "A library to validate a json schema.",
  8851. "homepage": "https://github.com/justinrainbow/json-schema",
  8852. "keywords": [
  8853. "json",
  8854. "schema"
  8855. ],
  8856. "time": "2018-02-14T22:26:30+00:00"
  8857. },
  8858. {
  8859. "name": "maximebf/debugbar",
  8860. "version": "1.13.1",
  8861. "source": {
  8862. "type": "git",
  8863. "url": "https://github.com/maximebf/php-debugbar.git",
  8864. "reference": "afee79a236348e39a44cb837106b7c5b4897ac2a"
  8865. },
  8866. "dist": {
  8867. "type": "zip",
  8868. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/afee79a236348e39a44cb837106b7c5b4897ac2a",
  8869. "reference": "afee79a236348e39a44cb837106b7c5b4897ac2a",
  8870. "shasum": "",
  8871. "mirrors": [
  8872. {
  8873. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8874. "preferred": true
  8875. }
  8876. ]
  8877. },
  8878. "require": {
  8879. "php": ">=5.3.0",
  8880. "psr/log": "^1.0",
  8881. "symfony/var-dumper": "^2.6|^3.0"
  8882. },
  8883. "require-dev": {
  8884. "phpunit/phpunit": "^4.0|^5.0"
  8885. },
  8886. "suggest": {
  8887. "kriswallsmith/assetic": "The best way to manage assets",
  8888. "monolog/monolog": "Log using Monolog",
  8889. "predis/predis": "Redis storage"
  8890. },
  8891. "type": "library",
  8892. "extra": {
  8893. "branch-alias": {
  8894. "dev-master": "1.13-dev"
  8895. }
  8896. },
  8897. "autoload": {
  8898. "psr-4": {
  8899. "DebugBar\\": "src/DebugBar/"
  8900. }
  8901. },
  8902. "notification-url": "https://packagist.org/downloads/",
  8903. "license": [
  8904. "MIT"
  8905. ],
  8906. "authors": [
  8907. {
  8908. "name": "Maxime Bouroumeau-Fuseau",
  8909. "email": "maxime.bouroumeau@gmail.com",
  8910. "homepage": "http://maximebf.com"
  8911. },
  8912. {
  8913. "name": "Barry vd. Heuvel",
  8914. "email": "barryvdh@gmail.com"
  8915. }
  8916. ],
  8917. "description": "Debug bar in the browser for php application",
  8918. "homepage": "https://github.com/maximebf/php-debugbar",
  8919. "keywords": [
  8920. "debug",
  8921. "debugbar"
  8922. ],
  8923. "time": "2017-01-05T08:46:19+00:00"
  8924. },
  8925. {
  8926. "name": "mockery/mockery",
  8927. "version": "1.2.0",
  8928. "source": {
  8929. "type": "git",
  8930. "url": "https://github.com/mockery/mockery.git",
  8931. "reference": "100633629bf76d57430b86b7098cd6beb996a35a"
  8932. },
  8933. "dist": {
  8934. "type": "zip",
  8935. "url": "https://api.github.com/repos/mockery/mockery/zipball/100633629bf76d57430b86b7098cd6beb996a35a",
  8936. "reference": "100633629bf76d57430b86b7098cd6beb996a35a",
  8937. "shasum": "",
  8938. "mirrors": [
  8939. {
  8940. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  8941. "preferred": true
  8942. }
  8943. ]
  8944. },
  8945. "require": {
  8946. "hamcrest/hamcrest-php": "~2.0",
  8947. "lib-pcre": ">=7.0",
  8948. "php": ">=5.6.0"
  8949. },
  8950. "require-dev": {
  8951. "phpunit/phpunit": "~5.7.10|~6.5|~7.0"
  8952. },
  8953. "type": "library",
  8954. "extra": {
  8955. "branch-alias": {
  8956. "dev-master": "1.0.x-dev"
  8957. }
  8958. },
  8959. "autoload": {
  8960. "psr-0": {
  8961. "Mockery": "library/"
  8962. }
  8963. },
  8964. "notification-url": "https://packagist.org/downloads/",
  8965. "license": [
  8966. "BSD-3-Clause"
  8967. ],
  8968. "authors": [
  8969. {
  8970. "name": "Pádraic Brady",
  8971. "email": "padraic.brady@gmail.com",
  8972. "homepage": "http://blog.astrumfutura.com"
  8973. },
  8974. {
  8975. "name": "Dave Marshall",
  8976. "email": "dave.marshall@atstsolutions.co.uk",
  8977. "homepage": "http://davedevelopment.co.uk"
  8978. }
  8979. ],
  8980. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8981. "homepage": "https://github.com/mockery/mockery",
  8982. "keywords": [
  8983. "BDD",
  8984. "TDD",
  8985. "library",
  8986. "mock",
  8987. "mock objects",
  8988. "mockery",
  8989. "stub",
  8990. "test",
  8991. "test double",
  8992. "testing"
  8993. ],
  8994. "time": "2018-10-02T21:52:37+00:00"
  8995. },
  8996. {
  8997. "name": "myclabs/deep-copy",
  8998. "version": "1.8.1",
  8999. "source": {
  9000. "type": "git",
  9001. "url": "https://github.com/myclabs/DeepCopy.git",
  9002. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  9003. },
  9004. "dist": {
  9005. "type": "zip",
  9006. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  9007. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  9008. "shasum": "",
  9009. "mirrors": [
  9010. {
  9011. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9012. "preferred": true
  9013. }
  9014. ]
  9015. },
  9016. "require": {
  9017. "php": "^7.1"
  9018. },
  9019. "replace": {
  9020. "myclabs/deep-copy": "self.version"
  9021. },
  9022. "require-dev": {
  9023. "doctrine/collections": "^1.0",
  9024. "doctrine/common": "^2.6",
  9025. "phpunit/phpunit": "^7.1"
  9026. },
  9027. "type": "library",
  9028. "autoload": {
  9029. "psr-4": {
  9030. "DeepCopy\\": "src/DeepCopy/"
  9031. },
  9032. "files": [
  9033. "src/DeepCopy/deep_copy.php"
  9034. ]
  9035. },
  9036. "notification-url": "https://packagist.org/downloads/",
  9037. "license": [
  9038. "MIT"
  9039. ],
  9040. "description": "Create deep copies (clones) of your objects",
  9041. "keywords": [
  9042. "clone",
  9043. "copy",
  9044. "duplicate",
  9045. "object",
  9046. "object graph"
  9047. ],
  9048. "time": "2018-06-11T23:09:50+00:00"
  9049. },
  9050. {
  9051. "name": "orchestra/database",
  9052. "version": "v3.5.3",
  9053. "source": {
  9054. "type": "git",
  9055. "url": "https://github.com/orchestral/database.git",
  9056. "reference": "abcfcd827c0b1196cd200315390720e52a4a2a7b"
  9057. },
  9058. "dist": {
  9059. "type": "zip",
  9060. "url": "https://api.github.com/repos/orchestral/database/zipball/abcfcd827c0b1196cd200315390720e52a4a2a7b",
  9061. "reference": "abcfcd827c0b1196cd200315390720e52a4a2a7b",
  9062. "shasum": "",
  9063. "mirrors": [
  9064. {
  9065. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9066. "preferred": true
  9067. }
  9068. ]
  9069. },
  9070. "require": {
  9071. "illuminate/contracts": "~5.5.0",
  9072. "illuminate/database": "~5.5.0",
  9073. "php": ">=7.0"
  9074. },
  9075. "type": "library",
  9076. "extra": {
  9077. "branch-alias": {
  9078. "dev-master": "3.5-dev"
  9079. }
  9080. },
  9081. "autoload": {
  9082. "psr-4": {
  9083. "Orchestra\\Database\\": ""
  9084. }
  9085. },
  9086. "notification-url": "https://packagist.org/downloads/",
  9087. "license": [
  9088. "MIT"
  9089. ],
  9090. "authors": [
  9091. {
  9092. "name": "Mior Muhammad Zaki",
  9093. "email": "crynobone@gmail.com",
  9094. "homepage": "https://github.com/crynobone"
  9095. },
  9096. {
  9097. "name": "Taylor Otwell",
  9098. "email": "taylorotwell@gmail.com",
  9099. "homepage": "https://github.com/taylorotwell"
  9100. }
  9101. ],
  9102. "description": "Database Component for Orchestra Platform",
  9103. "keywords": [
  9104. "database",
  9105. "orchestra-platform",
  9106. "orchestral"
  9107. ],
  9108. "time": "2017-11-03T02:33:29+00:00"
  9109. },
  9110. {
  9111. "name": "orchestra/testbench",
  9112. "version": "v3.5.5",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/orchestral/testbench.git",
  9116. "reference": "fd032489df469d611a264083e62db96677c9061e"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/orchestral/testbench/zipball/fd032489df469d611a264083e62db96677c9061e",
  9121. "reference": "fd032489df469d611a264083e62db96677c9061e",
  9122. "shasum": "",
  9123. "mirrors": [
  9124. {
  9125. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9126. "preferred": true
  9127. }
  9128. ]
  9129. },
  9130. "require": {
  9131. "laravel/framework": "~5.5.34",
  9132. "orchestra/testbench-core": "~3.5.9",
  9133. "php": ">=7.0",
  9134. "phpunit/phpunit": "~6.0"
  9135. },
  9136. "require-dev": {
  9137. "mockery/mockery": "~1.0",
  9138. "orchestra/database": "~3.5.0"
  9139. },
  9140. "suggest": {
  9141. "orchestra/testbench-browser-kit": "Allow to use legacy BrowserKit for testing (~3.5)."
  9142. },
  9143. "type": "library",
  9144. "extra": {
  9145. "branch-alias": {
  9146. "dev-master": "3.5-dev"
  9147. }
  9148. },
  9149. "notification-url": "https://packagist.org/downloads/",
  9150. "license": [
  9151. "MIT"
  9152. ],
  9153. "authors": [
  9154. {
  9155. "name": "Mior Muhammad Zaki",
  9156. "email": "crynobone@gmail.com",
  9157. "homepage": "https://github.com/crynobone"
  9158. }
  9159. ],
  9160. "description": "Laravel Testing Helper for Packages Development",
  9161. "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/",
  9162. "keywords": [
  9163. "BDD",
  9164. "TDD",
  9165. "laravel",
  9166. "orchestra-platform",
  9167. "orchestral",
  9168. "testing"
  9169. ],
  9170. "time": "2018-02-20T05:30:39+00:00"
  9171. },
  9172. {
  9173. "name": "orchestra/testbench-core",
  9174. "version": "v3.5.10",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/orchestral/testbench-core.git",
  9178. "reference": "09a57dc446a24fd19a75ff57b679b86094251f8e"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/09a57dc446a24fd19a75ff57b679b86094251f8e",
  9183. "reference": "09a57dc446a24fd19a75ff57b679b86094251f8e",
  9184. "shasum": "",
  9185. "mirrors": [
  9186. {
  9187. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9188. "preferred": true
  9189. }
  9190. ]
  9191. },
  9192. "require": {
  9193. "fzaninotto/faker": "~1.4",
  9194. "php": ">=7.0"
  9195. },
  9196. "require-dev": {
  9197. "laravel/framework": "~5.5.0",
  9198. "mockery/mockery": "~1.0",
  9199. "orchestra/database": "~3.5.0",
  9200. "phpunit/phpunit": "~6.0"
  9201. },
  9202. "suggest": {
  9203. "laravel/framework": "Required for testing (~5.5.0).",
  9204. "mockery/mockery": "Allow to use Mockery for testing (~1.0).",
  9205. "orchestra/database": "Allow to use --realpath migration for testing (~3.5).",
  9206. "orchestra/testbench-browser-kit": "Allow to use legacy BrowserKit for testing (~3.5).",
  9207. "orchestra/testbench-dusk": "Allow to use Laravel Dusk for testing (~3.5).",
  9208. "phpunit/phpunit": "Allow to use PHPUnit for testing (~6.0)."
  9209. },
  9210. "type": "library",
  9211. "extra": {
  9212. "branch-alias": {
  9213. "dev-master": "3.5-dev"
  9214. }
  9215. },
  9216. "autoload": {
  9217. "psr-4": {
  9218. "Orchestra\\Testbench\\": "src/"
  9219. }
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "MIT"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Mior Muhammad Zaki",
  9228. "email": "crynobone@gmail.com",
  9229. "homepage": "https://github.com/crynobone"
  9230. }
  9231. ],
  9232. "description": "Testing Helper for Laravel Development",
  9233. "homepage": "http://orchestraplatform.com/docs/latest/components/testbench/",
  9234. "keywords": [
  9235. "BDD",
  9236. "TDD",
  9237. "laravel",
  9238. "orchestra-platform",
  9239. "orchestral",
  9240. "testing"
  9241. ],
  9242. "time": "2018-03-13T02:35:58+00:00"
  9243. },
  9244. {
  9245. "name": "phar-io/manifest",
  9246. "version": "1.0.1",
  9247. "source": {
  9248. "type": "git",
  9249. "url": "https://github.com/phar-io/manifest.git",
  9250. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  9251. },
  9252. "dist": {
  9253. "type": "zip",
  9254. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  9255. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  9256. "shasum": "",
  9257. "mirrors": [
  9258. {
  9259. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9260. "preferred": true
  9261. }
  9262. ]
  9263. },
  9264. "require": {
  9265. "ext-dom": "*",
  9266. "ext-phar": "*",
  9267. "phar-io/version": "^1.0.1",
  9268. "php": "^5.6 || ^7.0"
  9269. },
  9270. "type": "library",
  9271. "extra": {
  9272. "branch-alias": {
  9273. "dev-master": "1.0.x-dev"
  9274. }
  9275. },
  9276. "autoload": {
  9277. "classmap": [
  9278. "src/"
  9279. ]
  9280. },
  9281. "notification-url": "https://packagist.org/downloads/",
  9282. "license": [
  9283. "BSD-3-Clause"
  9284. ],
  9285. "authors": [
  9286. {
  9287. "name": "Arne Blankerts",
  9288. "email": "arne@blankerts.de",
  9289. "role": "Developer"
  9290. },
  9291. {
  9292. "name": "Sebastian Heuer",
  9293. "email": "sebastian@phpeople.de",
  9294. "role": "Developer"
  9295. },
  9296. {
  9297. "name": "Sebastian Bergmann",
  9298. "email": "sebastian@phpunit.de",
  9299. "role": "Developer"
  9300. }
  9301. ],
  9302. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9303. "time": "2017-03-05T18:14:27+00:00"
  9304. },
  9305. {
  9306. "name": "phar-io/version",
  9307. "version": "1.0.1",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/phar-io/version.git",
  9311. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  9316. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  9317. "shasum": "",
  9318. "mirrors": [
  9319. {
  9320. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9321. "preferred": true
  9322. }
  9323. ]
  9324. },
  9325. "require": {
  9326. "php": "^5.6 || ^7.0"
  9327. },
  9328. "type": "library",
  9329. "autoload": {
  9330. "classmap": [
  9331. "src/"
  9332. ]
  9333. },
  9334. "notification-url": "https://packagist.org/downloads/",
  9335. "license": [
  9336. "BSD-3-Clause"
  9337. ],
  9338. "authors": [
  9339. {
  9340. "name": "Arne Blankerts",
  9341. "email": "arne@blankerts.de",
  9342. "role": "Developer"
  9343. },
  9344. {
  9345. "name": "Sebastian Heuer",
  9346. "email": "sebastian@phpeople.de",
  9347. "role": "Developer"
  9348. },
  9349. {
  9350. "name": "Sebastian Bergmann",
  9351. "email": "sebastian@phpunit.de",
  9352. "role": "Developer"
  9353. }
  9354. ],
  9355. "description": "Library for handling version information and constraints",
  9356. "time": "2017-03-05T17:38:23+00:00"
  9357. },
  9358. {
  9359. "name": "phpspec/prophecy",
  9360. "version": "1.8.0",
  9361. "source": {
  9362. "type": "git",
  9363. "url": "https://github.com/phpspec/prophecy.git",
  9364. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  9365. },
  9366. "dist": {
  9367. "type": "zip",
  9368. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9369. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9370. "shasum": "",
  9371. "mirrors": [
  9372. {
  9373. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9374. "preferred": true
  9375. }
  9376. ]
  9377. },
  9378. "require": {
  9379. "doctrine/instantiator": "^1.0.2",
  9380. "php": "^5.3|^7.0",
  9381. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  9382. "sebastian/comparator": "^1.1|^2.0|^3.0",
  9383. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  9384. },
  9385. "require-dev": {
  9386. "phpspec/phpspec": "^2.5|^3.2",
  9387. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  9388. },
  9389. "type": "library",
  9390. "extra": {
  9391. "branch-alias": {
  9392. "dev-master": "1.8.x-dev"
  9393. }
  9394. },
  9395. "autoload": {
  9396. "psr-0": {
  9397. "Prophecy\\": "src/"
  9398. }
  9399. },
  9400. "notification-url": "https://packagist.org/downloads/",
  9401. "license": [
  9402. "MIT"
  9403. ],
  9404. "authors": [
  9405. {
  9406. "name": "Konstantin Kudryashov",
  9407. "email": "ever.zet@gmail.com",
  9408. "homepage": "http://everzet.com"
  9409. },
  9410. {
  9411. "name": "Marcello Duarte",
  9412. "email": "marcello.duarte@gmail.com"
  9413. }
  9414. ],
  9415. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9416. "homepage": "https://github.com/phpspec/prophecy",
  9417. "keywords": [
  9418. "Double",
  9419. "Dummy",
  9420. "fake",
  9421. "mock",
  9422. "spy",
  9423. "stub"
  9424. ],
  9425. "time": "2018-08-05T17:53:17+00:00"
  9426. },
  9427. {
  9428. "name": "phpunit/php-code-coverage",
  9429. "version": "5.3.2",
  9430. "source": {
  9431. "type": "git",
  9432. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9433. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  9434. },
  9435. "dist": {
  9436. "type": "zip",
  9437. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  9438. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  9439. "shasum": "",
  9440. "mirrors": [
  9441. {
  9442. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9443. "preferred": true
  9444. }
  9445. ]
  9446. },
  9447. "require": {
  9448. "ext-dom": "*",
  9449. "ext-xmlwriter": "*",
  9450. "php": "^7.0",
  9451. "phpunit/php-file-iterator": "^1.4.2",
  9452. "phpunit/php-text-template": "^1.2.1",
  9453. "phpunit/php-token-stream": "^2.0.1",
  9454. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9455. "sebastian/environment": "^3.0",
  9456. "sebastian/version": "^2.0.1",
  9457. "theseer/tokenizer": "^1.1"
  9458. },
  9459. "require-dev": {
  9460. "phpunit/phpunit": "^6.0"
  9461. },
  9462. "suggest": {
  9463. "ext-xdebug": "^2.5.5"
  9464. },
  9465. "type": "library",
  9466. "extra": {
  9467. "branch-alias": {
  9468. "dev-master": "5.3.x-dev"
  9469. }
  9470. },
  9471. "autoload": {
  9472. "classmap": [
  9473. "src/"
  9474. ]
  9475. },
  9476. "notification-url": "https://packagist.org/downloads/",
  9477. "license": [
  9478. "BSD-3-Clause"
  9479. ],
  9480. "authors": [
  9481. {
  9482. "name": "Sebastian Bergmann",
  9483. "email": "sebastian@phpunit.de",
  9484. "role": "lead"
  9485. }
  9486. ],
  9487. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9488. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9489. "keywords": [
  9490. "coverage",
  9491. "testing",
  9492. "xunit"
  9493. ],
  9494. "time": "2018-04-06T15:36:58+00:00"
  9495. },
  9496. {
  9497. "name": "phpunit/php-file-iterator",
  9498. "version": "1.4.5",
  9499. "source": {
  9500. "type": "git",
  9501. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9502. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  9503. },
  9504. "dist": {
  9505. "type": "zip",
  9506. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  9507. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  9508. "shasum": "",
  9509. "mirrors": [
  9510. {
  9511. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9512. "preferred": true
  9513. }
  9514. ]
  9515. },
  9516. "require": {
  9517. "php": ">=5.3.3"
  9518. },
  9519. "type": "library",
  9520. "extra": {
  9521. "branch-alias": {
  9522. "dev-master": "1.4.x-dev"
  9523. }
  9524. },
  9525. "autoload": {
  9526. "classmap": [
  9527. "src/"
  9528. ]
  9529. },
  9530. "notification-url": "https://packagist.org/downloads/",
  9531. "license": [
  9532. "BSD-3-Clause"
  9533. ],
  9534. "authors": [
  9535. {
  9536. "name": "Sebastian Bergmann",
  9537. "email": "sb@sebastian-bergmann.de",
  9538. "role": "lead"
  9539. }
  9540. ],
  9541. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9542. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9543. "keywords": [
  9544. "filesystem",
  9545. "iterator"
  9546. ],
  9547. "time": "2017-11-27T13:52:08+00:00"
  9548. },
  9549. {
  9550. "name": "phpunit/php-text-template",
  9551. "version": "1.2.1",
  9552. "source": {
  9553. "type": "git",
  9554. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9555. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9556. },
  9557. "dist": {
  9558. "type": "zip",
  9559. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9560. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9561. "shasum": "",
  9562. "mirrors": [
  9563. {
  9564. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9565. "preferred": true
  9566. }
  9567. ]
  9568. },
  9569. "require": {
  9570. "php": ">=5.3.3"
  9571. },
  9572. "type": "library",
  9573. "autoload": {
  9574. "classmap": [
  9575. "src/"
  9576. ]
  9577. },
  9578. "notification-url": "https://packagist.org/downloads/",
  9579. "license": [
  9580. "BSD-3-Clause"
  9581. ],
  9582. "authors": [
  9583. {
  9584. "name": "Sebastian Bergmann",
  9585. "email": "sebastian@phpunit.de",
  9586. "role": "lead"
  9587. }
  9588. ],
  9589. "description": "Simple template engine.",
  9590. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9591. "keywords": [
  9592. "template"
  9593. ],
  9594. "time": "2015-06-21T13:50:34+00:00"
  9595. },
  9596. {
  9597. "name": "phpunit/php-timer",
  9598. "version": "1.0.9",
  9599. "source": {
  9600. "type": "git",
  9601. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9602. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  9603. },
  9604. "dist": {
  9605. "type": "zip",
  9606. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  9607. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  9608. "shasum": "",
  9609. "mirrors": [
  9610. {
  9611. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9612. "preferred": true
  9613. }
  9614. ]
  9615. },
  9616. "require": {
  9617. "php": "^5.3.3 || ^7.0"
  9618. },
  9619. "require-dev": {
  9620. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  9621. },
  9622. "type": "library",
  9623. "extra": {
  9624. "branch-alias": {
  9625. "dev-master": "1.0-dev"
  9626. }
  9627. },
  9628. "autoload": {
  9629. "classmap": [
  9630. "src/"
  9631. ]
  9632. },
  9633. "notification-url": "https://packagist.org/downloads/",
  9634. "license": [
  9635. "BSD-3-Clause"
  9636. ],
  9637. "authors": [
  9638. {
  9639. "name": "Sebastian Bergmann",
  9640. "email": "sb@sebastian-bergmann.de",
  9641. "role": "lead"
  9642. }
  9643. ],
  9644. "description": "Utility class for timing",
  9645. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9646. "keywords": [
  9647. "timer"
  9648. ],
  9649. "time": "2017-02-26T11:10:40+00:00"
  9650. },
  9651. {
  9652. "name": "phpunit/php-token-stream",
  9653. "version": "2.0.2",
  9654. "source": {
  9655. "type": "git",
  9656. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9657. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  9658. },
  9659. "dist": {
  9660. "type": "zip",
  9661. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  9662. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  9663. "shasum": "",
  9664. "mirrors": [
  9665. {
  9666. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9667. "preferred": true
  9668. }
  9669. ]
  9670. },
  9671. "require": {
  9672. "ext-tokenizer": "*",
  9673. "php": "^7.0"
  9674. },
  9675. "require-dev": {
  9676. "phpunit/phpunit": "^6.2.4"
  9677. },
  9678. "type": "library",
  9679. "extra": {
  9680. "branch-alias": {
  9681. "dev-master": "2.0-dev"
  9682. }
  9683. },
  9684. "autoload": {
  9685. "classmap": [
  9686. "src/"
  9687. ]
  9688. },
  9689. "notification-url": "https://packagist.org/downloads/",
  9690. "license": [
  9691. "BSD-3-Clause"
  9692. ],
  9693. "authors": [
  9694. {
  9695. "name": "Sebastian Bergmann",
  9696. "email": "sebastian@phpunit.de"
  9697. }
  9698. ],
  9699. "description": "Wrapper around PHP's tokenizer extension.",
  9700. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9701. "keywords": [
  9702. "tokenizer"
  9703. ],
  9704. "time": "2017-11-27T05:48:46+00:00"
  9705. },
  9706. {
  9707. "name": "phpunit/phpunit",
  9708. "version": "6.5.13",
  9709. "source": {
  9710. "type": "git",
  9711. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9712. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  9713. },
  9714. "dist": {
  9715. "type": "zip",
  9716. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  9717. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  9718. "shasum": "",
  9719. "mirrors": [
  9720. {
  9721. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9722. "preferred": true
  9723. }
  9724. ]
  9725. },
  9726. "require": {
  9727. "ext-dom": "*",
  9728. "ext-json": "*",
  9729. "ext-libxml": "*",
  9730. "ext-mbstring": "*",
  9731. "ext-xml": "*",
  9732. "myclabs/deep-copy": "^1.6.1",
  9733. "phar-io/manifest": "^1.0.1",
  9734. "phar-io/version": "^1.0",
  9735. "php": "^7.0",
  9736. "phpspec/prophecy": "^1.7",
  9737. "phpunit/php-code-coverage": "^5.3",
  9738. "phpunit/php-file-iterator": "^1.4.3",
  9739. "phpunit/php-text-template": "^1.2.1",
  9740. "phpunit/php-timer": "^1.0.9",
  9741. "phpunit/phpunit-mock-objects": "^5.0.9",
  9742. "sebastian/comparator": "^2.1",
  9743. "sebastian/diff": "^2.0",
  9744. "sebastian/environment": "^3.1",
  9745. "sebastian/exporter": "^3.1",
  9746. "sebastian/global-state": "^2.0",
  9747. "sebastian/object-enumerator": "^3.0.3",
  9748. "sebastian/resource-operations": "^1.0",
  9749. "sebastian/version": "^2.0.1"
  9750. },
  9751. "conflict": {
  9752. "phpdocumentor/reflection-docblock": "3.0.2",
  9753. "phpunit/dbunit": "<3.0"
  9754. },
  9755. "require-dev": {
  9756. "ext-pdo": "*"
  9757. },
  9758. "suggest": {
  9759. "ext-xdebug": "*",
  9760. "phpunit/php-invoker": "^1.1"
  9761. },
  9762. "bin": [
  9763. "phpunit"
  9764. ],
  9765. "type": "library",
  9766. "extra": {
  9767. "branch-alias": {
  9768. "dev-master": "6.5.x-dev"
  9769. }
  9770. },
  9771. "autoload": {
  9772. "classmap": [
  9773. "src/"
  9774. ]
  9775. },
  9776. "notification-url": "https://packagist.org/downloads/",
  9777. "license": [
  9778. "BSD-3-Clause"
  9779. ],
  9780. "authors": [
  9781. {
  9782. "name": "Sebastian Bergmann",
  9783. "email": "sebastian@phpunit.de",
  9784. "role": "lead"
  9785. }
  9786. ],
  9787. "description": "The PHP Unit Testing framework.",
  9788. "homepage": "https://phpunit.de/",
  9789. "keywords": [
  9790. "phpunit",
  9791. "testing",
  9792. "xunit"
  9793. ],
  9794. "time": "2018-09-08T15:10:43+00:00"
  9795. },
  9796. {
  9797. "name": "phpunit/phpunit-mock-objects",
  9798. "version": "5.0.10",
  9799. "source": {
  9800. "type": "git",
  9801. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  9802. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  9803. },
  9804. "dist": {
  9805. "type": "zip",
  9806. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  9807. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  9808. "shasum": "",
  9809. "mirrors": [
  9810. {
  9811. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9812. "preferred": true
  9813. }
  9814. ]
  9815. },
  9816. "require": {
  9817. "doctrine/instantiator": "^1.0.5",
  9818. "php": "^7.0",
  9819. "phpunit/php-text-template": "^1.2.1",
  9820. "sebastian/exporter": "^3.1"
  9821. },
  9822. "conflict": {
  9823. "phpunit/phpunit": "<6.0"
  9824. },
  9825. "require-dev": {
  9826. "phpunit/phpunit": "^6.5.11"
  9827. },
  9828. "suggest": {
  9829. "ext-soap": "*"
  9830. },
  9831. "type": "library",
  9832. "extra": {
  9833. "branch-alias": {
  9834. "dev-master": "5.0.x-dev"
  9835. }
  9836. },
  9837. "autoload": {
  9838. "classmap": [
  9839. "src/"
  9840. ]
  9841. },
  9842. "notification-url": "https://packagist.org/downloads/",
  9843. "license": [
  9844. "BSD-3-Clause"
  9845. ],
  9846. "authors": [
  9847. {
  9848. "name": "Sebastian Bergmann",
  9849. "email": "sebastian@phpunit.de",
  9850. "role": "lead"
  9851. }
  9852. ],
  9853. "description": "Mock Object library for PHPUnit",
  9854. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  9855. "keywords": [
  9856. "mock",
  9857. "xunit"
  9858. ],
  9859. "time": "2018-08-09T05:50:03+00:00"
  9860. },
  9861. {
  9862. "name": "sebastian/code-unit-reverse-lookup",
  9863. "version": "1.0.1",
  9864. "source": {
  9865. "type": "git",
  9866. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9867. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  9868. },
  9869. "dist": {
  9870. "type": "zip",
  9871. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9872. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9873. "shasum": "",
  9874. "mirrors": [
  9875. {
  9876. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9877. "preferred": true
  9878. }
  9879. ]
  9880. },
  9881. "require": {
  9882. "php": "^5.6 || ^7.0"
  9883. },
  9884. "require-dev": {
  9885. "phpunit/phpunit": "^5.7 || ^6.0"
  9886. },
  9887. "type": "library",
  9888. "extra": {
  9889. "branch-alias": {
  9890. "dev-master": "1.0.x-dev"
  9891. }
  9892. },
  9893. "autoload": {
  9894. "classmap": [
  9895. "src/"
  9896. ]
  9897. },
  9898. "notification-url": "https://packagist.org/downloads/",
  9899. "license": [
  9900. "BSD-3-Clause"
  9901. ],
  9902. "authors": [
  9903. {
  9904. "name": "Sebastian Bergmann",
  9905. "email": "sebastian@phpunit.de"
  9906. }
  9907. ],
  9908. "description": "Looks up which function or method a line of code belongs to",
  9909. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9910. "time": "2017-03-04T06:30:41+00:00"
  9911. },
  9912. {
  9913. "name": "sebastian/comparator",
  9914. "version": "2.1.3",
  9915. "source": {
  9916. "type": "git",
  9917. "url": "https://github.com/sebastianbergmann/comparator.git",
  9918. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  9919. },
  9920. "dist": {
  9921. "type": "zip",
  9922. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  9923. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  9924. "shasum": "",
  9925. "mirrors": [
  9926. {
  9927. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9928. "preferred": true
  9929. }
  9930. ]
  9931. },
  9932. "require": {
  9933. "php": "^7.0",
  9934. "sebastian/diff": "^2.0 || ^3.0",
  9935. "sebastian/exporter": "^3.1"
  9936. },
  9937. "require-dev": {
  9938. "phpunit/phpunit": "^6.4"
  9939. },
  9940. "type": "library",
  9941. "extra": {
  9942. "branch-alias": {
  9943. "dev-master": "2.1.x-dev"
  9944. }
  9945. },
  9946. "autoload": {
  9947. "classmap": [
  9948. "src/"
  9949. ]
  9950. },
  9951. "notification-url": "https://packagist.org/downloads/",
  9952. "license": [
  9953. "BSD-3-Clause"
  9954. ],
  9955. "authors": [
  9956. {
  9957. "name": "Jeff Welch",
  9958. "email": "whatthejeff@gmail.com"
  9959. },
  9960. {
  9961. "name": "Volker Dusch",
  9962. "email": "github@wallbash.com"
  9963. },
  9964. {
  9965. "name": "Bernhard Schussek",
  9966. "email": "bschussek@2bepublished.at"
  9967. },
  9968. {
  9969. "name": "Sebastian Bergmann",
  9970. "email": "sebastian@phpunit.de"
  9971. }
  9972. ],
  9973. "description": "Provides the functionality to compare PHP values for equality",
  9974. "homepage": "https://github.com/sebastianbergmann/comparator",
  9975. "keywords": [
  9976. "comparator",
  9977. "compare",
  9978. "equality"
  9979. ],
  9980. "time": "2018-02-01T13:46:46+00:00"
  9981. },
  9982. {
  9983. "name": "sebastian/diff",
  9984. "version": "2.0.1",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/sebastianbergmann/diff.git",
  9988. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  9993. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  9994. "shasum": "",
  9995. "mirrors": [
  9996. {
  9997. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  9998. "preferred": true
  9999. }
  10000. ]
  10001. },
  10002. "require": {
  10003. "php": "^7.0"
  10004. },
  10005. "require-dev": {
  10006. "phpunit/phpunit": "^6.2"
  10007. },
  10008. "type": "library",
  10009. "extra": {
  10010. "branch-alias": {
  10011. "dev-master": "2.0-dev"
  10012. }
  10013. },
  10014. "autoload": {
  10015. "classmap": [
  10016. "src/"
  10017. ]
  10018. },
  10019. "notification-url": "https://packagist.org/downloads/",
  10020. "license": [
  10021. "BSD-3-Clause"
  10022. ],
  10023. "authors": [
  10024. {
  10025. "name": "Kore Nordmann",
  10026. "email": "mail@kore-nordmann.de"
  10027. },
  10028. {
  10029. "name": "Sebastian Bergmann",
  10030. "email": "sebastian@phpunit.de"
  10031. }
  10032. ],
  10033. "description": "Diff implementation",
  10034. "homepage": "https://github.com/sebastianbergmann/diff",
  10035. "keywords": [
  10036. "diff"
  10037. ],
  10038. "time": "2017-08-03T08:09:46+00:00"
  10039. },
  10040. {
  10041. "name": "sebastian/environment",
  10042. "version": "3.1.0",
  10043. "source": {
  10044. "type": "git",
  10045. "url": "https://github.com/sebastianbergmann/environment.git",
  10046. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  10047. },
  10048. "dist": {
  10049. "type": "zip",
  10050. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10051. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10052. "shasum": "",
  10053. "mirrors": [
  10054. {
  10055. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10056. "preferred": true
  10057. }
  10058. ]
  10059. },
  10060. "require": {
  10061. "php": "^7.0"
  10062. },
  10063. "require-dev": {
  10064. "phpunit/phpunit": "^6.1"
  10065. },
  10066. "type": "library",
  10067. "extra": {
  10068. "branch-alias": {
  10069. "dev-master": "3.1.x-dev"
  10070. }
  10071. },
  10072. "autoload": {
  10073. "classmap": [
  10074. "src/"
  10075. ]
  10076. },
  10077. "notification-url": "https://packagist.org/downloads/",
  10078. "license": [
  10079. "BSD-3-Clause"
  10080. ],
  10081. "authors": [
  10082. {
  10083. "name": "Sebastian Bergmann",
  10084. "email": "sebastian@phpunit.de"
  10085. }
  10086. ],
  10087. "description": "Provides functionality to handle HHVM/PHP environments",
  10088. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10089. "keywords": [
  10090. "Xdebug",
  10091. "environment",
  10092. "hhvm"
  10093. ],
  10094. "time": "2017-07-01T08:51:00+00:00"
  10095. },
  10096. {
  10097. "name": "sebastian/exporter",
  10098. "version": "3.1.0",
  10099. "source": {
  10100. "type": "git",
  10101. "url": "https://github.com/sebastianbergmann/exporter.git",
  10102. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  10103. },
  10104. "dist": {
  10105. "type": "zip",
  10106. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  10107. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  10108. "shasum": "",
  10109. "mirrors": [
  10110. {
  10111. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10112. "preferred": true
  10113. }
  10114. ]
  10115. },
  10116. "require": {
  10117. "php": "^7.0",
  10118. "sebastian/recursion-context": "^3.0"
  10119. },
  10120. "require-dev": {
  10121. "ext-mbstring": "*",
  10122. "phpunit/phpunit": "^6.0"
  10123. },
  10124. "type": "library",
  10125. "extra": {
  10126. "branch-alias": {
  10127. "dev-master": "3.1.x-dev"
  10128. }
  10129. },
  10130. "autoload": {
  10131. "classmap": [
  10132. "src/"
  10133. ]
  10134. },
  10135. "notification-url": "https://packagist.org/downloads/",
  10136. "license": [
  10137. "BSD-3-Clause"
  10138. ],
  10139. "authors": [
  10140. {
  10141. "name": "Jeff Welch",
  10142. "email": "whatthejeff@gmail.com"
  10143. },
  10144. {
  10145. "name": "Volker Dusch",
  10146. "email": "github@wallbash.com"
  10147. },
  10148. {
  10149. "name": "Bernhard Schussek",
  10150. "email": "bschussek@2bepublished.at"
  10151. },
  10152. {
  10153. "name": "Sebastian Bergmann",
  10154. "email": "sebastian@phpunit.de"
  10155. },
  10156. {
  10157. "name": "Adam Harvey",
  10158. "email": "aharvey@php.net"
  10159. }
  10160. ],
  10161. "description": "Provides the functionality to export PHP variables for visualization",
  10162. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10163. "keywords": [
  10164. "export",
  10165. "exporter"
  10166. ],
  10167. "time": "2017-04-03T13:19:02+00:00"
  10168. },
  10169. {
  10170. "name": "sebastian/global-state",
  10171. "version": "2.0.0",
  10172. "source": {
  10173. "type": "git",
  10174. "url": "https://github.com/sebastianbergmann/global-state.git",
  10175. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  10176. },
  10177. "dist": {
  10178. "type": "zip",
  10179. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  10180. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  10181. "shasum": "",
  10182. "mirrors": [
  10183. {
  10184. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10185. "preferred": true
  10186. }
  10187. ]
  10188. },
  10189. "require": {
  10190. "php": "^7.0"
  10191. },
  10192. "require-dev": {
  10193. "phpunit/phpunit": "^6.0"
  10194. },
  10195. "suggest": {
  10196. "ext-uopz": "*"
  10197. },
  10198. "type": "library",
  10199. "extra": {
  10200. "branch-alias": {
  10201. "dev-master": "2.0-dev"
  10202. }
  10203. },
  10204. "autoload": {
  10205. "classmap": [
  10206. "src/"
  10207. ]
  10208. },
  10209. "notification-url": "https://packagist.org/downloads/",
  10210. "license": [
  10211. "BSD-3-Clause"
  10212. ],
  10213. "authors": [
  10214. {
  10215. "name": "Sebastian Bergmann",
  10216. "email": "sebastian@phpunit.de"
  10217. }
  10218. ],
  10219. "description": "Snapshotting of global state",
  10220. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10221. "keywords": [
  10222. "global state"
  10223. ],
  10224. "time": "2017-04-27T15:39:26+00:00"
  10225. },
  10226. {
  10227. "name": "sebastian/object-enumerator",
  10228. "version": "3.0.3",
  10229. "source": {
  10230. "type": "git",
  10231. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10232. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  10233. },
  10234. "dist": {
  10235. "type": "zip",
  10236. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10237. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10238. "shasum": "",
  10239. "mirrors": [
  10240. {
  10241. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10242. "preferred": true
  10243. }
  10244. ]
  10245. },
  10246. "require": {
  10247. "php": "^7.0",
  10248. "sebastian/object-reflector": "^1.1.1",
  10249. "sebastian/recursion-context": "^3.0"
  10250. },
  10251. "require-dev": {
  10252. "phpunit/phpunit": "^6.0"
  10253. },
  10254. "type": "library",
  10255. "extra": {
  10256. "branch-alias": {
  10257. "dev-master": "3.0.x-dev"
  10258. }
  10259. },
  10260. "autoload": {
  10261. "classmap": [
  10262. "src/"
  10263. ]
  10264. },
  10265. "notification-url": "https://packagist.org/downloads/",
  10266. "license": [
  10267. "BSD-3-Clause"
  10268. ],
  10269. "authors": [
  10270. {
  10271. "name": "Sebastian Bergmann",
  10272. "email": "sebastian@phpunit.de"
  10273. }
  10274. ],
  10275. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10276. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10277. "time": "2017-08-03T12:35:26+00:00"
  10278. },
  10279. {
  10280. "name": "sebastian/object-reflector",
  10281. "version": "1.1.1",
  10282. "source": {
  10283. "type": "git",
  10284. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10285. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  10286. },
  10287. "dist": {
  10288. "type": "zip",
  10289. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  10290. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  10291. "shasum": "",
  10292. "mirrors": [
  10293. {
  10294. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10295. "preferred": true
  10296. }
  10297. ]
  10298. },
  10299. "require": {
  10300. "php": "^7.0"
  10301. },
  10302. "require-dev": {
  10303. "phpunit/phpunit": "^6.0"
  10304. },
  10305. "type": "library",
  10306. "extra": {
  10307. "branch-alias": {
  10308. "dev-master": "1.1-dev"
  10309. }
  10310. },
  10311. "autoload": {
  10312. "classmap": [
  10313. "src/"
  10314. ]
  10315. },
  10316. "notification-url": "https://packagist.org/downloads/",
  10317. "license": [
  10318. "BSD-3-Clause"
  10319. ],
  10320. "authors": [
  10321. {
  10322. "name": "Sebastian Bergmann",
  10323. "email": "sebastian@phpunit.de"
  10324. }
  10325. ],
  10326. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10327. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10328. "time": "2017-03-29T09:07:27+00:00"
  10329. },
  10330. {
  10331. "name": "sebastian/recursion-context",
  10332. "version": "3.0.0",
  10333. "source": {
  10334. "type": "git",
  10335. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10336. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  10337. },
  10338. "dist": {
  10339. "type": "zip",
  10340. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10341. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10342. "shasum": "",
  10343. "mirrors": [
  10344. {
  10345. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10346. "preferred": true
  10347. }
  10348. ]
  10349. },
  10350. "require": {
  10351. "php": "^7.0"
  10352. },
  10353. "require-dev": {
  10354. "phpunit/phpunit": "^6.0"
  10355. },
  10356. "type": "library",
  10357. "extra": {
  10358. "branch-alias": {
  10359. "dev-master": "3.0.x-dev"
  10360. }
  10361. },
  10362. "autoload": {
  10363. "classmap": [
  10364. "src/"
  10365. ]
  10366. },
  10367. "notification-url": "https://packagist.org/downloads/",
  10368. "license": [
  10369. "BSD-3-Clause"
  10370. ],
  10371. "authors": [
  10372. {
  10373. "name": "Jeff Welch",
  10374. "email": "whatthejeff@gmail.com"
  10375. },
  10376. {
  10377. "name": "Sebastian Bergmann",
  10378. "email": "sebastian@phpunit.de"
  10379. },
  10380. {
  10381. "name": "Adam Harvey",
  10382. "email": "aharvey@php.net"
  10383. }
  10384. ],
  10385. "description": "Provides functionality to recursively process PHP variables",
  10386. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10387. "time": "2017-03-03T06:23:57+00:00"
  10388. },
  10389. {
  10390. "name": "sebastian/resource-operations",
  10391. "version": "1.0.0",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10395. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10400. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10401. "shasum": "",
  10402. "mirrors": [
  10403. {
  10404. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10405. "preferred": true
  10406. }
  10407. ]
  10408. },
  10409. "require": {
  10410. "php": ">=5.6.0"
  10411. },
  10412. "type": "library",
  10413. "extra": {
  10414. "branch-alias": {
  10415. "dev-master": "1.0.x-dev"
  10416. }
  10417. },
  10418. "autoload": {
  10419. "classmap": [
  10420. "src/"
  10421. ]
  10422. },
  10423. "notification-url": "https://packagist.org/downloads/",
  10424. "license": [
  10425. "BSD-3-Clause"
  10426. ],
  10427. "authors": [
  10428. {
  10429. "name": "Sebastian Bergmann",
  10430. "email": "sebastian@phpunit.de"
  10431. }
  10432. ],
  10433. "description": "Provides a list of PHP built-in functions that operate on resources",
  10434. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10435. "time": "2015-07-28T20:34:47+00:00"
  10436. },
  10437. {
  10438. "name": "sebastian/version",
  10439. "version": "2.0.1",
  10440. "source": {
  10441. "type": "git",
  10442. "url": "https://github.com/sebastianbergmann/version.git",
  10443. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10444. },
  10445. "dist": {
  10446. "type": "zip",
  10447. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10448. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10449. "shasum": "",
  10450. "mirrors": [
  10451. {
  10452. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10453. "preferred": true
  10454. }
  10455. ]
  10456. },
  10457. "require": {
  10458. "php": ">=5.6"
  10459. },
  10460. "type": "library",
  10461. "extra": {
  10462. "branch-alias": {
  10463. "dev-master": "2.0.x-dev"
  10464. }
  10465. },
  10466. "autoload": {
  10467. "classmap": [
  10468. "src/"
  10469. ]
  10470. },
  10471. "notification-url": "https://packagist.org/downloads/",
  10472. "license": [
  10473. "BSD-3-Clause"
  10474. ],
  10475. "authors": [
  10476. {
  10477. "name": "Sebastian Bergmann",
  10478. "email": "sebastian@phpunit.de",
  10479. "role": "lead"
  10480. }
  10481. ],
  10482. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10483. "homepage": "https://github.com/sebastianbergmann/version",
  10484. "time": "2016-10-03T07:35:21+00:00"
  10485. },
  10486. {
  10487. "name": "seld/jsonlint",
  10488. "version": "1.7.1",
  10489. "source": {
  10490. "type": "git",
  10491. "url": "https://github.com/Seldaek/jsonlint.git",
  10492. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  10493. },
  10494. "dist": {
  10495. "type": "zip",
  10496. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  10497. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  10498. "shasum": "",
  10499. "mirrors": [
  10500. {
  10501. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10502. "preferred": true
  10503. }
  10504. ]
  10505. },
  10506. "require": {
  10507. "php": "^5.3 || ^7.0"
  10508. },
  10509. "require-dev": {
  10510. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10511. },
  10512. "bin": [
  10513. "bin/jsonlint"
  10514. ],
  10515. "type": "library",
  10516. "autoload": {
  10517. "psr-4": {
  10518. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10519. }
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "MIT"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "Jordi Boggiano",
  10528. "email": "j.boggiano@seld.be",
  10529. "homepage": "http://seld.be"
  10530. }
  10531. ],
  10532. "description": "JSON Linter",
  10533. "keywords": [
  10534. "json",
  10535. "linter",
  10536. "parser",
  10537. "validator"
  10538. ],
  10539. "time": "2018-01-24T12:46:19+00:00"
  10540. },
  10541. {
  10542. "name": "seld/phar-utils",
  10543. "version": "1.0.1",
  10544. "source": {
  10545. "type": "git",
  10546. "url": "https://github.com/Seldaek/phar-utils.git",
  10547. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  10548. },
  10549. "dist": {
  10550. "type": "zip",
  10551. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  10552. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  10553. "shasum": "",
  10554. "mirrors": [
  10555. {
  10556. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10557. "preferred": true
  10558. }
  10559. ]
  10560. },
  10561. "require": {
  10562. "php": ">=5.3"
  10563. },
  10564. "type": "library",
  10565. "extra": {
  10566. "branch-alias": {
  10567. "dev-master": "1.x-dev"
  10568. }
  10569. },
  10570. "autoload": {
  10571. "psr-4": {
  10572. "Seld\\PharUtils\\": "src/"
  10573. }
  10574. },
  10575. "notification-url": "https://packagist.org/downloads/",
  10576. "license": [
  10577. "MIT"
  10578. ],
  10579. "authors": [
  10580. {
  10581. "name": "Jordi Boggiano",
  10582. "email": "j.boggiano@seld.be"
  10583. }
  10584. ],
  10585. "description": "PHAR file format utilities, for when PHP phars you up",
  10586. "keywords": [
  10587. "phra"
  10588. ],
  10589. "time": "2015-10-13T18:44:15+00:00"
  10590. },
  10591. {
  10592. "name": "symfony/filesystem",
  10593. "version": "v4.2.1",
  10594. "source": {
  10595. "type": "git",
  10596. "url": "https://github.com/symfony/filesystem.git",
  10597. "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710"
  10598. },
  10599. "dist": {
  10600. "type": "zip",
  10601. "url": "https://api.github.com/repos/symfony/filesystem/zipball/2f4c8b999b3b7cadb2a69390b01af70886753710",
  10602. "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710",
  10603. "shasum": "",
  10604. "mirrors": [
  10605. {
  10606. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10607. "preferred": true
  10608. }
  10609. ]
  10610. },
  10611. "require": {
  10612. "php": "^7.1.3",
  10613. "symfony/polyfill-ctype": "~1.8"
  10614. },
  10615. "type": "library",
  10616. "extra": {
  10617. "branch-alias": {
  10618. "dev-master": "4.2-dev"
  10619. }
  10620. },
  10621. "autoload": {
  10622. "psr-4": {
  10623. "Symfony\\Component\\Filesystem\\": ""
  10624. },
  10625. "exclude-from-classmap": [
  10626. "/Tests/"
  10627. ]
  10628. },
  10629. "notification-url": "https://packagist.org/downloads/",
  10630. "license": [
  10631. "MIT"
  10632. ],
  10633. "authors": [
  10634. {
  10635. "name": "Fabien Potencier",
  10636. "email": "fabien@symfony.com"
  10637. },
  10638. {
  10639. "name": "Symfony Community",
  10640. "homepage": "https://symfony.com/contributors"
  10641. }
  10642. ],
  10643. "description": "Symfony Filesystem Component",
  10644. "homepage": "https://symfony.com",
  10645. "time": "2018-11-11T19:52:12+00:00"
  10646. },
  10647. {
  10648. "name": "symfony/thanks",
  10649. "version": "v1.1.0",
  10650. "source": {
  10651. "type": "git",
  10652. "url": "https://github.com/symfony/thanks.git",
  10653. "reference": "9474a631b52737c623b6aeba22f00bbc003251da"
  10654. },
  10655. "dist": {
  10656. "type": "zip",
  10657. "url": "https://api.github.com/repos/symfony/thanks/zipball/9474a631b52737c623b6aeba22f00bbc003251da",
  10658. "reference": "9474a631b52737c623b6aeba22f00bbc003251da",
  10659. "shasum": "",
  10660. "mirrors": [
  10661. {
  10662. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10663. "preferred": true
  10664. }
  10665. ]
  10666. },
  10667. "require": {
  10668. "composer-plugin-api": "^1.0",
  10669. "php": "^5.5.9|^7.0.0"
  10670. },
  10671. "type": "composer-plugin",
  10672. "extra": {
  10673. "branch-alias": {
  10674. "dev-master": "1.0-dev"
  10675. },
  10676. "class": "Symfony\\Thanks\\Thanks"
  10677. },
  10678. "autoload": {
  10679. "psr-4": {
  10680. "Symfony\\Thanks\\": "src"
  10681. }
  10682. },
  10683. "notification-url": "https://packagist.org/downloads/",
  10684. "license": [
  10685. "MIT"
  10686. ],
  10687. "authors": [
  10688. {
  10689. "name": "Nicolas Grekas",
  10690. "email": "p@tchwork.com"
  10691. }
  10692. ],
  10693. "description": "Give thanks (in the form of a GitHub ⭐) to your fellow PHP package maintainers (not limited to Symfony components)!",
  10694. "time": "2018-08-24T14:08:13+00:00"
  10695. },
  10696. {
  10697. "name": "theseer/tokenizer",
  10698. "version": "1.1.0",
  10699. "source": {
  10700. "type": "git",
  10701. "url": "https://github.com/theseer/tokenizer.git",
  10702. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  10703. },
  10704. "dist": {
  10705. "type": "zip",
  10706. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  10707. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  10708. "shasum": "",
  10709. "mirrors": [
  10710. {
  10711. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  10712. "preferred": true
  10713. }
  10714. ]
  10715. },
  10716. "require": {
  10717. "ext-dom": "*",
  10718. "ext-tokenizer": "*",
  10719. "ext-xmlwriter": "*",
  10720. "php": "^7.0"
  10721. },
  10722. "type": "library",
  10723. "autoload": {
  10724. "classmap": [
  10725. "src/"
  10726. ]
  10727. },
  10728. "notification-url": "https://packagist.org/downloads/",
  10729. "license": [
  10730. "BSD-3-Clause"
  10731. ],
  10732. "authors": [
  10733. {
  10734. "name": "Arne Blankerts",
  10735. "email": "arne@blankerts.de",
  10736. "role": "Developer"
  10737. }
  10738. ],
  10739. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10740. "time": "2017-04-07T12:08:54+00:00"
  10741. }
  10742. ],
  10743. "aliases": [],
  10744. "minimum-stability": "stable",
  10745. "stability-flags": {
  10746. "dingo/api": 15
  10747. },
  10748. "prefer-stable": false,
  10749. "prefer-lowest": false,
  10750. "platform": {
  10751. "php": ">=7.0.0"
  10752. },
  10753. "platform-dev": []
  10754. }