composer.lock 219 KB

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