composer.lock 329 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282
  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#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "1c81997568405a59ced9704d007f4284",
  8. "packages": [
  9. {
  10. "name": "aferrandini/phpqrcode",
  11. "version": "1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aferrandini/PHPQRCode.git",
  15. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aferrandini/PHPQRCode/zipball/3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  20. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-0": {
  29. "PHPQRCode": "lib/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "MIT"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Ariel Ferrandini",
  39. "email": "arielferrandini@gmail.com",
  40. "homepage": "http://www.ferrandini.com/",
  41. "role": "Developer"
  42. }
  43. ],
  44. "description": "PHPQRCode porting and changed for PHP 5.3 compatibility",
  45. "homepage": "https://github.com/aferrandini/PHPQRCode",
  46. "keywords": [
  47. "barcode",
  48. "php",
  49. "qrcode"
  50. ],
  51. "time": "2013-07-08T09:39:08+00:00"
  52. },
  53. {
  54. "name": "alchemy/binary-driver",
  55. "version": "1.6.0",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  59. "reference": "80c6633890afb71d2417ae851d0ad167d8b00b95"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/80c6633890afb71d2417ae851d0ad167d8b00b95",
  64. "reference": "80c6633890afb71d2417ae851d0ad167d8b00b95",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "evenement/evenement": "^2.0|^1.0",
  69. "monolog/monolog": "^1.3",
  70. "php": ">=5.5",
  71. "psr/log": "^1.0",
  72. "symfony/process": "^2.0|^3.0"
  73. },
  74. "require-dev": {
  75. "phpunit/phpunit": "^4.0|^5.0"
  76. },
  77. "type": "library",
  78. "autoload": {
  79. "psr-0": {
  80. "Alchemy": "src"
  81. }
  82. },
  83. "notification-url": "https://packagist.org/downloads/",
  84. "license": [
  85. "MIT"
  86. ],
  87. "authors": [
  88. {
  89. "name": "Romain Neutron",
  90. "email": "imprec@gmail.com",
  91. "homepage": "http://www.lickmychip.com/"
  92. },
  93. {
  94. "name": "Phraseanet Team",
  95. "email": "info@alchemy.fr",
  96. "homepage": "http://www.phraseanet.com/"
  97. },
  98. {
  99. "name": "Nicolas Le Goff",
  100. "email": "legoff.n@gmail.com"
  101. }
  102. ],
  103. "description": "A set of tools to build binary drivers",
  104. "keywords": [
  105. "binary",
  106. "driver"
  107. ],
  108. "time": "2016-03-02T13:49:15+00:00"
  109. },
  110. {
  111. "name": "alchemy/ghostscript",
  112. "version": "0.4.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/alchemy-fr/Ghostscript-PHP.git",
  116. "reference": "a5d40c29efa4c4e4016a1f83cd5645300ad602d7"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/alchemy-fr/Ghostscript-PHP/zipball/a5d40c29efa4c4e4016a1f83cd5645300ad602d7",
  121. "reference": "a5d40c29efa4c4e4016a1f83cd5645300ad602d7",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "alchemy/binary-driver": "~1.5",
  126. "php": ">=5.3.3"
  127. },
  128. "require-dev": {
  129. "phpunit/phpunit": "~3.7",
  130. "sami/sami": "~1.0",
  131. "silex/silex": "~1.0"
  132. },
  133. "type": "library",
  134. "autoload": {
  135. "psr-0": {
  136. "Ghostscript": "src"
  137. }
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "authors": [
  144. {
  145. "name": "Romain Neutron",
  146. "email": "imprec@gmail.com",
  147. "homepage": "http://www.lickmychip.com/"
  148. },
  149. {
  150. "name": "Phraseanet Team",
  151. "email": "info@alchemy.fr",
  152. "homepage": "http://www.phraseanet.com/"
  153. }
  154. ],
  155. "description": "Ghostscript PDF, a library to handle PDF through ghostscript",
  156. "keywords": [
  157. "ghostscript",
  158. "pdf"
  159. ],
  160. "time": "2013-06-25T09:12:58+00:00"
  161. },
  162. {
  163. "name": "alchemy/mediavorus",
  164. "version": "0.4.5",
  165. "source": {
  166. "type": "git",
  167. "url": "https://github.com/alchemy-fr/MediaVorus.git",
  168. "reference": "ee7d1279a024130fc82fde9eabad86a667ed3630"
  169. },
  170. "dist": {
  171. "type": "zip",
  172. "url": "https://api.github.com/repos/alchemy-fr/MediaVorus/zipball/ee7d1279a024130fc82fde9eabad86a667ed3630",
  173. "reference": "ee7d1279a024130fc82fde9eabad86a667ed3630",
  174. "shasum": ""
  175. },
  176. "require": {
  177. "alchemy/phpexiftool": "~0.1",
  178. "doctrine/collections": "~1.0",
  179. "monolog/monolog": "~1.0",
  180. "php": ">=5.3.0",
  181. "php-ffmpeg/php-ffmpeg": "~0.3",
  182. "symfony/console": "~2.0",
  183. "symfony/http-foundation": "~2.0"
  184. },
  185. "replace": {
  186. "mediavorus/mediavorus": "<=0.4.4"
  187. },
  188. "require-dev": {
  189. "jms/serializer": "~0.12.0",
  190. "silex/silex": "~1.0",
  191. "symfony/yaml": "~2.0"
  192. },
  193. "suggest": {
  194. "jms/serializer": "To serialize Medias",
  195. "symfony/yaml": "To serialize Medias in Yaml format"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "branch-alias": {
  200. "dev-master": "0.4.x-dev"
  201. }
  202. },
  203. "autoload": {
  204. "psr-0": {
  205. "MediaVorus": "src"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "MIT"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Romain Neutron",
  215. "email": "imprec@gmail.com",
  216. "homepage": "http://www.lickmychip.com/"
  217. }
  218. ],
  219. "description": "MediaVorus",
  220. "keywords": [
  221. "metadata"
  222. ],
  223. "time": "2016-05-02T15:08:36+00:00"
  224. },
  225. {
  226. "name": "alchemy/phpexiftool",
  227. "version": "0.6.0",
  228. "source": {
  229. "type": "git",
  230. "url": "https://github.com/alchemy-fr/PHPExiftool.git",
  231. "reference": "bca0537f0571de91da26ebf9c7c07deadb4e9c5e"
  232. },
  233. "dist": {
  234. "type": "zip",
  235. "url": "https://api.github.com/repos/alchemy-fr/PHPExiftool/zipball/bca0537f0571de91da26ebf9c7c07deadb4e9c5e",
  236. "reference": "bca0537f0571de91da26ebf9c7c07deadb4e9c5e",
  237. "shasum": ""
  238. },
  239. "require": {
  240. "doctrine/cache": "^1.0",
  241. "doctrine/collections": "^1.0",
  242. "monolog/monolog": "^1.3",
  243. "php": ">=5.5.9",
  244. "phpexiftool/exiftool": "10.10",
  245. "symfony/console": "^2.1|^3.0",
  246. "symfony/process": "^2.1|^3.0"
  247. },
  248. "replace": {
  249. "phpexiftool/phpexiftool": "<0.5.0"
  250. },
  251. "require-dev": {
  252. "jms/serializer": "~0.10|^1.0",
  253. "phpunit/phpunit": "^4.0|^5.0",
  254. "silex/silex": "~1.0",
  255. "symfony/css-selector": "^2.1|^3.0",
  256. "symfony/dom-crawler": "^2.1|^3.0",
  257. "symfony/finder": "^2.1|^3.0",
  258. "symfony/yaml": "^2.1|^3.0"
  259. },
  260. "suggest": {
  261. "jms/serializer": "To serialize tags",
  262. "symfony/yaml": "To serialize tags in Yaml format"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "0.5.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-0": {
  272. "PHPExiftool\\": "lib/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Romain Neutron",
  282. "email": "imprec@gmail.com",
  283. "homepage": "http://www.lickmychip.com/"
  284. },
  285. {
  286. "name": "Benoit Burnichon",
  287. "email": "bburnichon@alchemy.fr",
  288. "role": "Lead Developer"
  289. }
  290. ],
  291. "description": "Exiftool driver for PHP",
  292. "keywords": [
  293. "exiftool",
  294. "metadata"
  295. ],
  296. "time": "2016-09-29T07:37:43+00:00"
  297. },
  298. {
  299. "name": "alchemy/zippy",
  300. "version": "0.4.8",
  301. "source": {
  302. "type": "git",
  303. "url": "https://github.com/alchemy-fr/Zippy.git",
  304. "reference": "2c231a0956daa0fa1e6057d411504ff98717392e"
  305. },
  306. "dist": {
  307. "type": "zip",
  308. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/2c231a0956daa0fa1e6057d411504ff98717392e",
  309. "reference": "2c231a0956daa0fa1e6057d411504ff98717392e",
  310. "shasum": ""
  311. },
  312. "require": {
  313. "doctrine/collections": "~1.0",
  314. "php": ">=5.5",
  315. "symfony/filesystem": "^2.0.5|^3.0",
  316. "symfony/polyfill-mbstring": "^1.3",
  317. "symfony/process": "^2.1|^3.0"
  318. },
  319. "require-dev": {
  320. "ext-zip": "*",
  321. "guzzle/guzzle": "~3.0",
  322. "guzzlehttp/guzzle": "^6.0",
  323. "phpunit/phpunit": "^4.0|^5.0",
  324. "symfony/finder": "^2.0.5|^3.0"
  325. },
  326. "suggest": {
  327. "ext-zip": "To use the ZipExtensionAdapter",
  328. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  329. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  330. },
  331. "type": "library",
  332. "extra": {
  333. "branch-alias": {
  334. "dev-master": "0.4.x-dev"
  335. }
  336. },
  337. "autoload": {
  338. "psr-4": {
  339. "Alchemy\\Zippy\\": "src/"
  340. }
  341. },
  342. "notification-url": "https://packagist.org/downloads/",
  343. "license": [
  344. "MIT"
  345. ],
  346. "authors": [
  347. {
  348. "name": "Alchemy",
  349. "email": "dev.team@alchemy.fr",
  350. "homepage": "http://www.alchemy.fr/"
  351. }
  352. ],
  353. "description": "Zippy, the archive manager companion",
  354. "keywords": [
  355. "bzip",
  356. "compression",
  357. "tar",
  358. "zip"
  359. ],
  360. "time": "2017-03-03T08:42:32+00:00"
  361. },
  362. {
  363. "name": "behat/transliterator",
  364. "version": "v1.1.0",
  365. "source": {
  366. "type": "git",
  367. "url": "https://github.com/Behat/Transliterator.git",
  368. "reference": "868e05be3a9f25ba6424c2dd4849567f50715003"
  369. },
  370. "dist": {
  371. "type": "zip",
  372. "url": "https://api.github.com/repos/Behat/Transliterator/zipball/868e05be3a9f25ba6424c2dd4849567f50715003",
  373. "reference": "868e05be3a9f25ba6424c2dd4849567f50715003",
  374. "shasum": ""
  375. },
  376. "require": {
  377. "php": ">=5.3.3"
  378. },
  379. "type": "library",
  380. "extra": {
  381. "branch-alias": {
  382. "dev-master": "1.1-dev"
  383. }
  384. },
  385. "autoload": {
  386. "psr-0": {
  387. "Behat\\Transliterator": "src/"
  388. }
  389. },
  390. "notification-url": "https://packagist.org/downloads/",
  391. "license": [
  392. "Artistic-1.0"
  393. ],
  394. "description": "String transliterator",
  395. "keywords": [
  396. "i18n",
  397. "slug",
  398. "transliterator"
  399. ],
  400. "time": "2015-09-28T16:26:35+00:00"
  401. },
  402. {
  403. "name": "chamilo/chash",
  404. "version": "dev-master",
  405. "source": {
  406. "type": "git",
  407. "url": "https://github.com/chamilo/chash.git",
  408. "reference": "d9bbf768edb96a2c0a83d39fd075f55c45f6c80c"
  409. },
  410. "dist": {
  411. "type": "zip",
  412. "url": "https://api.github.com/repos/chamilo/chash/zipball/d9bbf768edb96a2c0a83d39fd075f55c45f6c80c",
  413. "reference": "d9bbf768edb96a2c0a83d39fd075f55c45f6c80c",
  414. "shasum": ""
  415. },
  416. "require": {
  417. "alchemy/zippy": "~0.2",
  418. "composer/composer": "1.0.*@dev",
  419. "doctrine/dbal": "~2.3",
  420. "doctrine/migrations": "~1.0@dev",
  421. "doctrine/orm": "~2.2,>=2.2.3,<2.5",
  422. "gedmo/doctrine-extensions": "~2.3",
  423. "php": ">=5.4",
  424. "sonata-project/user-bundle": "~3.0",
  425. "symfony/class-loader": "~2.6",
  426. "symfony/console": "~2.6",
  427. "symfony/doctrine-bridge": "~2.8",
  428. "symfony/filesystem": "~2.6",
  429. "symfony/finder": "~2.6",
  430. "symfony/validator": "~2.8",
  431. "symfony/yaml": "~2.6",
  432. "zendframework/zend-config": "~2.5.1",
  433. "zendframework/zend-stdlib": "~2.5.1"
  434. },
  435. "require-dev": {
  436. "mikey179/vfsstream": ">=1.2",
  437. "phpunit/phpunit": "3.7.*"
  438. },
  439. "type": "library",
  440. "autoload": {
  441. "psr-0": {
  442. "Chash": "src/"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "GPL-3.0"
  448. ],
  449. "description": "Chamilo Shell",
  450. "homepage": "http://www.chamilo.org",
  451. "time": "2017-02-15 17:05:30"
  452. },
  453. {
  454. "name": "clue/graph",
  455. "version": "v0.9.0",
  456. "source": {
  457. "type": "git",
  458. "url": "https://github.com/clue/graph.git",
  459. "reference": "0336a4d5229fa61a20ccceaeab25e52ac9542700"
  460. },
  461. "dist": {
  462. "type": "zip",
  463. "url": "https://api.github.com/repos/clue/graph/zipball/0336a4d5229fa61a20ccceaeab25e52ac9542700",
  464. "reference": "0336a4d5229fa61a20ccceaeab25e52ac9542700",
  465. "shasum": ""
  466. },
  467. "require": {
  468. "php": ">=5.3.0"
  469. },
  470. "require-dev": {
  471. "phpunit/phpunit": "~4.0"
  472. },
  473. "suggest": {
  474. "graphp/algorithms": "Common graph algorithms, such as Dijkstra and Moore-Bellman-Ford (shortest path), minimum spanning tree (MST), Kruskal, Prim and many more..",
  475. "graphp/graphviz": "GraphViz graph drawing / DOT output"
  476. },
  477. "type": "library",
  478. "autoload": {
  479. "psr-4": {
  480. "Fhaculty\\Graph\\": "src/"
  481. }
  482. },
  483. "notification-url": "https://packagist.org/downloads/",
  484. "license": [
  485. "MIT"
  486. ],
  487. "description": "A mathematical graph/network library written in PHP",
  488. "homepage": "https://github.com/clue/graph",
  489. "keywords": [
  490. "edge",
  491. "graph",
  492. "mathematical",
  493. "network",
  494. "vertex"
  495. ],
  496. "time": "2015-03-07T18:11:31+00:00"
  497. },
  498. {
  499. "name": "cocur/slugify",
  500. "version": "v2.4",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/cocur/slugify.git",
  504. "reference": "f11f22d4e60c408187c3efd8ac201c022a93cc3f"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/cocur/slugify/zipball/f11f22d4e60c408187c3efd8ac201c022a93cc3f",
  509. "reference": "f11f22d4e60c408187c3efd8ac201c022a93cc3f",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "php": ">=5.5.9"
  514. },
  515. "require-dev": {
  516. "laravel/framework": "~5.1",
  517. "latte/latte": "~2.2",
  518. "league/container": "^2.2.0",
  519. "mikey179/vfsstream": "~1.6",
  520. "mockery/mockery": "~0.9",
  521. "nette/di": "~2.2",
  522. "phpunit/phpunit": "~4.8|~5.2",
  523. "pimple/pimple": "~1.1",
  524. "plumphp/plum": "~0.1",
  525. "silex/silex": "~1.3",
  526. "symfony/config": "~2.4|~3.0",
  527. "symfony/dependency-injection": "~2.4|~3.0",
  528. "symfony/http-kernel": "~2.4|~3.0",
  529. "twig/twig": "~1.12",
  530. "zendframework/zend-modulemanager": "~2.2",
  531. "zendframework/zend-servicemanager": "~2.2",
  532. "zendframework/zend-view": "~2.2"
  533. },
  534. "type": "library",
  535. "autoload": {
  536. "psr-4": {
  537. "Cocur\\Slugify\\": "src"
  538. }
  539. },
  540. "notification-url": "https://packagist.org/downloads/",
  541. "license": [
  542. "MIT"
  543. ],
  544. "authors": [
  545. {
  546. "name": "Ivo Bathke",
  547. "email": "ivo.bathke@gmail.com"
  548. },
  549. {
  550. "name": "Florian Eckerstorfer",
  551. "email": "florian@eckerstorfer.co",
  552. "homepage": "https://florian.ec"
  553. }
  554. ],
  555. "description": "Converts a string into a slug.",
  556. "keywords": [
  557. "slug",
  558. "slugify"
  559. ],
  560. "time": "2017-02-09T19:27:52+00:00"
  561. },
  562. {
  563. "name": "composer/composer",
  564. "version": "1.0.3",
  565. "source": {
  566. "type": "git",
  567. "url": "https://github.com/composer/composer.git",
  568. "reference": "a4a0546ece469cae984219f920c75437820064ff"
  569. },
  570. "dist": {
  571. "type": "zip",
  572. "url": "https://api.github.com/repos/composer/composer/zipball/a4a0546ece469cae984219f920c75437820064ff",
  573. "reference": "a4a0546ece469cae984219f920c75437820064ff",
  574. "shasum": ""
  575. },
  576. "require": {
  577. "composer/semver": "^1.0",
  578. "composer/spdx-licenses": "^1.0",
  579. "justinrainbow/json-schema": "^1.6",
  580. "php": "^5.3.2 || ^7.0",
  581. "seld/cli-prompt": "^1.0",
  582. "seld/jsonlint": "^1.4",
  583. "seld/phar-utils": "^1.0",
  584. "symfony/console": "^2.5 || ^3.0",
  585. "symfony/filesystem": "^2.5 || ^3.0",
  586. "symfony/finder": "^2.2 || ^3.0",
  587. "symfony/process": "^2.1 || ^3.0"
  588. },
  589. "require-dev": {
  590. "phpunit/phpunit": "^4.5 || ^5.0.5",
  591. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  592. },
  593. "suggest": {
  594. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  595. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  596. "ext-zlib": "Allow gzip compression of HTTP requests"
  597. },
  598. "bin": [
  599. "bin/composer"
  600. ],
  601. "type": "library",
  602. "extra": {
  603. "branch-alias": {
  604. "dev-master": "1.0-dev"
  605. }
  606. },
  607. "autoload": {
  608. "psr-4": {
  609. "Composer\\": "src/Composer"
  610. }
  611. },
  612. "notification-url": "https://packagist.org/downloads/",
  613. "license": [
  614. "MIT"
  615. ],
  616. "authors": [
  617. {
  618. "name": "Nils Adermann",
  619. "email": "naderman@naderman.de",
  620. "homepage": "http://www.naderman.de"
  621. },
  622. {
  623. "name": "Jordi Boggiano",
  624. "email": "j.boggiano@seld.be",
  625. "homepage": "http://seld.be"
  626. }
  627. ],
  628. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  629. "homepage": "https://getcomposer.org/",
  630. "keywords": [
  631. "autoload",
  632. "dependency",
  633. "package"
  634. ],
  635. "time": "2016-04-29T15:30:16+00:00"
  636. },
  637. {
  638. "name": "composer/semver",
  639. "version": "1.4.2",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/composer/semver.git",
  643. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  648. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "php": "^5.3.2 || ^7.0"
  653. },
  654. "require-dev": {
  655. "phpunit/phpunit": "^4.5 || ^5.0.5",
  656. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  657. },
  658. "type": "library",
  659. "extra": {
  660. "branch-alias": {
  661. "dev-master": "1.x-dev"
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "Composer\\Semver\\": "src"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Nils Adermann",
  676. "email": "naderman@naderman.de",
  677. "homepage": "http://www.naderman.de"
  678. },
  679. {
  680. "name": "Jordi Boggiano",
  681. "email": "j.boggiano@seld.be",
  682. "homepage": "http://seld.be"
  683. },
  684. {
  685. "name": "Rob Bast",
  686. "email": "rob.bast@gmail.com",
  687. "homepage": "http://robbast.nl"
  688. }
  689. ],
  690. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  691. "keywords": [
  692. "semantic",
  693. "semver",
  694. "validation",
  695. "versioning"
  696. ],
  697. "time": "2016-08-30T16:08:34+00:00"
  698. },
  699. {
  700. "name": "composer/spdx-licenses",
  701. "version": "1.1.5",
  702. "source": {
  703. "type": "git",
  704. "url": "https://github.com/composer/spdx-licenses.git",
  705. "reference": "96c6a07b05b716e89a44529d060bc7f5c263cb13"
  706. },
  707. "dist": {
  708. "type": "zip",
  709. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/96c6a07b05b716e89a44529d060bc7f5c263cb13",
  710. "reference": "96c6a07b05b716e89a44529d060bc7f5c263cb13",
  711. "shasum": ""
  712. },
  713. "require": {
  714. "php": "^5.3.2 || ^7.0"
  715. },
  716. "require-dev": {
  717. "phpunit/phpunit": "^4.5 || ^5.0.5",
  718. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  719. },
  720. "type": "library",
  721. "extra": {
  722. "branch-alias": {
  723. "dev-master": "1.x-dev"
  724. }
  725. },
  726. "autoload": {
  727. "psr-4": {
  728. "Composer\\Spdx\\": "src"
  729. }
  730. },
  731. "notification-url": "https://packagist.org/downloads/",
  732. "license": [
  733. "MIT"
  734. ],
  735. "authors": [
  736. {
  737. "name": "Nils Adermann",
  738. "email": "naderman@naderman.de",
  739. "homepage": "http://www.naderman.de"
  740. },
  741. {
  742. "name": "Jordi Boggiano",
  743. "email": "j.boggiano@seld.be",
  744. "homepage": "http://seld.be"
  745. },
  746. {
  747. "name": "Rob Bast",
  748. "email": "rob.bast@gmail.com",
  749. "homepage": "http://robbast.nl"
  750. }
  751. ],
  752. "description": "SPDX licenses list and validation library.",
  753. "keywords": [
  754. "license",
  755. "spdx",
  756. "validator"
  757. ],
  758. "time": "2016-09-28T07:17:45+00:00"
  759. },
  760. {
  761. "name": "ddeboer/data-import",
  762. "version": "0.20.0",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/ddeboer/data-import.git",
  766. "reference": "8fe7e731bb52df0298707eb8fb8b9b8098395437"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/ddeboer/data-import/zipball/8fe7e731bb52df0298707eb8fb8b9b8098395437",
  771. "reference": "8fe7e731bb52df0298707eb8fb8b9b8098395437",
  772. "shasum": ""
  773. },
  774. "require": {
  775. "php": ">=5.4.0",
  776. "psr/log": "~1.0"
  777. },
  778. "require-dev": {
  779. "doctrine/dbal": "~2.4",
  780. "doctrine/orm": "~2.4",
  781. "ext-iconv": "*",
  782. "ext-mbstring": "*",
  783. "ext-sqlite3": "*",
  784. "henrikbjorn/phpspec-code-coverage": "~1.0",
  785. "phpoffice/phpexcel": "*",
  786. "phpspec/phpspec": "~2.1",
  787. "symfony/console": "~2.8|~3.0",
  788. "symfony/property-access": "~2.5",
  789. "symfony/validator": "~2.8|~3.0"
  790. },
  791. "suggest": {
  792. "doctrine/dbal": "If you want to use the DbalReader",
  793. "ext-iconv": "For the CharsetValueConverter",
  794. "ext-mbstring": "For the CharsetValueConverter",
  795. "phpoffice/phpexcel": "If you want to use the ExcelReader",
  796. "symfony/console": "If you want to use the ConsoleProgressWriter",
  797. "symfony/property-access": "If you want to use the ObjectConverter",
  798. "symfony/validator": "to use the ValidatorFilter"
  799. },
  800. "type": "library",
  801. "autoload": {
  802. "psr-4": {
  803. "Ddeboer\\DataImport\\": "src/",
  804. "Ddeboer\\DataImport\\Tests\\": "tests/"
  805. }
  806. },
  807. "notification-url": "https://packagist.org/downloads/",
  808. "license": [
  809. "MIT"
  810. ],
  811. "authors": [
  812. {
  813. "name": "The community",
  814. "homepage": "https://github.com/ddeboer/data-import/graphs/contributors"
  815. },
  816. {
  817. "name": "David de Boer",
  818. "email": "david@ddeboer.nl"
  819. }
  820. ],
  821. "description": "Import data from, and export data to, a range of file formats and media",
  822. "keywords": [
  823. "csv",
  824. "data",
  825. "doctrine",
  826. "excel",
  827. "export",
  828. "import"
  829. ],
  830. "time": "2016-06-23T06:26:02+00:00"
  831. },
  832. {
  833. "name": "doctrine/annotations",
  834. "version": "v1.4.0",
  835. "source": {
  836. "type": "git",
  837. "url": "https://github.com/doctrine/annotations.git",
  838. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  839. },
  840. "dist": {
  841. "type": "zip",
  842. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  843. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  844. "shasum": ""
  845. },
  846. "require": {
  847. "doctrine/lexer": "1.*",
  848. "php": "^5.6 || ^7.0"
  849. },
  850. "require-dev": {
  851. "doctrine/cache": "1.*",
  852. "phpunit/phpunit": "^5.7"
  853. },
  854. "type": "library",
  855. "extra": {
  856. "branch-alias": {
  857. "dev-master": "1.4.x-dev"
  858. }
  859. },
  860. "autoload": {
  861. "psr-4": {
  862. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  863. }
  864. },
  865. "notification-url": "https://packagist.org/downloads/",
  866. "license": [
  867. "MIT"
  868. ],
  869. "authors": [
  870. {
  871. "name": "Roman Borschel",
  872. "email": "roman@code-factory.org"
  873. },
  874. {
  875. "name": "Benjamin Eberlei",
  876. "email": "kontakt@beberlei.de"
  877. },
  878. {
  879. "name": "Guilherme Blanco",
  880. "email": "guilhermeblanco@gmail.com"
  881. },
  882. {
  883. "name": "Jonathan Wage",
  884. "email": "jonwage@gmail.com"
  885. },
  886. {
  887. "name": "Johannes Schmitt",
  888. "email": "schmittjoh@gmail.com"
  889. }
  890. ],
  891. "description": "Docblock Annotations Parser",
  892. "homepage": "http://www.doctrine-project.org",
  893. "keywords": [
  894. "annotations",
  895. "docblock",
  896. "parser"
  897. ],
  898. "time": "2017-02-24T16:22:25+00:00"
  899. },
  900. {
  901. "name": "doctrine/cache",
  902. "version": "v1.6.1",
  903. "source": {
  904. "type": "git",
  905. "url": "https://github.com/doctrine/cache.git",
  906. "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3"
  907. },
  908. "dist": {
  909. "type": "zip",
  910. "url": "https://api.github.com/repos/doctrine/cache/zipball/b6f544a20f4807e81f7044d31e679ccbb1866dc3",
  911. "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3",
  912. "shasum": ""
  913. },
  914. "require": {
  915. "php": "~5.5|~7.0"
  916. },
  917. "conflict": {
  918. "doctrine/common": ">2.2,<2.4"
  919. },
  920. "require-dev": {
  921. "phpunit/phpunit": "~4.8|~5.0",
  922. "predis/predis": "~1.0",
  923. "satooshi/php-coveralls": "~0.6"
  924. },
  925. "type": "library",
  926. "extra": {
  927. "branch-alias": {
  928. "dev-master": "1.6.x-dev"
  929. }
  930. },
  931. "autoload": {
  932. "psr-4": {
  933. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  934. }
  935. },
  936. "notification-url": "https://packagist.org/downloads/",
  937. "license": [
  938. "MIT"
  939. ],
  940. "authors": [
  941. {
  942. "name": "Roman Borschel",
  943. "email": "roman@code-factory.org"
  944. },
  945. {
  946. "name": "Benjamin Eberlei",
  947. "email": "kontakt@beberlei.de"
  948. },
  949. {
  950. "name": "Guilherme Blanco",
  951. "email": "guilhermeblanco@gmail.com"
  952. },
  953. {
  954. "name": "Jonathan Wage",
  955. "email": "jonwage@gmail.com"
  956. },
  957. {
  958. "name": "Johannes Schmitt",
  959. "email": "schmittjoh@gmail.com"
  960. }
  961. ],
  962. "description": "Caching library offering an object-oriented API for many cache backends",
  963. "homepage": "http://www.doctrine-project.org",
  964. "keywords": [
  965. "cache",
  966. "caching"
  967. ],
  968. "time": "2016-10-29T11:16:17+00:00"
  969. },
  970. {
  971. "name": "doctrine/collections",
  972. "version": "v1.4.0",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/doctrine/collections.git",
  976. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  981. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "php": "^5.6 || ^7.0"
  986. },
  987. "require-dev": {
  988. "doctrine/coding-standard": "~0.1@dev",
  989. "phpunit/phpunit": "^5.7"
  990. },
  991. "type": "library",
  992. "extra": {
  993. "branch-alias": {
  994. "dev-master": "1.3.x-dev"
  995. }
  996. },
  997. "autoload": {
  998. "psr-0": {
  999. "Doctrine\\Common\\Collections\\": "lib/"
  1000. }
  1001. },
  1002. "notification-url": "https://packagist.org/downloads/",
  1003. "license": [
  1004. "MIT"
  1005. ],
  1006. "authors": [
  1007. {
  1008. "name": "Roman Borschel",
  1009. "email": "roman@code-factory.org"
  1010. },
  1011. {
  1012. "name": "Benjamin Eberlei",
  1013. "email": "kontakt@beberlei.de"
  1014. },
  1015. {
  1016. "name": "Guilherme Blanco",
  1017. "email": "guilhermeblanco@gmail.com"
  1018. },
  1019. {
  1020. "name": "Jonathan Wage",
  1021. "email": "jonwage@gmail.com"
  1022. },
  1023. {
  1024. "name": "Johannes Schmitt",
  1025. "email": "schmittjoh@gmail.com"
  1026. }
  1027. ],
  1028. "description": "Collections Abstraction library",
  1029. "homepage": "http://www.doctrine-project.org",
  1030. "keywords": [
  1031. "array",
  1032. "collections",
  1033. "iterator"
  1034. ],
  1035. "time": "2017-01-03T10:49:41+00:00"
  1036. },
  1037. {
  1038. "name": "doctrine/common",
  1039. "version": "v2.7.2",
  1040. "source": {
  1041. "type": "git",
  1042. "url": "https://github.com/doctrine/common.git",
  1043. "reference": "930297026c8009a567ac051fd545bf6124150347"
  1044. },
  1045. "dist": {
  1046. "type": "zip",
  1047. "url": "https://api.github.com/repos/doctrine/common/zipball/930297026c8009a567ac051fd545bf6124150347",
  1048. "reference": "930297026c8009a567ac051fd545bf6124150347",
  1049. "shasum": ""
  1050. },
  1051. "require": {
  1052. "doctrine/annotations": "1.*",
  1053. "doctrine/cache": "1.*",
  1054. "doctrine/collections": "1.*",
  1055. "doctrine/inflector": "1.*",
  1056. "doctrine/lexer": "1.*",
  1057. "php": "~5.6|~7.0"
  1058. },
  1059. "require-dev": {
  1060. "phpunit/phpunit": "^5.4.6"
  1061. },
  1062. "type": "library",
  1063. "extra": {
  1064. "branch-alias": {
  1065. "dev-master": "2.7.x-dev"
  1066. }
  1067. },
  1068. "autoload": {
  1069. "psr-4": {
  1070. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "Roman Borschel",
  1080. "email": "roman@code-factory.org"
  1081. },
  1082. {
  1083. "name": "Benjamin Eberlei",
  1084. "email": "kontakt@beberlei.de"
  1085. },
  1086. {
  1087. "name": "Guilherme Blanco",
  1088. "email": "guilhermeblanco@gmail.com"
  1089. },
  1090. {
  1091. "name": "Jonathan Wage",
  1092. "email": "jonwage@gmail.com"
  1093. },
  1094. {
  1095. "name": "Johannes Schmitt",
  1096. "email": "schmittjoh@gmail.com"
  1097. }
  1098. ],
  1099. "description": "Common Library for Doctrine projects",
  1100. "homepage": "http://www.doctrine-project.org",
  1101. "keywords": [
  1102. "annotations",
  1103. "collections",
  1104. "eventmanager",
  1105. "persistence",
  1106. "spl"
  1107. ],
  1108. "time": "2017-01-13T14:02:13+00:00"
  1109. },
  1110. {
  1111. "name": "doctrine/data-fixtures",
  1112. "version": "dev-master",
  1113. "source": {
  1114. "type": "git",
  1115. "url": "https://github.com/doctrine/data-fixtures.git",
  1116. "reference": "1b6c7dd1dc9d2ecbb7c0daa15d86a437c062e347"
  1117. },
  1118. "dist": {
  1119. "type": "zip",
  1120. "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/1b6c7dd1dc9d2ecbb7c0daa15d86a437c062e347",
  1121. "reference": "1b6c7dd1dc9d2ecbb7c0daa15d86a437c062e347",
  1122. "shasum": ""
  1123. },
  1124. "require": {
  1125. "doctrine/common": "~2.2",
  1126. "php": "^5.6 || ^7.0"
  1127. },
  1128. "conflict": {
  1129. "doctrine/orm": "< 2.4"
  1130. },
  1131. "require-dev": {
  1132. "doctrine/dbal": "^2.5.4",
  1133. "doctrine/orm": "^2.5.4",
  1134. "phpunit/phpunit": "^5.4.6"
  1135. },
  1136. "suggest": {
  1137. "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
  1138. "doctrine/orm": "For loading ORM fixtures",
  1139. "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
  1140. },
  1141. "type": "library",
  1142. "extra": {
  1143. "branch-alias": {
  1144. "dev-master": "1.3.x-dev"
  1145. }
  1146. },
  1147. "autoload": {
  1148. "psr-0": {
  1149. "Doctrine\\Common\\DataFixtures": "lib/"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Jonathan Wage",
  1159. "email": "jonwage@gmail.com"
  1160. }
  1161. ],
  1162. "description": "Data Fixtures for all Doctrine Object Managers",
  1163. "homepage": "http://www.doctrine-project.org",
  1164. "keywords": [
  1165. "database"
  1166. ],
  1167. "time": "2017-02-23 18:10:32"
  1168. },
  1169. {
  1170. "name": "doctrine/dbal",
  1171. "version": "v2.5.12",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/doctrine/dbal.git",
  1175. "reference": "7b9e911f9d8b30d43b96853dab26898c710d8f44"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/doctrine/dbal/zipball/7b9e911f9d8b30d43b96853dab26898c710d8f44",
  1180. "reference": "7b9e911f9d8b30d43b96853dab26898c710d8f44",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "doctrine/common": ">=2.4,<2.8-dev",
  1185. "php": ">=5.3.2"
  1186. },
  1187. "require-dev": {
  1188. "phpunit/phpunit": "4.*",
  1189. "symfony/console": "2.*||^3.0"
  1190. },
  1191. "suggest": {
  1192. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1193. },
  1194. "bin": [
  1195. "bin/doctrine-dbal"
  1196. ],
  1197. "type": "library",
  1198. "extra": {
  1199. "branch-alias": {
  1200. "dev-master": "2.5.x-dev"
  1201. }
  1202. },
  1203. "autoload": {
  1204. "psr-0": {
  1205. "Doctrine\\DBAL\\": "lib/"
  1206. }
  1207. },
  1208. "notification-url": "https://packagist.org/downloads/",
  1209. "license": [
  1210. "MIT"
  1211. ],
  1212. "authors": [
  1213. {
  1214. "name": "Roman Borschel",
  1215. "email": "roman@code-factory.org"
  1216. },
  1217. {
  1218. "name": "Benjamin Eberlei",
  1219. "email": "kontakt@beberlei.de"
  1220. },
  1221. {
  1222. "name": "Guilherme Blanco",
  1223. "email": "guilhermeblanco@gmail.com"
  1224. },
  1225. {
  1226. "name": "Jonathan Wage",
  1227. "email": "jonwage@gmail.com"
  1228. }
  1229. ],
  1230. "description": "Database Abstraction Layer",
  1231. "homepage": "http://www.doctrine-project.org",
  1232. "keywords": [
  1233. "database",
  1234. "dbal",
  1235. "persistence",
  1236. "queryobject"
  1237. ],
  1238. "time": "2017-02-08T12:53:47+00:00"
  1239. },
  1240. {
  1241. "name": "doctrine/inflector",
  1242. "version": "v1.1.0",
  1243. "source": {
  1244. "type": "git",
  1245. "url": "https://github.com/doctrine/inflector.git",
  1246. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  1247. },
  1248. "dist": {
  1249. "type": "zip",
  1250. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  1251. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  1252. "shasum": ""
  1253. },
  1254. "require": {
  1255. "php": ">=5.3.2"
  1256. },
  1257. "require-dev": {
  1258. "phpunit/phpunit": "4.*"
  1259. },
  1260. "type": "library",
  1261. "extra": {
  1262. "branch-alias": {
  1263. "dev-master": "1.1.x-dev"
  1264. }
  1265. },
  1266. "autoload": {
  1267. "psr-0": {
  1268. "Doctrine\\Common\\Inflector\\": "lib/"
  1269. }
  1270. },
  1271. "notification-url": "https://packagist.org/downloads/",
  1272. "license": [
  1273. "MIT"
  1274. ],
  1275. "authors": [
  1276. {
  1277. "name": "Roman Borschel",
  1278. "email": "roman@code-factory.org"
  1279. },
  1280. {
  1281. "name": "Benjamin Eberlei",
  1282. "email": "kontakt@beberlei.de"
  1283. },
  1284. {
  1285. "name": "Guilherme Blanco",
  1286. "email": "guilhermeblanco@gmail.com"
  1287. },
  1288. {
  1289. "name": "Jonathan Wage",
  1290. "email": "jonwage@gmail.com"
  1291. },
  1292. {
  1293. "name": "Johannes Schmitt",
  1294. "email": "schmittjoh@gmail.com"
  1295. }
  1296. ],
  1297. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1298. "homepage": "http://www.doctrine-project.org",
  1299. "keywords": [
  1300. "inflection",
  1301. "pluralize",
  1302. "singularize",
  1303. "string"
  1304. ],
  1305. "time": "2015-11-06T14:35:42+00:00"
  1306. },
  1307. {
  1308. "name": "doctrine/lexer",
  1309. "version": "v1.0.1",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/doctrine/lexer.git",
  1313. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1318. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "php": ">=5.3.2"
  1323. },
  1324. "type": "library",
  1325. "extra": {
  1326. "branch-alias": {
  1327. "dev-master": "1.0.x-dev"
  1328. }
  1329. },
  1330. "autoload": {
  1331. "psr-0": {
  1332. "Doctrine\\Common\\Lexer\\": "lib/"
  1333. }
  1334. },
  1335. "notification-url": "https://packagist.org/downloads/",
  1336. "license": [
  1337. "MIT"
  1338. ],
  1339. "authors": [
  1340. {
  1341. "name": "Roman Borschel",
  1342. "email": "roman@code-factory.org"
  1343. },
  1344. {
  1345. "name": "Guilherme Blanco",
  1346. "email": "guilhermeblanco@gmail.com"
  1347. },
  1348. {
  1349. "name": "Johannes Schmitt",
  1350. "email": "schmittjoh@gmail.com"
  1351. }
  1352. ],
  1353. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1354. "homepage": "http://www.doctrine-project.org",
  1355. "keywords": [
  1356. "lexer",
  1357. "parser"
  1358. ],
  1359. "time": "2014-09-09T13:34:57+00:00"
  1360. },
  1361. {
  1362. "name": "doctrine/migrations",
  1363. "version": "dev-master",
  1364. "source": {
  1365. "type": "git",
  1366. "url": "https://github.com/doctrine/migrations.git",
  1367. "reference": "d7101c827c8dbf0f05767c62f834e50f62d26b45"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/doctrine/migrations/zipball/d7101c827c8dbf0f05767c62f834e50f62d26b45",
  1372. "reference": "d7101c827c8dbf0f05767c62f834e50f62d26b45",
  1373. "shasum": ""
  1374. },
  1375. "require": {
  1376. "doctrine/dbal": "~2.2",
  1377. "ocramius/proxy-manager": "^1.0|^2.0",
  1378. "php": "^5.5|^7.0",
  1379. "symfony/console": "~2.3|~3.0",
  1380. "symfony/yaml": "~2.3|~3.0"
  1381. },
  1382. "require-dev": {
  1383. "doctrine/coding-standard": "dev-master",
  1384. "doctrine/orm": "2.*",
  1385. "jdorn/sql-formatter": "~1.1",
  1386. "johnkary/phpunit-speedtrap": "~1.0@dev",
  1387. "mikey179/vfsstream": "^1.6",
  1388. "mockery/mockery": "^0.9.4",
  1389. "phpunit/phpunit": "~4.7",
  1390. "satooshi/php-coveralls": "^1.0"
  1391. },
  1392. "suggest": {
  1393. "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command."
  1394. },
  1395. "bin": [
  1396. "bin/doctrine-migrations"
  1397. ],
  1398. "type": "library",
  1399. "extra": {
  1400. "branch-alias": {
  1401. "dev-master": "v1.6.x-dev"
  1402. }
  1403. },
  1404. "autoload": {
  1405. "psr-4": {
  1406. "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations"
  1407. }
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "LGPL-2.1"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "Benjamin Eberlei",
  1416. "email": "kontakt@beberlei.de"
  1417. },
  1418. {
  1419. "name": "Jonathan Wage",
  1420. "email": "jonwage@gmail.com"
  1421. },
  1422. {
  1423. "name": "Michael Simonson",
  1424. "email": "contact@mikesimonson.com"
  1425. }
  1426. ],
  1427. "description": "Database Schema migrations using Doctrine DBAL",
  1428. "homepage": "http://www.doctrine-project.org",
  1429. "keywords": [
  1430. "database",
  1431. "migrations"
  1432. ],
  1433. "time": "2017-03-01 08:40:41"
  1434. },
  1435. {
  1436. "name": "doctrine/orm",
  1437. "version": "v2.4.8",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/doctrine/doctrine2.git",
  1441. "reference": "5aedac1e5c5caaeac14798822c70325dc242d467"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/5aedac1e5c5caaeac14798822c70325dc242d467",
  1446. "reference": "5aedac1e5c5caaeac14798822c70325dc242d467",
  1447. "shasum": ""
  1448. },
  1449. "require": {
  1450. "doctrine/collections": "~1.1",
  1451. "doctrine/dbal": "~2.4",
  1452. "ext-pdo": "*",
  1453. "php": ">=5.3.2",
  1454. "symfony/console": "~2.0"
  1455. },
  1456. "require-dev": {
  1457. "satooshi/php-coveralls": "dev-master",
  1458. "symfony/yaml": "~2.1"
  1459. },
  1460. "suggest": {
  1461. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1462. },
  1463. "bin": [
  1464. "bin/doctrine",
  1465. "bin/doctrine.php"
  1466. ],
  1467. "type": "library",
  1468. "extra": {
  1469. "branch-alias": {
  1470. "dev-master": "2.4.x-dev"
  1471. }
  1472. },
  1473. "autoload": {
  1474. "psr-0": {
  1475. "Doctrine\\ORM\\": "lib/"
  1476. }
  1477. },
  1478. "notification-url": "https://packagist.org/downloads/",
  1479. "license": [
  1480. "MIT"
  1481. ],
  1482. "authors": [
  1483. {
  1484. "name": "Roman Borschel",
  1485. "email": "roman@code-factory.org"
  1486. },
  1487. {
  1488. "name": "Benjamin Eberlei",
  1489. "email": "kontakt@beberlei.de"
  1490. },
  1491. {
  1492. "name": "Guilherme Blanco",
  1493. "email": "guilhermeblanco@gmail.com"
  1494. },
  1495. {
  1496. "name": "Jonathan Wage",
  1497. "email": "jonwage@gmail.com"
  1498. }
  1499. ],
  1500. "description": "Object-Relational-Mapper for PHP",
  1501. "homepage": "http://www.doctrine-project.org",
  1502. "keywords": [
  1503. "database",
  1504. "orm"
  1505. ],
  1506. "time": "2015-08-31T13:19:01+00:00"
  1507. },
  1508. {
  1509. "name": "emojione/emojione",
  1510. "version": "v1.3.0",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/Ranks/emojione.git",
  1514. "reference": "2a34acf3771a219045e133063aa759035d4f842c"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/Ranks/emojione/zipball/2a34acf3771a219045e133063aa759035d4f842c",
  1519. "reference": "2a34acf3771a219045e133063aa759035d4f842c",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "php": ">=5.3"
  1524. },
  1525. "type": "library",
  1526. "autoload": {
  1527. "psr-4": {
  1528. "Emojione\\": "lib/php/src"
  1529. }
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "description": "Emoji One is a complete set of emojis designed for the web. It includes libraries to easily convert unicode characters to shortnames (:smile:) and shortnames to our custom emoji images. PNG and SVG formats provided for the emoji images.",
  1533. "homepage": "http://www.emojione.com",
  1534. "keywords": [
  1535. "Emoji One",
  1536. "emoji",
  1537. "emojione",
  1538. "emojis",
  1539. "emoticons",
  1540. "smileys",
  1541. "smilies",
  1542. "unicode"
  1543. ],
  1544. "time": "2014-10-31T19:31:57+00:00"
  1545. },
  1546. {
  1547. "name": "essence/essence",
  1548. "version": "2.6.1",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/essence/essence.git",
  1552. "reference": "ed08afc5c2936c4d03f8c58dc54d5aff752cb9fd"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/essence/essence/zipball/ed08afc5c2936c4d03f8c58dc54d5aff752cb9fd",
  1557. "reference": "ed08afc5c2936c4d03f8c58dc54d5aff752cb9fd",
  1558. "shasum": ""
  1559. },
  1560. "require": {
  1561. "ext-curl": "*",
  1562. "php": ">=5.4.0"
  1563. },
  1564. "suggest": {
  1565. "felixgirault/essence-interfaces": "Allows better integration with different frameworks."
  1566. },
  1567. "type": "library",
  1568. "autoload": {
  1569. "files": [
  1570. "lib/bootstrap.php"
  1571. ]
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "BSD-2-Clause"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Félix Girault",
  1580. "email": "felix.girault@gmail.com",
  1581. "homepage": "http://www.felix-girault.fr",
  1582. "role": "Developer"
  1583. }
  1584. ],
  1585. "description": "Extracts informations about medias on the web, like youtube videos, twitter statuses or blog articles.",
  1586. "homepage": "http://github.com/felixgirault/essence",
  1587. "keywords": [
  1588. "embed",
  1589. "media",
  1590. "oembed",
  1591. "opengraph"
  1592. ],
  1593. "time": "2016-08-17T15:19:50+00:00"
  1594. },
  1595. {
  1596. "name": "evenement/evenement",
  1597. "version": "v1.0.0",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/igorw/evenement.git",
  1601. "reference": "fa966683e7df3e5dd5929d984a44abfbd6bafe8d"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/igorw/evenement/zipball/fa966683e7df3e5dd5929d984a44abfbd6bafe8d",
  1606. "reference": "fa966683e7df3e5dd5929d984a44abfbd6bafe8d",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "php": ">=5.3.0"
  1611. },
  1612. "type": "library",
  1613. "autoload": {
  1614. "psr-0": {
  1615. "Evenement": "src"
  1616. }
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "MIT"
  1621. ],
  1622. "authors": [
  1623. {
  1624. "name": "Igor Wiedler",
  1625. "email": "igor@wiedler.ch",
  1626. "homepage": "http://wiedler.ch/igor/"
  1627. }
  1628. ],
  1629. "description": "Événement is a very simple event dispatching library for PHP 5.3",
  1630. "keywords": [
  1631. "event-dispatcher"
  1632. ],
  1633. "time": "2012-05-30T15:01:08+00:00"
  1634. },
  1635. {
  1636. "name": "ezyang/htmlpurifier",
  1637. "version": "v4.6.0",
  1638. "source": {
  1639. "type": "git",
  1640. "url": "https://github.com/ezyang/htmlpurifier.git",
  1641. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd"
  1642. },
  1643. "dist": {
  1644. "type": "zip",
  1645. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/6f389f0f25b90d0b495308efcfa073981177f0fd",
  1646. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd",
  1647. "shasum": ""
  1648. },
  1649. "require": {
  1650. "php": ">=5.2"
  1651. },
  1652. "type": "library",
  1653. "autoload": {
  1654. "psr-0": {
  1655. "HTMLPurifier": "library/"
  1656. },
  1657. "files": [
  1658. "library/HTMLPurifier.composer.php"
  1659. ]
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "LGPL"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Edward Z. Yang",
  1668. "email": "admin@htmlpurifier.org",
  1669. "homepage": "http://ezyang.com"
  1670. }
  1671. ],
  1672. "description": "Standards compliant HTML filter written in PHP",
  1673. "homepage": "http://htmlpurifier.org/",
  1674. "keywords": [
  1675. "html"
  1676. ],
  1677. "time": "2013-11-30T08:25:19+00:00"
  1678. },
  1679. {
  1680. "name": "facebook/php-sdk-v4",
  1681. "version": "5.4.4",
  1682. "source": {
  1683. "type": "git",
  1684. "url": "https://github.com/facebook/php-graph-sdk.git",
  1685. "reference": "5d0c4865e80e231d48a4571841bd018828fe58e1"
  1686. },
  1687. "dist": {
  1688. "type": "zip",
  1689. "url": "https://api.github.com/repos/facebook/php-graph-sdk/zipball/5d0c4865e80e231d48a4571841bd018828fe58e1",
  1690. "reference": "5d0c4865e80e231d48a4571841bd018828fe58e1",
  1691. "shasum": ""
  1692. },
  1693. "require": {
  1694. "php": "^5.4|^7.0"
  1695. },
  1696. "require-dev": {
  1697. "guzzlehttp/guzzle": "~5.0",
  1698. "mockery/mockery": "~0.8",
  1699. "phpunit/phpunit": "~4.0"
  1700. },
  1701. "suggest": {
  1702. "guzzlehttp/guzzle": "Allows for implementation of the Guzzle HTTP client",
  1703. "paragonie/random_compat": "Provides a better CSPRNG option in PHP 5"
  1704. },
  1705. "type": "library",
  1706. "extra": {
  1707. "branch-alias": {
  1708. "dev-master": "5.x-dev"
  1709. }
  1710. },
  1711. "autoload": {
  1712. "psr-4": {
  1713. "Facebook\\": "src/Facebook/"
  1714. },
  1715. "files": [
  1716. "src/Facebook/polyfills.php"
  1717. ]
  1718. },
  1719. "notification-url": "https://packagist.org/downloads/",
  1720. "license": [
  1721. "Facebook Platform"
  1722. ],
  1723. "authors": [
  1724. {
  1725. "name": "Facebook",
  1726. "homepage": "https://github.com/facebook/php-graph-sdk/contributors"
  1727. }
  1728. ],
  1729. "description": "Facebook SDK for PHP",
  1730. "homepage": "https://github.com/facebook/php-graph-sdk",
  1731. "keywords": [
  1732. "facebook",
  1733. "sdk"
  1734. ],
  1735. "abandoned": "facebook/graph-sdk",
  1736. "time": "2017-01-19T15:42:20+00:00"
  1737. },
  1738. {
  1739. "name": "friendsofsymfony/user-bundle",
  1740. "version": "v1.3.7",
  1741. "target-dir": "FOS/UserBundle",
  1742. "source": {
  1743. "type": "git",
  1744. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1745. "reference": "113cc4e48fac19d20fc039cfecae9b41103be706"
  1746. },
  1747. "dist": {
  1748. "type": "zip",
  1749. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/113cc4e48fac19d20fc039cfecae9b41103be706",
  1750. "reference": "113cc4e48fac19d20fc039cfecae9b41103be706",
  1751. "shasum": ""
  1752. },
  1753. "require": {
  1754. "php": ">=5.3.2",
  1755. "symfony/framework-bundle": "~2.3",
  1756. "symfony/security-bundle": "~2.3"
  1757. },
  1758. "require-dev": {
  1759. "doctrine/doctrine-bundle": "~1.3",
  1760. "swiftmailer/swiftmailer": "~4.3|~5",
  1761. "symfony/validator": "~2.3",
  1762. "symfony/yaml": "~2.3",
  1763. "twig/twig": "~1.5",
  1764. "willdurand/propel-typehintable-behavior": "~1.0"
  1765. },
  1766. "suggest": {
  1767. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  1768. },
  1769. "type": "symfony-bundle",
  1770. "extra": {
  1771. "branch-alias": {
  1772. "dev-master": "2.0.x-dev"
  1773. }
  1774. },
  1775. "autoload": {
  1776. "psr-0": {
  1777. "FOS\\UserBundle": ""
  1778. }
  1779. },
  1780. "notification-url": "https://packagist.org/downloads/",
  1781. "license": [
  1782. "MIT"
  1783. ],
  1784. "authors": [
  1785. {
  1786. "name": "Christophe Coevoet",
  1787. "email": "stof@notk.org"
  1788. },
  1789. {
  1790. "name": "FriendsOfSymfony Community",
  1791. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1792. },
  1793. {
  1794. "name": "Thibault Duplessis",
  1795. "email": "thibault.duplessis@gmail.com"
  1796. }
  1797. ],
  1798. "description": "Symfony FOSUserBundle",
  1799. "homepage": "http://friendsofsymfony.github.com",
  1800. "keywords": [
  1801. "User management"
  1802. ],
  1803. "time": "2016-08-12T09:53:32+00:00"
  1804. },
  1805. {
  1806. "name": "gedmo/doctrine-extensions",
  1807. "version": "v2.4.26",
  1808. "source": {
  1809. "type": "git",
  1810. "url": "https://github.com/Atlantic18/DoctrineExtensions.git",
  1811. "reference": "983dd85d6860f87fb7dffd0d9f7ad1462e20a09d"
  1812. },
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/983dd85d6860f87fb7dffd0d9f7ad1462e20a09d",
  1816. "reference": "983dd85d6860f87fb7dffd0d9f7ad1462e20a09d",
  1817. "shasum": ""
  1818. },
  1819. "require": {
  1820. "behat/transliterator": "~1.0",
  1821. "doctrine/common": "~2.4",
  1822. "php": ">=5.3.2"
  1823. },
  1824. "require-dev": {
  1825. "doctrine/common": ">=2.5.0",
  1826. "doctrine/mongodb-odm": ">=1.0.2",
  1827. "doctrine/orm": ">=2.5.0",
  1828. "phpunit/phpunit": "~4.4",
  1829. "phpunit/phpunit-mock-objects": "~2.3",
  1830. "symfony/yaml": "~2.6"
  1831. },
  1832. "suggest": {
  1833. "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
  1834. "doctrine/orm": "to use the extensions with the ORM"
  1835. },
  1836. "type": "library",
  1837. "extra": {
  1838. "branch-alias": {
  1839. "dev-master": "2.4.x-dev"
  1840. }
  1841. },
  1842. "autoload": {
  1843. "psr-0": {
  1844. "Gedmo\\": "lib/"
  1845. }
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "David Buchmann",
  1854. "email": "david@liip.ch"
  1855. },
  1856. {
  1857. "name": "Gediminas Morkevicius",
  1858. "email": "gediminas.morkevicius@gmail.com"
  1859. },
  1860. {
  1861. "name": "Gustavo Falco",
  1862. "email": "comfortablynumb84@gmail.com"
  1863. }
  1864. ],
  1865. "description": "Doctrine2 behavioral extensions",
  1866. "homepage": "http://gediminasm.org/",
  1867. "keywords": [
  1868. "Blameable",
  1869. "behaviors",
  1870. "doctrine2",
  1871. "extensions",
  1872. "gedmo",
  1873. "loggable",
  1874. "nestedset",
  1875. "sluggable",
  1876. "sortable",
  1877. "timestampable",
  1878. "translatable",
  1879. "tree",
  1880. "uploadable"
  1881. ],
  1882. "time": "2016-12-21T13:46:54+00:00"
  1883. },
  1884. {
  1885. "name": "graphp/algorithms",
  1886. "version": "v0.8.1",
  1887. "source": {
  1888. "type": "git",
  1889. "url": "https://github.com/graphp/algorithms.git",
  1890. "reference": "81db4049c35730767ec8f97fb5c4844234b86cef"
  1891. },
  1892. "dist": {
  1893. "type": "zip",
  1894. "url": "https://api.github.com/repos/graphp/algorithms/zipball/81db4049c35730767ec8f97fb5c4844234b86cef",
  1895. "reference": "81db4049c35730767ec8f97fb5c4844234b86cef",
  1896. "shasum": ""
  1897. },
  1898. "require": {
  1899. "clue/graph": "~0.9.0|~0.8.0",
  1900. "php": ">=5.3"
  1901. },
  1902. "require-dev": {
  1903. "phpunit/phpunit": "~4.0"
  1904. },
  1905. "type": "library",
  1906. "autoload": {
  1907. "psr-4": {
  1908. "Graphp\\Algorithms\\": "src/"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "MIT"
  1914. ],
  1915. "authors": [
  1916. {
  1917. "name": "Christian Lück",
  1918. "email": "christian@lueck.tv"
  1919. }
  1920. ],
  1921. "description": "Common mathematical graph algorithms",
  1922. "homepage": "https://github.com/graphp/algorithms",
  1923. "keywords": [
  1924. "Graph algorithms",
  1925. "dijkstra",
  1926. "kruskal",
  1927. "minimum spanning tree",
  1928. "moore-bellman-ford",
  1929. "prim",
  1930. "shortest path"
  1931. ],
  1932. "time": "2015-03-08T10:12:01+00:00"
  1933. },
  1934. {
  1935. "name": "graphp/graphviz",
  1936. "version": "v0.2.1",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/graphp/graphviz.git",
  1940. "reference": "2676522dfcd907fd3cb52891ea64a052c4ac4c2a"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/graphp/graphviz/zipball/2676522dfcd907fd3cb52891ea64a052c4ac4c2a",
  1945. "reference": "2676522dfcd907fd3cb52891ea64a052c4ac4c2a",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "clue/graph": "~0.9.0|~0.8.0",
  1950. "graphp/algorithms": "~0.8.0",
  1951. "php": ">=5.3.0"
  1952. },
  1953. "require-dev": {
  1954. "phpunit/phpunit": "~4.0"
  1955. },
  1956. "type": "library",
  1957. "autoload": {
  1958. "psr-4": {
  1959. "Graphp\\GraphViz\\": "src/"
  1960. }
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "description": "GraphViz graph drawing for mathematical graph/network",
  1967. "homepage": "https://github.com/graphp/graphviz",
  1968. "keywords": [
  1969. "dot output",
  1970. "graph drawing",
  1971. "graph image",
  1972. "graphviz"
  1973. ],
  1974. "time": "2015-03-08T10:30:28+00:00"
  1975. },
  1976. {
  1977. "name": "imagine/imagine",
  1978. "version": "0.6.2",
  1979. "source": {
  1980. "type": "git",
  1981. "url": "https://github.com/avalanche123/Imagine.git",
  1982. "reference": "83ca8babede0e54f935ec09d55a726bf4b0a3f7c"
  1983. },
  1984. "dist": {
  1985. "type": "zip",
  1986. "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/83ca8babede0e54f935ec09d55a726bf4b0a3f7c",
  1987. "reference": "83ca8babede0e54f935ec09d55a726bf4b0a3f7c",
  1988. "shasum": ""
  1989. },
  1990. "require": {
  1991. "php": ">=5.3.2"
  1992. },
  1993. "require-dev": {
  1994. "sami/sami": "dev-master"
  1995. },
  1996. "suggest": {
  1997. "ext-gd": "to use the GD implementation",
  1998. "ext-gmagick": "to use the Gmagick implementation",
  1999. "ext-imagick": "to use the Imagick implementation"
  2000. },
  2001. "type": "library",
  2002. "extra": {
  2003. "branch-alias": {
  2004. "dev-develop": "0.7-dev"
  2005. }
  2006. },
  2007. "autoload": {
  2008. "psr-0": {
  2009. "Imagine": "lib/"
  2010. }
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "MIT"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "Bulat Shakirzyanov",
  2019. "email": "mallluhuct@gmail.com",
  2020. "homepage": "http://avalanche123.com"
  2021. }
  2022. ],
  2023. "description": "Image processing for PHP 5.3",
  2024. "homepage": "http://imagine.readthedocs.org/",
  2025. "keywords": [
  2026. "drawing",
  2027. "graphics",
  2028. "image manipulation",
  2029. "image processing"
  2030. ],
  2031. "time": "2014-11-11T11:36:02+00:00"
  2032. },
  2033. {
  2034. "name": "ircmaxell/password-compat",
  2035. "version": "v1.0.4",
  2036. "source": {
  2037. "type": "git",
  2038. "url": "https://github.com/ircmaxell/password_compat.git",
  2039. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c"
  2040. },
  2041. "dist": {
  2042. "type": "zip",
  2043. "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/5c5cde8822a69545767f7c7f3058cb15ff84614c",
  2044. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c",
  2045. "shasum": ""
  2046. },
  2047. "require-dev": {
  2048. "phpunit/phpunit": "4.*"
  2049. },
  2050. "type": "library",
  2051. "autoload": {
  2052. "files": [
  2053. "lib/password.php"
  2054. ]
  2055. },
  2056. "notification-url": "https://packagist.org/downloads/",
  2057. "license": [
  2058. "MIT"
  2059. ],
  2060. "authors": [
  2061. {
  2062. "name": "Anthony Ferrara",
  2063. "email": "ircmaxell@php.net",
  2064. "homepage": "http://blog.ircmaxell.com"
  2065. }
  2066. ],
  2067. "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
  2068. "homepage": "https://github.com/ircmaxell/password_compat",
  2069. "keywords": [
  2070. "hashing",
  2071. "password"
  2072. ],
  2073. "time": "2014-11-20T16:49:30+00:00"
  2074. },
  2075. {
  2076. "name": "jbroadway/urlify",
  2077. "version": "dev-master",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/jbroadway/urlify.git",
  2081. "reference": "99bb78cd9002d0e9ce479bb81635eb665e37e981"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/jbroadway/urlify/zipball/99bb78cd9002d0e9ce479bb81635eb665e37e981",
  2086. "reference": "99bb78cd9002d0e9ce479bb81635eb665e37e981",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "php": ">=5.3.0"
  2091. },
  2092. "type": "library",
  2093. "extra": {
  2094. "branch-alias": {
  2095. "dev-master": "1.0-dev"
  2096. }
  2097. },
  2098. "autoload": {
  2099. "psr-0": {
  2100. "URLify": ""
  2101. }
  2102. },
  2103. "notification-url": "https://packagist.org/downloads/",
  2104. "license": [
  2105. "BSD"
  2106. ],
  2107. "authors": [
  2108. {
  2109. "name": "Johnny Broadway",
  2110. "email": "johnny@johnnybroadway.com",
  2111. "homepage": "http://www.johnnybroadway.com/"
  2112. }
  2113. ],
  2114. "description": "PHP port of URLify.js from the Django project. Transliterates non-ascii characters for use in URLs.",
  2115. "homepage": "https://github.com/jbroadway/urlify",
  2116. "keywords": [
  2117. "encode",
  2118. "iconv",
  2119. "link",
  2120. "slug",
  2121. "translit",
  2122. "transliterate",
  2123. "transliteration",
  2124. "url",
  2125. "urlify"
  2126. ],
  2127. "time": "2017-01-03 20:12:54"
  2128. },
  2129. {
  2130. "name": "jeroendesloovere/vcard",
  2131. "version": "1.4.0",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/jeroendesloovere/vcard.git",
  2135. "reference": "1973888c9fa2327c64ba153a7072caec0674c24a"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://api.github.com/repos/jeroendesloovere/vcard/zipball/1973888c9fa2327c64ba153a7072caec0674c24a",
  2140. "reference": "1973888c9fa2327c64ba153a7072caec0674c24a",
  2141. "shasum": ""
  2142. },
  2143. "require": {
  2144. "behat/transliterator": "~1.0",
  2145. "php": ">=5.3.3"
  2146. },
  2147. "require-dev": {
  2148. "phpunit/phpunit": "4.6.*"
  2149. },
  2150. "type": "library",
  2151. "autoload": {
  2152. "psr-4": {
  2153. "JeroenDesloovere\\VCard\\": "src/"
  2154. }
  2155. },
  2156. "notification-url": "https://packagist.org/downloads/",
  2157. "license": [
  2158. "MIT"
  2159. ],
  2160. "authors": [
  2161. {
  2162. "name": "Jeroen Desloovere",
  2163. "email": "info@jeroendesloovere.be",
  2164. "homepage": "http://jeroendesloovere.be",
  2165. "role": "Developer"
  2166. }
  2167. ],
  2168. "description": "This VCard PHP class can generate a vCard with some data. When using an iOS device it will export as a .ics file because iOS devices don't support the default .vcf files.",
  2169. "homepage": "https://github.com/jeroendesloovere/vcard",
  2170. "keywords": [
  2171. ".vcf",
  2172. "generator",
  2173. "php",
  2174. "vCard"
  2175. ],
  2176. "time": "2017-02-14T08:47:41+00:00"
  2177. },
  2178. {
  2179. "name": "jimmiw/php-time-ago",
  2180. "version": "0.4.15",
  2181. "source": {
  2182. "type": "git",
  2183. "url": "https://github.com/jimmiw/php-time-ago.git",
  2184. "reference": "2bd8b75d3034b9ce996f96bee8c38e79525f6758"
  2185. },
  2186. "dist": {
  2187. "type": "zip",
  2188. "url": "https://api.github.com/repos/jimmiw/php-time-ago/zipball/2bd8b75d3034b9ce996f96bee8c38e79525f6758",
  2189. "reference": "2bd8b75d3034b9ce996f96bee8c38e79525f6758",
  2190. "shasum": ""
  2191. },
  2192. "require": {
  2193. "php": ">=4"
  2194. },
  2195. "require-dev": {
  2196. "phpunit/dbunit": "2.0.*",
  2197. "phpunit/phpunit": "5.*@stable"
  2198. },
  2199. "type": "library",
  2200. "autoload": {
  2201. "files": [
  2202. "timeago.inc.php"
  2203. ]
  2204. },
  2205. "notification-url": "https://packagist.org/downloads/",
  2206. "license": [
  2207. "MIT"
  2208. ],
  2209. "authors": [
  2210. {
  2211. "name": "Jimmi Westerberg",
  2212. "homepage": "http://www.westsworld.dk",
  2213. "role": "Developer"
  2214. }
  2215. ],
  2216. "description": "Simple module, that displays the date in a \"time ago\" format",
  2217. "homepage": "https://github.com/jimmiw/php-time-ago",
  2218. "keywords": [
  2219. "distance of time",
  2220. "time ago",
  2221. "time ago in words"
  2222. ],
  2223. "time": "2017-03-01T05:38:41+00:00"
  2224. },
  2225. {
  2226. "name": "justinrainbow/json-schema",
  2227. "version": "1.6.1",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/justinrainbow/json-schema.git",
  2231. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/cc84765fb7317f6b07bd8ac78364747f95b86341",
  2236. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "php": ">=5.3.29"
  2241. },
  2242. "require-dev": {
  2243. "json-schema/json-schema-test-suite": "1.1.0",
  2244. "phpdocumentor/phpdocumentor": "~2",
  2245. "phpunit/phpunit": "~3.7"
  2246. },
  2247. "bin": [
  2248. "bin/validate-json"
  2249. ],
  2250. "type": "library",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-master": "1.6.x-dev"
  2254. }
  2255. },
  2256. "autoload": {
  2257. "psr-4": {
  2258. "JsonSchema\\": "src/JsonSchema/"
  2259. }
  2260. },
  2261. "notification-url": "https://packagist.org/downloads/",
  2262. "license": [
  2263. "BSD-3-Clause"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Bruno Prieto Reis",
  2268. "email": "bruno.p.reis@gmail.com"
  2269. },
  2270. {
  2271. "name": "Justin Rainbow",
  2272. "email": "justin.rainbow@gmail.com"
  2273. },
  2274. {
  2275. "name": "Igor Wiedler",
  2276. "email": "igor@wiedler.ch"
  2277. },
  2278. {
  2279. "name": "Robert Schönthal",
  2280. "email": "seroscho@googlemail.com"
  2281. }
  2282. ],
  2283. "description": "A library to validate a json schema.",
  2284. "homepage": "https://github.com/justinrainbow/json-schema",
  2285. "keywords": [
  2286. "json",
  2287. "schema"
  2288. ],
  2289. "time": "2016-01-25T15:43:01+00:00"
  2290. },
  2291. {
  2292. "name": "kigkonsult/icalcreator",
  2293. "version": "0.1.0",
  2294. "source": {
  2295. "type": "git",
  2296. "url": "https://github.com/ywarnier/iCalcreator.git",
  2297. "reference": "d66c1d28ecaa7c4a06463f03cb0c8d3daba0cbc9"
  2298. },
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://api.github.com/repos/ywarnier/iCalcreator/zipball/d66c1d28ecaa7c4a06463f03cb0c8d3daba0cbc9",
  2302. "reference": "d66c1d28ecaa7c4a06463f03cb0c8d3daba0cbc9",
  2303. "shasum": ""
  2304. },
  2305. "require": {
  2306. "php": ">=5.3"
  2307. },
  2308. "type": "library",
  2309. "autoload": {
  2310. "files": [
  2311. "iCalcreator.php"
  2312. ]
  2313. },
  2314. "license": [
  2315. "LGPL-2.1"
  2316. ],
  2317. "authors": [
  2318. {
  2319. "name": "Kjell-Inge Gustafsson",
  2320. "email": "ical@kigkonsult.se"
  2321. }
  2322. ],
  2323. "description": "iCalcreator is a PHP implementation of rfc2445/rfc5545, management of iCal formatted files",
  2324. "homepage": "http://kigkonsult.se",
  2325. "keywords": [
  2326. "calendar",
  2327. "file",
  2328. "format",
  2329. "management",
  2330. "rfc2445",
  2331. "rfc5545"
  2332. ],
  2333. "support": {
  2334. "issues": "http://kigkonsult.se/contact/index.php",
  2335. "source": "https://github.com/ywarnier/iCalcreator/tree/0.1.0"
  2336. },
  2337. "time": "2015-05-03T00:00:00+00:00"
  2338. },
  2339. {
  2340. "name": "knplabs/doctrine-behaviors",
  2341. "version": "1.4.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/KnpLabs/DoctrineBehaviors.git",
  2345. "reference": "c41433f5519d791d2fbdb2164633035c173b9db1"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/KnpLabs/DoctrineBehaviors/zipball/c41433f5519d791d2fbdb2164633035c173b9db1",
  2350. "reference": "c41433f5519d791d2fbdb2164633035c173b9db1",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "behat/transliterator": "~1.0",
  2355. "doctrine/common": ">=2.2",
  2356. "php": ">=5.4"
  2357. },
  2358. "require-dev": {
  2359. "doctrine/orm": ">=2.2",
  2360. "ext-pdo_mysql": "*",
  2361. "ext-pdo_pgsql": "*",
  2362. "ext-pdo_sqlite": "*",
  2363. "hexmedia/yaml-linter": "~0.1",
  2364. "jakub-onderka/php-parallel-lint": "~0.8",
  2365. "phpunit/phpunit": "~4.8"
  2366. },
  2367. "suggest": {
  2368. "symfony/framework-bundle": "To be able to use it as a bundle"
  2369. },
  2370. "type": "library",
  2371. "extra": {
  2372. "branch-alias": {
  2373. "dev-master": "1.1.x-dev"
  2374. }
  2375. },
  2376. "autoload": {
  2377. "psr-4": {
  2378. "Knp\\DoctrineBehaviors\\": "src/"
  2379. }
  2380. },
  2381. "notification-url": "https://packagist.org/downloads/",
  2382. "license": [
  2383. "MIT"
  2384. ],
  2385. "authors": [
  2386. {
  2387. "name": "Knplabs",
  2388. "homepage": "http://knplabs.com"
  2389. }
  2390. ],
  2391. "description": "Doctrine2 behavior traits",
  2392. "homepage": "http://knplabs.com",
  2393. "keywords": [
  2394. "Blameable",
  2395. "behaviors",
  2396. "doctrine2",
  2397. "filterable",
  2398. "softdeletable",
  2399. "timestampable",
  2400. "translatable",
  2401. "tree"
  2402. ],
  2403. "time": "2016-09-30T06:03:12+00:00"
  2404. },
  2405. {
  2406. "name": "knplabs/gaufrette",
  2407. "version": "v0.1.9",
  2408. "source": {
  2409. "type": "git",
  2410. "url": "https://github.com/KnpLabs/Gaufrette.git",
  2411. "reference": "4c73bb66ff41d7c9beb57372a82047cf5dcc6d1c"
  2412. },
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://api.github.com/repos/KnpLabs/Gaufrette/zipball/4c73bb66ff41d7c9beb57372a82047cf5dcc6d1c",
  2416. "reference": "4c73bb66ff41d7c9beb57372a82047cf5dcc6d1c",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "php": ">=5.3.2"
  2421. },
  2422. "require-dev": {
  2423. "amazonwebservices/aws-sdk-for-php": "1.5.*",
  2424. "aws/aws-sdk-php": "~2",
  2425. "doctrine/dbal": ">=2.3",
  2426. "dropbox-php/dropbox-php": "*",
  2427. "google/apiclient": "~1.1",
  2428. "herzult/php-ssh": "*",
  2429. "microsoft/windowsazure": "dev-master",
  2430. "mikey179/vfsstream": "~1.2.0",
  2431. "phpseclib/phpseclib": "dev-master",
  2432. "phpspec/phpspec": "2.0.*",
  2433. "phpunit/phpunit": "3.7.*",
  2434. "rackspace/php-opencloud": "1.9.*"
  2435. },
  2436. "suggest": {
  2437. "amazonwebservices/aws-sdk-for-php": "to use the legacy Amazon S3 adapters",
  2438. "aws/aws-sdk-php": "to use the Amazon S3 adapter",
  2439. "doctrine/dbal": "to use the Doctrine DBAL adapter",
  2440. "dropbox-php/dropbox-php": "to use the Dropbox adapter",
  2441. "ext-apc": "to use the APC adapter",
  2442. "ext-curl": "*",
  2443. "ext-fileinfo": "This extension is used to automatically detect the content-type of a file in the AwsS3, OpenCloud, AzureBlogStorage and GoogleCloudStorage adapters",
  2444. "ext-mbstring": "*",
  2445. "ext-mongo": "*",
  2446. "ext-zip": "to use the Zip adapter",
  2447. "google/apiclient": "to use GoogleCloudStorage adapter",
  2448. "herzult/php-ssh": "to use SFtp adapter",
  2449. "knplabs/knp-gaufrette-bundle": "to use with Symfony2",
  2450. "microsoft/windowsazure": "to use Microsoft Azure Blob Storage adapter",
  2451. "phpseclib/phpseclib": "to use PhpseclibSftp adapter",
  2452. "rackspace/php-opencloud": "to use Opencloud adapter"
  2453. },
  2454. "type": "library",
  2455. "extra": {
  2456. "branch-alias": {
  2457. "dev-master": "0.2.x-dev"
  2458. }
  2459. },
  2460. "autoload": {
  2461. "psr-0": {
  2462. "Gaufrette": "src/"
  2463. }
  2464. },
  2465. "notification-url": "https://packagist.org/downloads/",
  2466. "license": [
  2467. "MIT"
  2468. ],
  2469. "authors": [
  2470. {
  2471. "name": "The contributors",
  2472. "homepage": "http://github.com/knplabs/Gaufrette/contributors"
  2473. },
  2474. {
  2475. "name": "KnpLabs Team",
  2476. "homepage": "http://knplabs.com"
  2477. }
  2478. ],
  2479. "description": "PHP5 library that provides a filesystem abstraction layer",
  2480. "homepage": "http://knplabs.com",
  2481. "keywords": [
  2482. "abstraction",
  2483. "file",
  2484. "filesystem",
  2485. "media"
  2486. ],
  2487. "time": "2015-03-09T08:06:57+00:00"
  2488. },
  2489. {
  2490. "name": "knplabs/knp-menu",
  2491. "version": "2.2.0",
  2492. "source": {
  2493. "type": "git",
  2494. "url": "https://github.com/KnpLabs/KnpMenu.git",
  2495. "reference": "964b5b3ca7fd23019147991f4f75f361d061eb20"
  2496. },
  2497. "dist": {
  2498. "type": "zip",
  2499. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/964b5b3ca7fd23019147991f4f75f361d061eb20",
  2500. "reference": "964b5b3ca7fd23019147991f4f75f361d061eb20",
  2501. "shasum": ""
  2502. },
  2503. "require": {
  2504. "php": ">=5.3.0"
  2505. },
  2506. "require-dev": {
  2507. "pimple/pimple": "~1.0",
  2508. "silex/silex": "~1.0",
  2509. "symfony/phpunit-bridge": "~2.7|~3.0",
  2510. "symfony/routing": "~2.3|~3.0",
  2511. "twig/twig": "~1.16|~2.0"
  2512. },
  2513. "suggest": {
  2514. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  2515. "silex/silex": "for the integration with your silex application",
  2516. "twig/twig": "for the TwigRenderer and the integration with your templates"
  2517. },
  2518. "type": "library",
  2519. "extra": {
  2520. "branch-alias": {
  2521. "dev-master": "2.2-dev"
  2522. }
  2523. },
  2524. "autoload": {
  2525. "psr-4": {
  2526. "Knp\\Menu\\": "src/Knp/Menu"
  2527. }
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Christophe Coevoet",
  2536. "email": "stof@notk.org"
  2537. },
  2538. {
  2539. "name": "Knplabs",
  2540. "homepage": "http://knplabs.com"
  2541. },
  2542. {
  2543. "name": "Symfony Community",
  2544. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  2545. }
  2546. ],
  2547. "description": "An object oriented menu library",
  2548. "homepage": "http://knplabs.com",
  2549. "keywords": [
  2550. "menu",
  2551. "tree"
  2552. ],
  2553. "time": "2016-09-22T07:36:19+00:00"
  2554. },
  2555. {
  2556. "name": "knplabs/knp-menu-bundle",
  2557. "version": "2.1.3",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  2561. "reference": "0e4af7209dc03e39c51ec70b68ab2ba3177c25de"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/0e4af7209dc03e39c51ec70b68ab2ba3177c25de",
  2566. "reference": "0e4af7209dc03e39c51ec70b68ab2ba3177c25de",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "knplabs/knp-menu": "~2.2",
  2571. "symfony/framework-bundle": "~2.3|~3.0"
  2572. },
  2573. "require-dev": {
  2574. "symfony/expression-language": "~2.4|~3.0",
  2575. "symfony/phpunit-bridge": "~2.7|~3.0"
  2576. },
  2577. "type": "symfony-bundle",
  2578. "extra": {
  2579. "branch-alias": {
  2580. "dev-master": "2.2.x-dev"
  2581. }
  2582. },
  2583. "autoload": {
  2584. "psr-4": {
  2585. "Knp\\Bundle\\MenuBundle\\": ""
  2586. }
  2587. },
  2588. "notification-url": "https://packagist.org/downloads/",
  2589. "license": [
  2590. "MIT"
  2591. ],
  2592. "authors": [
  2593. {
  2594. "name": "Christophe Coevoet",
  2595. "email": "stof@notk.org"
  2596. },
  2597. {
  2598. "name": "KnpLabs",
  2599. "homepage": "http://knplabs.com"
  2600. },
  2601. {
  2602. "name": "Symfony Community",
  2603. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  2604. }
  2605. ],
  2606. "description": "This bundle provides an integration of the KnpMenu library",
  2607. "keywords": [
  2608. "menu"
  2609. ],
  2610. "time": "2016-09-22T12:24:40+00:00"
  2611. },
  2612. {
  2613. "name": "media-alchemyst/media-alchemyst",
  2614. "version": "0.5.1",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/alchemy-fr/Media-Alchemyst.git",
  2618. "reference": "b82bb891640cb1ce5d5523235047c34c64194514"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/alchemy-fr/Media-Alchemyst/zipball/b82bb891640cb1ce5d5523235047c34c64194514",
  2623. "reference": "b82bb891640cb1ce5d5523235047c34c64194514",
  2624. "shasum": ""
  2625. },
  2626. "require": {
  2627. "alchemy/ghostscript": "~0.4.0",
  2628. "alchemy/mediavorus": "^0.4.4",
  2629. "imagine/imagine": "^0.6.2",
  2630. "monolog/monolog": "~1.0",
  2631. "neutron/temporary-filesystem": "^2.1.1",
  2632. "php": ">=5.3.3",
  2633. "php-ffmpeg/php-ffmpeg": ">=0.4.2,<0.6",
  2634. "php-mp4box/php-mp4box": "~0.3.0",
  2635. "php-unoconv/php-unoconv": "~0.3.0",
  2636. "pimple/pimple": "~1.0",
  2637. "swftools/swftools": "~0.3.0",
  2638. "symfony/console": "^2.1|^3.0",
  2639. "symfony/filesystem": "^2.1|^3.0",
  2640. "symfony/process": "^2.1.1|^3.0"
  2641. },
  2642. "require-dev": {
  2643. "alchemy/phpexiftool": "^0.4.0|^0.5.0",
  2644. "neutron/silex-imagine-provider": "~0.1",
  2645. "phpunit/phpunit": "^4.1|^5.0",
  2646. "silex/silex": "~1.0"
  2647. },
  2648. "type": "library",
  2649. "extra": {
  2650. "branch-alias": {
  2651. "dev-master": "0.5.x-dev"
  2652. }
  2653. },
  2654. "autoload": {
  2655. "psr-0": {
  2656. "MediaAlchemyst": "src"
  2657. }
  2658. },
  2659. "notification-url": "https://packagist.org/downloads/",
  2660. "license": [
  2661. "MIT"
  2662. ],
  2663. "authors": [
  2664. {
  2665. "name": "Romain Neutron",
  2666. "email": "imprec@gmail.com",
  2667. "homepage": "http://www.lickmychip.com/"
  2668. },
  2669. {
  2670. "name": "Phraseanet Team",
  2671. "email": "info@alchemy.fr",
  2672. "homepage": "http://www.phraseanet.com/"
  2673. }
  2674. ],
  2675. "description": "An Object Oriented wrapper for easy multimedia conversion, based on Imagine, FFMpeg, SwfTools, Unoconv and other libs",
  2676. "keywords": [
  2677. "audio",
  2678. "audio processing",
  2679. "image",
  2680. "image processing",
  2681. "video",
  2682. "video processing"
  2683. ],
  2684. "time": "2016-03-16T13:11:52+00:00"
  2685. },
  2686. {
  2687. "name": "michelf/php-markdown",
  2688. "version": "1.7.0",
  2689. "source": {
  2690. "type": "git",
  2691. "url": "https://github.com/michelf/php-markdown.git",
  2692. "reference": "1f51cc520948f66cd2af8cbc45a5ee175e774220"
  2693. },
  2694. "dist": {
  2695. "type": "zip",
  2696. "url": "https://api.github.com/repos/michelf/php-markdown/zipball/1f51cc520948f66cd2af8cbc45a5ee175e774220",
  2697. "reference": "1f51cc520948f66cd2af8cbc45a5ee175e774220",
  2698. "shasum": ""
  2699. },
  2700. "require": {
  2701. "php": ">=5.3.0"
  2702. },
  2703. "type": "library",
  2704. "extra": {
  2705. "branch-alias": {
  2706. "dev-lib": "1.4.x-dev"
  2707. }
  2708. },
  2709. "autoload": {
  2710. "psr-0": {
  2711. "Michelf": ""
  2712. }
  2713. },
  2714. "notification-url": "https://packagist.org/downloads/",
  2715. "license": [
  2716. "BSD-3-Clause"
  2717. ],
  2718. "authors": [
  2719. {
  2720. "name": "Michel Fortin",
  2721. "email": "michel.fortin@michelf.ca",
  2722. "homepage": "https://michelf.ca/",
  2723. "role": "Developer"
  2724. },
  2725. {
  2726. "name": "John Gruber",
  2727. "homepage": "https://daringfireball.net/"
  2728. }
  2729. ],
  2730. "description": "PHP Markdown",
  2731. "homepage": "https://michelf.ca/projects/php-markdown/",
  2732. "keywords": [
  2733. "markdown"
  2734. ],
  2735. "time": "2016-10-29T18:58:20+00:00"
  2736. },
  2737. {
  2738. "name": "monolog/monolog",
  2739. "version": "1.22.0",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/Seldaek/monolog.git",
  2743. "reference": "bad29cb8d18ab0315e6c477751418a82c850d558"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bad29cb8d18ab0315e6c477751418a82c850d558",
  2748. "reference": "bad29cb8d18ab0315e6c477751418a82c850d558",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "php": ">=5.3.0",
  2753. "psr/log": "~1.0"
  2754. },
  2755. "provide": {
  2756. "psr/log-implementation": "1.0.0"
  2757. },
  2758. "require-dev": {
  2759. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2760. "doctrine/couchdb": "~1.0@dev",
  2761. "graylog2/gelf-php": "~1.0",
  2762. "jakub-onderka/php-parallel-lint": "0.9",
  2763. "php-amqplib/php-amqplib": "~2.4",
  2764. "php-console/php-console": "^3.1.3",
  2765. "phpunit/phpunit": "~4.5",
  2766. "phpunit/phpunit-mock-objects": "2.3.0",
  2767. "ruflin/elastica": ">=0.90 <3.0",
  2768. "sentry/sentry": "^0.13",
  2769. "swiftmailer/swiftmailer": "~5.3"
  2770. },
  2771. "suggest": {
  2772. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2773. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2774. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2775. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2776. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2777. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2778. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2779. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2780. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2781. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2782. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2783. },
  2784. "type": "library",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-master": "2.0.x-dev"
  2788. }
  2789. },
  2790. "autoload": {
  2791. "psr-4": {
  2792. "Monolog\\": "src/Monolog"
  2793. }
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "Jordi Boggiano",
  2802. "email": "j.boggiano@seld.be",
  2803. "homepage": "http://seld.be"
  2804. }
  2805. ],
  2806. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2807. "homepage": "http://github.com/Seldaek/monolog",
  2808. "keywords": [
  2809. "log",
  2810. "logging",
  2811. "psr-3"
  2812. ],
  2813. "time": "2016-11-26T00:15:39+00:00"
  2814. },
  2815. {
  2816. "name": "mpdf/mpdf",
  2817. "version": "v6.1.3",
  2818. "source": {
  2819. "type": "git",
  2820. "url": "https://github.com/mpdf/mpdf.git",
  2821. "reference": "7f138bf7508eac895ac2c13d2509b056ac7e7e97"
  2822. },
  2823. "dist": {
  2824. "type": "zip",
  2825. "url": "https://api.github.com/repos/mpdf/mpdf/zipball/7f138bf7508eac895ac2c13d2509b056ac7e7e97",
  2826. "reference": "7f138bf7508eac895ac2c13d2509b056ac7e7e97",
  2827. "shasum": ""
  2828. },
  2829. "require": {
  2830. "ext-mbstring": "*",
  2831. "php": ">=5.4.0",
  2832. "setasign/fpdi": "1.6.*"
  2833. },
  2834. "require-dev": {
  2835. "phpunit/phpunit": "^4.7"
  2836. },
  2837. "suggest": {
  2838. "ext-zlib": "Needed for compression of embedded resources, such as fonts"
  2839. },
  2840. "type": "library",
  2841. "autoload": {
  2842. "classmap": [
  2843. "mpdf.php",
  2844. "classes"
  2845. ]
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "GPL-2.0"
  2850. ],
  2851. "authors": [
  2852. {
  2853. "name": "Ian Back",
  2854. "role": "Developer"
  2855. }
  2856. ],
  2857. "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
  2858. "homepage": "http://mpdf.github.io",
  2859. "keywords": [
  2860. "pdf",
  2861. "php",
  2862. "utf-8"
  2863. ],
  2864. "time": "2016-12-12T10:42:18+00:00"
  2865. },
  2866. {
  2867. "name": "neutron/temporary-filesystem",
  2868. "version": "2.2.0",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  2872. "reference": "0a72a1c858b95fd469d87baa333f627978504ea8"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/0a72a1c858b95fd469d87baa333f627978504ea8",
  2877. "reference": "0a72a1c858b95fd469d87baa333f627978504ea8",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "php": "^5.3.9 || ^7.0",
  2882. "symfony/filesystem": "^2.3 || ^3.0"
  2883. },
  2884. "require-dev": {
  2885. "phpunit/phpunit": "^4.8"
  2886. },
  2887. "type": "library",
  2888. "autoload": {
  2889. "psr-0": {
  2890. "Neutron": "src"
  2891. }
  2892. },
  2893. "notification-url": "https://packagist.org/downloads/",
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "authors": [
  2898. {
  2899. "name": "Romain Neutron",
  2900. "email": "imprec@gmail.com"
  2901. }
  2902. ],
  2903. "description": "Symfony filesystem extension to handle temporary files",
  2904. "time": "2016-03-05T10:22:50+00:00"
  2905. },
  2906. {
  2907. "name": "ocramius/package-versions",
  2908. "version": "1.1.2",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/Ocramius/PackageVersions.git",
  2912. "reference": "51e867c70f0799790b3e82276875414ce13daaca"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/51e867c70f0799790b3e82276875414ce13daaca",
  2917. "reference": "51e867c70f0799790b3e82276875414ce13daaca",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "composer-plugin-api": "^1.0",
  2922. "php": "~7.0"
  2923. },
  2924. "require-dev": {
  2925. "composer/composer": "^1.3",
  2926. "ext-zip": "*",
  2927. "phpunit/phpunit": "^5.4.7"
  2928. },
  2929. "type": "composer-plugin",
  2930. "extra": {
  2931. "class": "PackageVersions\\Installer",
  2932. "branch-alias": {
  2933. "dev-master": "2.0.x-dev"
  2934. }
  2935. },
  2936. "autoload": {
  2937. "psr-4": {
  2938. "PackageVersions\\": "src/PackageVersions"
  2939. }
  2940. },
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Marco Pivetta",
  2948. "email": "ocramius@gmail.com"
  2949. }
  2950. ],
  2951. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  2952. "time": "2016-12-30T09:49:15+00:00"
  2953. },
  2954. {
  2955. "name": "ocramius/proxy-manager",
  2956. "version": "2.1.0",
  2957. "source": {
  2958. "type": "git",
  2959. "url": "https://github.com/Ocramius/ProxyManager.git",
  2960. "reference": "d9e5a00ca2d87b7e0f1bff36b897e02afd7d5435"
  2961. },
  2962. "dist": {
  2963. "type": "zip",
  2964. "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/d9e5a00ca2d87b7e0f1bff36b897e02afd7d5435",
  2965. "reference": "d9e5a00ca2d87b7e0f1bff36b897e02afd7d5435",
  2966. "shasum": ""
  2967. },
  2968. "require": {
  2969. "ocramius/package-versions": "^1.1.1",
  2970. "php": "^7.1.0",
  2971. "zendframework/zend-code": "^3.1.0"
  2972. },
  2973. "require-dev": {
  2974. "couscous/couscous": "^1.5.2",
  2975. "ext-phar": "*",
  2976. "humbug/humbug": "dev-master@DEV",
  2977. "phpbench/phpbench": "^0.12.2",
  2978. "phpunit/phpunit": "^5.6.4",
  2979. "phpunit/phpunit-mock-objects": "^3.4.1",
  2980. "squizlabs/php_codesniffer": "^2.7.0"
  2981. },
  2982. "suggest": {
  2983. "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
  2984. "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
  2985. "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)",
  2986. "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)"
  2987. },
  2988. "type": "library",
  2989. "extra": {
  2990. "branch-alias": {
  2991. "dev-master": "3.0.x-dev"
  2992. }
  2993. },
  2994. "autoload": {
  2995. "psr-0": {
  2996. "ProxyManager\\": "src"
  2997. }
  2998. },
  2999. "notification-url": "https://packagist.org/downloads/",
  3000. "license": [
  3001. "MIT"
  3002. ],
  3003. "authors": [
  3004. {
  3005. "name": "Marco Pivetta",
  3006. "email": "ocramius@gmail.com",
  3007. "homepage": "http://ocramius.github.io/"
  3008. }
  3009. ],
  3010. "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
  3011. "homepage": "https://github.com/Ocramius/ProxyManager",
  3012. "keywords": [
  3013. "aop",
  3014. "lazy loading",
  3015. "proxy",
  3016. "proxy pattern",
  3017. "service proxies"
  3018. ],
  3019. "time": "2016-11-30T15:45:00+00:00"
  3020. },
  3021. {
  3022. "name": "paragonie/random_compat",
  3023. "version": "v2.0.9",
  3024. "source": {
  3025. "type": "git",
  3026. "url": "https://github.com/paragonie/random_compat.git",
  3027. "reference": "6968531206671f94377b01dc7888d5d1b858a01b"
  3028. },
  3029. "dist": {
  3030. "type": "zip",
  3031. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/6968531206671f94377b01dc7888d5d1b858a01b",
  3032. "reference": "6968531206671f94377b01dc7888d5d1b858a01b",
  3033. "shasum": ""
  3034. },
  3035. "require": {
  3036. "php": ">=5.2.0"
  3037. },
  3038. "require-dev": {
  3039. "phpunit/phpunit": "4.*|5.*"
  3040. },
  3041. "suggest": {
  3042. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3043. },
  3044. "type": "library",
  3045. "autoload": {
  3046. "files": [
  3047. "lib/random.php"
  3048. ]
  3049. },
  3050. "notification-url": "https://packagist.org/downloads/",
  3051. "license": [
  3052. "MIT"
  3053. ],
  3054. "authors": [
  3055. {
  3056. "name": "Paragon Initiative Enterprises",
  3057. "email": "security@paragonie.com",
  3058. "homepage": "https://paragonie.com"
  3059. }
  3060. ],
  3061. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3062. "keywords": [
  3063. "csprng",
  3064. "pseudorandom",
  3065. "random"
  3066. ],
  3067. "time": "2017-03-03T20:43:42+00:00"
  3068. },
  3069. {
  3070. "name": "patchwork/utf8",
  3071. "version": "v1.3.1",
  3072. "source": {
  3073. "type": "git",
  3074. "url": "https://github.com/tchwork/utf8.git",
  3075. "reference": "30ec6451aec7d2536f0af8fe535f70c764f2c47a"
  3076. },
  3077. "dist": {
  3078. "type": "zip",
  3079. "url": "https://api.github.com/repos/tchwork/utf8/zipball/30ec6451aec7d2536f0af8fe535f70c764f2c47a",
  3080. "reference": "30ec6451aec7d2536f0af8fe535f70c764f2c47a",
  3081. "shasum": ""
  3082. },
  3083. "require": {
  3084. "lib-pcre": ">=7.3",
  3085. "php": ">=5.3.0"
  3086. },
  3087. "suggest": {
  3088. "ext-iconv": "Use iconv for best performance",
  3089. "ext-intl": "Use Intl for best performance",
  3090. "ext-mbstring": "Use Mbstring for best performance",
  3091. "ext-wfio": "Use WFIO for UTF-8 filesystem access on Windows"
  3092. },
  3093. "type": "library",
  3094. "extra": {
  3095. "branch-alias": {
  3096. "dev-master": "1.3-dev"
  3097. }
  3098. },
  3099. "autoload": {
  3100. "psr-4": {
  3101. "Patchwork\\": "src/Patchwork/"
  3102. },
  3103. "classmap": [
  3104. "src/Normalizer.php"
  3105. ]
  3106. },
  3107. "notification-url": "https://packagist.org/downloads/",
  3108. "license": [
  3109. "(Apache-2.0 or GPL-2.0)"
  3110. ],
  3111. "authors": [
  3112. {
  3113. "name": "Nicolas Grekas",
  3114. "email": "p@tchwork.com"
  3115. }
  3116. ],
  3117. "description": "Portable and performant UTF-8, Unicode and Grapheme Clusters for PHP",
  3118. "homepage": "https://github.com/tchwork/utf8",
  3119. "keywords": [
  3120. "grapheme",
  3121. "i18n",
  3122. "unicode",
  3123. "utf-8",
  3124. "utf8"
  3125. ],
  3126. "time": "2016-05-18T13:57:10+00:00"
  3127. },
  3128. {
  3129. "name": "pclzip/pclzip",
  3130. "version": "2.8.2",
  3131. "source": {
  3132. "type": "git",
  3133. "url": "https://github.com/ivanlanin/pclzip.git",
  3134. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd"
  3135. },
  3136. "dist": {
  3137. "type": "zip",
  3138. "url": "https://api.github.com/repos/ivanlanin/pclzip/zipball/19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  3139. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  3140. "shasum": ""
  3141. },
  3142. "type": "library",
  3143. "autoload": {
  3144. "classmap": [
  3145. "pclzip.lib.php"
  3146. ]
  3147. },
  3148. "notification-url": "https://packagist.org/downloads/",
  3149. "license": [
  3150. "LGPL-2.1"
  3151. ],
  3152. "authors": [
  3153. {
  3154. "name": "Vincent Blavet"
  3155. }
  3156. ],
  3157. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  3158. "homepage": "http://www.phpconcept.net/pclzip",
  3159. "keywords": [
  3160. "php",
  3161. "zip"
  3162. ],
  3163. "time": "2014-06-05T11:42:24+00:00"
  3164. },
  3165. {
  3166. "name": "php-ffmpeg/php-ffmpeg",
  3167. "version": "0.5.1",
  3168. "source": {
  3169. "type": "git",
  3170. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  3171. "reference": "c8949fe3df89edd7692368cc110a51a27971f28a"
  3172. },
  3173. "dist": {
  3174. "type": "zip",
  3175. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/c8949fe3df89edd7692368cc110a51a27971f28a",
  3176. "reference": "c8949fe3df89edd7692368cc110a51a27971f28a",
  3177. "shasum": ""
  3178. },
  3179. "require": {
  3180. "alchemy/binary-driver": "~1.5",
  3181. "doctrine/cache": "~1.0",
  3182. "evenement/evenement": "~1.0",
  3183. "neutron/temporary-filesystem": "~2.1, >=2.1.1",
  3184. "php": ">=5.3.3"
  3185. },
  3186. "require-dev": {
  3187. "phpunit/phpunit": "~3.7",
  3188. "sami/sami": "~1.0",
  3189. "silex/silex": "~1.0"
  3190. },
  3191. "suggest": {
  3192. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  3193. },
  3194. "type": "library",
  3195. "extra": {
  3196. "branch-alias": {
  3197. "dev-master": "0.5-dev"
  3198. }
  3199. },
  3200. "autoload": {
  3201. "psr-0": {
  3202. "FFMpeg": "src"
  3203. }
  3204. },
  3205. "notification-url": "https://packagist.org/downloads/",
  3206. "license": [
  3207. "MIT"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "Romain Neutron",
  3212. "email": "imprec@gmail.com",
  3213. "homepage": "http://www.lickmychip.com/"
  3214. },
  3215. {
  3216. "name": "Phraseanet Team",
  3217. "email": "info@alchemy.fr",
  3218. "homepage": "http://www.phraseanet.com/"
  3219. }
  3220. ],
  3221. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  3222. "keywords": [
  3223. "audio",
  3224. "audio processing",
  3225. "avconv",
  3226. "avprobe",
  3227. "ffmpeg",
  3228. "ffprobe",
  3229. "video",
  3230. "video processing"
  3231. ],
  3232. "time": "2014-08-26T08:46:56+00:00"
  3233. },
  3234. {
  3235. "name": "php-mp4box/php-mp4box",
  3236. "version": "0.3.0",
  3237. "source": {
  3238. "type": "git",
  3239. "url": "https://github.com/alchemy-fr/PHP-MP4Box.git",
  3240. "reference": "baa466be3f6d0b46d27bc0e255e958a95cb7738c"
  3241. },
  3242. "dist": {
  3243. "type": "zip",
  3244. "url": "https://api.github.com/repos/alchemy-fr/PHP-MP4Box/zipball/baa466be3f6d0b46d27bc0e255e958a95cb7738c",
  3245. "reference": "baa466be3f6d0b46d27bc0e255e958a95cb7738c",
  3246. "shasum": ""
  3247. },
  3248. "require": {
  3249. "alchemy/binary-driver": "~1.5",
  3250. "php": ">=5.3.3"
  3251. },
  3252. "require-dev": {
  3253. "phpunit/phpunit": "~3.7",
  3254. "silex/silex": "~1.0"
  3255. },
  3256. "type": "library",
  3257. "autoload": {
  3258. "psr-0": {
  3259. "MP4Box": "src"
  3260. }
  3261. },
  3262. "notification-url": "https://packagist.org/downloads/",
  3263. "license": [
  3264. "MIT"
  3265. ],
  3266. "authors": [
  3267. {
  3268. "name": "Romain Neutron",
  3269. "email": "imprec@gmail.com",
  3270. "homepage": "http://www.lickmychip.com/"
  3271. },
  3272. {
  3273. "name": "Phraseanet Team",
  3274. "email": "info@alchemy.fr",
  3275. "homepage": "http://www.phraseanet.com/"
  3276. }
  3277. ],
  3278. "description": "PHP MP4Box, an Object Oriented library for easy file conversion with MP4 Box",
  3279. "keywords": [
  3280. "gpac",
  3281. "mp4box"
  3282. ],
  3283. "time": "2013-06-25T10:13:06+00:00"
  3284. },
  3285. {
  3286. "name": "php-unoconv/php-unoconv",
  3287. "version": "0.3.0",
  3288. "source": {
  3289. "type": "git",
  3290. "url": "https://github.com/alchemy-fr/PHP-Unoconv.git",
  3291. "reference": "6d1e14a7467b5d637741396549529dc4d5f9f355"
  3292. },
  3293. "dist": {
  3294. "type": "zip",
  3295. "url": "https://api.github.com/repos/alchemy-fr/PHP-Unoconv/zipball/6d1e14a7467b5d637741396549529dc4d5f9f355",
  3296. "reference": "6d1e14a7467b5d637741396549529dc4d5f9f355",
  3297. "shasum": ""
  3298. },
  3299. "require": {
  3300. "alchemy/binary-driver": "~1.5",
  3301. "php": ">=5.3.3"
  3302. },
  3303. "require-dev": {
  3304. "phpunit/phpunit": "~3.7",
  3305. "silex/silex": "~1.0"
  3306. },
  3307. "type": "library",
  3308. "autoload": {
  3309. "psr-0": {
  3310. "Unoconv": "src"
  3311. }
  3312. },
  3313. "notification-url": "https://packagist.org/downloads/",
  3314. "license": [
  3315. "MIT"
  3316. ],
  3317. "authors": [
  3318. {
  3319. "name": "Romain Neutron",
  3320. "email": "imprec@gmail.com",
  3321. "homepage": "http://www.lickmychip.com/"
  3322. },
  3323. {
  3324. "name": "Phraseanet Team",
  3325. "email": "info@alchemy.fr",
  3326. "homepage": "http://www.phraseanet.com/"
  3327. }
  3328. ],
  3329. "description": "Unoconv PHP, an Object Oriented library for easy file conversion with LibreOffice's unoconv",
  3330. "keywords": [
  3331. "unoconv"
  3332. ],
  3333. "time": "2013-06-25T10:09:59+00:00"
  3334. },
  3335. {
  3336. "name": "phpexiftool/exiftool",
  3337. "version": "10.10",
  3338. "source": {
  3339. "type": "git",
  3340. "url": "https://github.com/alchemy-fr/exiftool.git",
  3341. "reference": "0833cab894c890353192a83011428525a318bedf"
  3342. },
  3343. "dist": {
  3344. "type": "zip",
  3345. "url": "https://api.github.com/repos/alchemy-fr/exiftool/zipball/0833cab894c890353192a83011428525a318bedf",
  3346. "reference": "0833cab894c890353192a83011428525a318bedf",
  3347. "shasum": ""
  3348. },
  3349. "type": "library",
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "Perl Licensing"
  3353. ],
  3354. "authors": [
  3355. {
  3356. "name": "Phil Harvey",
  3357. "email": "phil@owl.phy.queensu.ca",
  3358. "homepage": "http://www.sno.phy.queensu.ca/~phil/exiftool/"
  3359. }
  3360. ],
  3361. "description": "Exiftool is a library for reading, writing and editing meta information. This package is not PHP, but required for the main PHP driver : PHP Exiftool",
  3362. "keywords": [
  3363. "exiftool",
  3364. "metadatas"
  3365. ],
  3366. "time": "2016-01-25T11:10:14+00:00"
  3367. },
  3368. {
  3369. "name": "phpoffice/phpexcel",
  3370. "version": "1.8.1",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/PHPOffice/PHPExcel.git",
  3374. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  3379. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  3380. "shasum": ""
  3381. },
  3382. "require": {
  3383. "ext-xml": "*",
  3384. "ext-xmlwriter": "*",
  3385. "php": ">=5.2.0"
  3386. },
  3387. "type": "library",
  3388. "autoload": {
  3389. "psr-0": {
  3390. "PHPExcel": "Classes/"
  3391. }
  3392. },
  3393. "notification-url": "https://packagist.org/downloads/",
  3394. "license": [
  3395. "LGPL"
  3396. ],
  3397. "authors": [
  3398. {
  3399. "name": "Maarten Balliauw",
  3400. "homepage": "http://blog.maartenballiauw.be"
  3401. },
  3402. {
  3403. "name": "Mark Baker"
  3404. },
  3405. {
  3406. "name": "Franck Lefevre",
  3407. "homepage": "http://blog.rootslabs.net"
  3408. },
  3409. {
  3410. "name": "Erik Tilt"
  3411. }
  3412. ],
  3413. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3414. "homepage": "http://phpexcel.codeplex.com",
  3415. "keywords": [
  3416. "OpenXML",
  3417. "excel",
  3418. "php",
  3419. "spreadsheet",
  3420. "xls",
  3421. "xlsx"
  3422. ],
  3423. "time": "2015-05-01T07:00:55+00:00"
  3424. },
  3425. {
  3426. "name": "phpoffice/phpword",
  3427. "version": "v0.12.1",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/PHPOffice/PHPWord.git",
  3431. "reference": "38cb04d322007dd522cbdd8ba3cd50ab67ced0db"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/38cb04d322007dd522cbdd8ba3cd50ab67ced0db",
  3436. "reference": "38cb04d322007dd522cbdd8ba3cd50ab67ced0db",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "ext-xml": "*",
  3441. "php": ">=5.3.3"
  3442. },
  3443. "require-dev": {
  3444. "dompdf/dompdf": "0.6.*",
  3445. "mpdf/mpdf": "5.*",
  3446. "phpdocumentor/phpdocumentor": "2.*",
  3447. "phploc/phploc": "2.*",
  3448. "phpmd/phpmd": "2.*",
  3449. "phpunit/phpunit": "3.7.*",
  3450. "sebastian/phpcpd": "2.*",
  3451. "squizlabs/php_codesniffer": "1.*",
  3452. "tecnick.com/tcpdf": "6.*"
  3453. },
  3454. "suggest": {
  3455. "dompdf/dompdf": "Used to write PDF",
  3456. "ext-gd2": "Used to add images",
  3457. "ext-xmlwriter": "Used to write DOCX and ODT",
  3458. "ext-xsl": "Used to apply XSL style sheet to main document part of OOXML template",
  3459. "ext-zip": "Used to write DOCX and ODT"
  3460. },
  3461. "type": "library",
  3462. "autoload": {
  3463. "psr-4": {
  3464. "PhpOffice\\PhpWord\\": "src/PhpWord"
  3465. }
  3466. },
  3467. "notification-url": "https://packagist.org/downloads/",
  3468. "license": [
  3469. "LGPL-3.0"
  3470. ],
  3471. "authors": [
  3472. {
  3473. "name": "Mark Baker"
  3474. },
  3475. {
  3476. "name": "Franck Lefevre",
  3477. "homepage": "http://blog.rootslabs.net"
  3478. },
  3479. {
  3480. "name": "Gabriel Bull",
  3481. "email": "me@gabrielbull.com",
  3482. "homepage": "http://gabrielbull.com/"
  3483. },
  3484. {
  3485. "name": "Ivan Lanin",
  3486. "homepage": "http://ivan.lanin.org"
  3487. },
  3488. {
  3489. "name": "Roman Syroeshko",
  3490. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  3491. }
  3492. ],
  3493. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (DOCX, ODT, RTF, HTML, PDF)",
  3494. "homepage": "http://phpoffice.github.io",
  3495. "keywords": [
  3496. "ISO IEC 29500",
  3497. "OOXML",
  3498. "Office Open XML",
  3499. "OpenDocument",
  3500. "OpenXML",
  3501. "PhpOffice",
  3502. "PhpWord",
  3503. "Rich Text Format",
  3504. "WordprocessingML",
  3505. "doc",
  3506. "docx",
  3507. "html",
  3508. "odt",
  3509. "office",
  3510. "pdf",
  3511. "php",
  3512. "reader",
  3513. "rtf",
  3514. "template",
  3515. "template processor",
  3516. "word",
  3517. "writer"
  3518. ],
  3519. "time": "2015-08-30T14:30:44+00:00"
  3520. },
  3521. {
  3522. "name": "pimple/pimple",
  3523. "version": "v1.1.1",
  3524. "source": {
  3525. "type": "git",
  3526. "url": "https://github.com/silexphp/Pimple.git",
  3527. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d"
  3528. },
  3529. "dist": {
  3530. "type": "zip",
  3531. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  3532. "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d",
  3533. "shasum": ""
  3534. },
  3535. "require": {
  3536. "php": ">=5.3.0"
  3537. },
  3538. "type": "library",
  3539. "extra": {
  3540. "branch-alias": {
  3541. "dev-master": "1.1.x-dev"
  3542. }
  3543. },
  3544. "autoload": {
  3545. "psr-0": {
  3546. "Pimple": "lib/"
  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. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  3560. "homepage": "http://pimple.sensiolabs.org",
  3561. "keywords": [
  3562. "container",
  3563. "dependency injection"
  3564. ],
  3565. "time": "2013-11-22T08:30:29+00:00"
  3566. },
  3567. {
  3568. "name": "psr/cache",
  3569. "version": "1.0.1",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/php-fig/cache.git",
  3573. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3578. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3579. "shasum": ""
  3580. },
  3581. "require": {
  3582. "php": ">=5.3.0"
  3583. },
  3584. "type": "library",
  3585. "extra": {
  3586. "branch-alias": {
  3587. "dev-master": "1.0.x-dev"
  3588. }
  3589. },
  3590. "autoload": {
  3591. "psr-4": {
  3592. "Psr\\Cache\\": "src/"
  3593. }
  3594. },
  3595. "notification-url": "https://packagist.org/downloads/",
  3596. "license": [
  3597. "MIT"
  3598. ],
  3599. "authors": [
  3600. {
  3601. "name": "PHP-FIG",
  3602. "homepage": "http://www.php-fig.org/"
  3603. }
  3604. ],
  3605. "description": "Common interface for caching libraries",
  3606. "keywords": [
  3607. "cache",
  3608. "psr",
  3609. "psr-6"
  3610. ],
  3611. "time": "2016-08-06T20:24:11+00:00"
  3612. },
  3613. {
  3614. "name": "psr/log",
  3615. "version": "1.0.2",
  3616. "source": {
  3617. "type": "git",
  3618. "url": "https://github.com/php-fig/log.git",
  3619. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  3620. },
  3621. "dist": {
  3622. "type": "zip",
  3623. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  3624. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  3625. "shasum": ""
  3626. },
  3627. "require": {
  3628. "php": ">=5.3.0"
  3629. },
  3630. "type": "library",
  3631. "extra": {
  3632. "branch-alias": {
  3633. "dev-master": "1.0.x-dev"
  3634. }
  3635. },
  3636. "autoload": {
  3637. "psr-4": {
  3638. "Psr\\Log\\": "Psr/Log/"
  3639. }
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "MIT"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "PHP-FIG",
  3648. "homepage": "http://www.php-fig.org/"
  3649. }
  3650. ],
  3651. "description": "Common interface for logging libraries",
  3652. "homepage": "https://github.com/php-fig/log",
  3653. "keywords": [
  3654. "log",
  3655. "psr",
  3656. "psr-3"
  3657. ],
  3658. "time": "2016-10-10T12:19:37+00:00"
  3659. },
  3660. {
  3661. "name": "ramsey/array_column",
  3662. "version": "1.1.3",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://github.com/ramsey/array_column.git",
  3666. "reference": "f8e52eb28e67eb50e613b451dd916abcf783c1db"
  3667. },
  3668. "dist": {
  3669. "type": "zip",
  3670. "url": "https://api.github.com/repos/ramsey/array_column/zipball/f8e52eb28e67eb50e613b451dd916abcf783c1db",
  3671. "reference": "f8e52eb28e67eb50e613b451dd916abcf783c1db",
  3672. "shasum": ""
  3673. },
  3674. "require-dev": {
  3675. "jakub-onderka/php-parallel-lint": "0.8.*",
  3676. "phpunit/phpunit": "~4.5",
  3677. "satooshi/php-coveralls": "0.6.*",
  3678. "squizlabs/php_codesniffer": "~2.2"
  3679. },
  3680. "type": "library",
  3681. "autoload": {
  3682. "files": [
  3683. "src/array_column.php"
  3684. ]
  3685. },
  3686. "notification-url": "https://packagist.org/downloads/",
  3687. "license": [
  3688. "MIT"
  3689. ],
  3690. "authors": [
  3691. {
  3692. "name": "Ben Ramsey",
  3693. "homepage": "http://benramsey.com"
  3694. }
  3695. ],
  3696. "description": "Provides functionality for array_column() to projects using PHP earlier than version 5.5.",
  3697. "homepage": "https://github.com/ramsey/array_column",
  3698. "keywords": [
  3699. "array",
  3700. "array_column",
  3701. "column"
  3702. ],
  3703. "time": "2015-03-20T22:07:39+00:00"
  3704. },
  3705. {
  3706. "name": "sabre/vobject",
  3707. "version": "3.5.3",
  3708. "source": {
  3709. "type": "git",
  3710. "url": "https://github.com/fruux/sabre-vobject.git",
  3711. "reference": "129d80533a9ec0d9cacfb50b51180c34edb6874c"
  3712. },
  3713. "dist": {
  3714. "type": "zip",
  3715. "url": "https://api.github.com/repos/fruux/sabre-vobject/zipball/129d80533a9ec0d9cacfb50b51180c34edb6874c",
  3716. "reference": "129d80533a9ec0d9cacfb50b51180c34edb6874c",
  3717. "shasum": ""
  3718. },
  3719. "require": {
  3720. "ext-mbstring": "*",
  3721. "php": ">=5.3.1"
  3722. },
  3723. "require-dev": {
  3724. "phpunit/phpunit": "*",
  3725. "squizlabs/php_codesniffer": "*"
  3726. },
  3727. "bin": [
  3728. "bin/vobject",
  3729. "bin/generate_vcards"
  3730. ],
  3731. "type": "library",
  3732. "extra": {
  3733. "branch-alias": {
  3734. "dev-master": "3.2.x-dev"
  3735. }
  3736. },
  3737. "autoload": {
  3738. "psr-4": {
  3739. "Sabre\\VObject\\": "lib/"
  3740. }
  3741. },
  3742. "notification-url": "https://packagist.org/downloads/",
  3743. "license": [
  3744. "BSD-3-Clause"
  3745. ],
  3746. "authors": [
  3747. {
  3748. "name": "Evert Pot",
  3749. "email": "me@evertpot.com",
  3750. "homepage": "http://evertpot.com/",
  3751. "role": "Developer"
  3752. },
  3753. {
  3754. "name": "Dominik Tobschall",
  3755. "email": "dominik@fruux.com",
  3756. "homepage": "http://tobschall.de/",
  3757. "role": "Developer"
  3758. }
  3759. ],
  3760. "description": "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
  3761. "homepage": "http://sabre.io/vobject/",
  3762. "keywords": [
  3763. "VObject",
  3764. "iCalendar",
  3765. "jCal",
  3766. "jCard",
  3767. "vCard"
  3768. ],
  3769. "time": "2016-10-07T03:20:40+00:00"
  3770. },
  3771. {
  3772. "name": "seld/cli-prompt",
  3773. "version": "1.0.2",
  3774. "source": {
  3775. "type": "git",
  3776. "url": "https://github.com/Seldaek/cli-prompt.git",
  3777. "reference": "8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4"
  3778. },
  3779. "dist": {
  3780. "type": "zip",
  3781. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4",
  3782. "reference": "8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4",
  3783. "shasum": ""
  3784. },
  3785. "require": {
  3786. "php": ">=5.3"
  3787. },
  3788. "type": "library",
  3789. "extra": {
  3790. "branch-alias": {
  3791. "dev-master": "1.x-dev"
  3792. }
  3793. },
  3794. "autoload": {
  3795. "psr-4": {
  3796. "Seld\\CliPrompt\\": "src/"
  3797. }
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "MIT"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Jordi Boggiano",
  3806. "email": "j.boggiano@seld.be"
  3807. }
  3808. ],
  3809. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  3810. "keywords": [
  3811. "cli",
  3812. "console",
  3813. "hidden",
  3814. "input",
  3815. "prompt"
  3816. ],
  3817. "time": "2016-04-18T09:31:41+00:00"
  3818. },
  3819. {
  3820. "name": "seld/jsonlint",
  3821. "version": "1.6.0",
  3822. "source": {
  3823. "type": "git",
  3824. "url": "https://github.com/Seldaek/jsonlint.git",
  3825. "reference": "791f8c594f300d246cdf01c6b3e1e19611e301d8"
  3826. },
  3827. "dist": {
  3828. "type": "zip",
  3829. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/791f8c594f300d246cdf01c6b3e1e19611e301d8",
  3830. "reference": "791f8c594f300d246cdf01c6b3e1e19611e301d8",
  3831. "shasum": ""
  3832. },
  3833. "require": {
  3834. "php": "^5.3 || ^7.0"
  3835. },
  3836. "require-dev": {
  3837. "phpunit/phpunit": "^4.5"
  3838. },
  3839. "bin": [
  3840. "bin/jsonlint"
  3841. ],
  3842. "type": "library",
  3843. "autoload": {
  3844. "psr-4": {
  3845. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  3846. }
  3847. },
  3848. "notification-url": "https://packagist.org/downloads/",
  3849. "license": [
  3850. "MIT"
  3851. ],
  3852. "authors": [
  3853. {
  3854. "name": "Jordi Boggiano",
  3855. "email": "j.boggiano@seld.be",
  3856. "homepage": "http://seld.be"
  3857. }
  3858. ],
  3859. "description": "JSON Linter",
  3860. "keywords": [
  3861. "json",
  3862. "linter",
  3863. "parser",
  3864. "validator"
  3865. ],
  3866. "time": "2017-03-06T16:42:24+00:00"
  3867. },
  3868. {
  3869. "name": "seld/phar-utils",
  3870. "version": "1.0.1",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/Seldaek/phar-utils.git",
  3874. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  3879. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  3880. "shasum": ""
  3881. },
  3882. "require": {
  3883. "php": ">=5.3"
  3884. },
  3885. "type": "library",
  3886. "extra": {
  3887. "branch-alias": {
  3888. "dev-master": "1.x-dev"
  3889. }
  3890. },
  3891. "autoload": {
  3892. "psr-4": {
  3893. "Seld\\PharUtils\\": "src/"
  3894. }
  3895. },
  3896. "notification-url": "https://packagist.org/downloads/",
  3897. "license": [
  3898. "MIT"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "Jordi Boggiano",
  3903. "email": "j.boggiano@seld.be"
  3904. }
  3905. ],
  3906. "description": "PHAR file format utilities, for when PHP phars you up",
  3907. "keywords": [
  3908. "phra"
  3909. ],
  3910. "time": "2015-10-13T18:44:15+00:00"
  3911. },
  3912. {
  3913. "name": "setasign/fpdi",
  3914. "version": "1.6.1",
  3915. "source": {
  3916. "type": "git",
  3917. "url": "https://github.com/Setasign/FPDI.git",
  3918. "reference": "5b899b2b41463bf261aa69840fd30b50950a500c"
  3919. },
  3920. "dist": {
  3921. "type": "zip",
  3922. "url": "https://api.github.com/repos/Setasign/FPDI/zipball/5b899b2b41463bf261aa69840fd30b50950a500c",
  3923. "reference": "5b899b2b41463bf261aa69840fd30b50950a500c",
  3924. "shasum": ""
  3925. },
  3926. "suggest": {
  3927. "setasign/fpdf": "FPDI will extend this class but as it is also possible to use \"tecnickcom/tcpdf\" as an alternative there's no fixed dependency configured.",
  3928. "setasign/fpdi-fpdf": "Use this package to automatically evaluate dependencies to FPDF.",
  3929. "setasign/fpdi-tcpdf": "Use this package to automatically evaluate dependencies to TCPDF."
  3930. },
  3931. "type": "library",
  3932. "autoload": {
  3933. "classmap": [
  3934. "filters/",
  3935. "fpdi.php",
  3936. "fpdf_tpl.php",
  3937. "fpdi_pdf_parser.php",
  3938. "pdf_context.php"
  3939. ]
  3940. },
  3941. "notification-url": "https://packagist.org/downloads/",
  3942. "license": [
  3943. "MIT"
  3944. ],
  3945. "authors": [
  3946. {
  3947. "name": "Jan Slabon",
  3948. "email": "jan.slabon@setasign.com",
  3949. "homepage": "https://www.setasign.com"
  3950. }
  3951. ],
  3952. "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
  3953. "homepage": "https://www.setasign.com/fpdi",
  3954. "keywords": [
  3955. "fpdf",
  3956. "fpdi",
  3957. "pdf"
  3958. ],
  3959. "time": "2015-11-30T10:53:14+00:00"
  3960. },
  3961. {
  3962. "name": "sonata-project/admin-bundle",
  3963. "version": "3.13.0",
  3964. "source": {
  3965. "type": "git",
  3966. "url": "https://github.com/sonata-project/SonataAdminBundle.git",
  3967. "reference": "021646de4c11c170ae6205bc5740818b50da3591"
  3968. },
  3969. "dist": {
  3970. "type": "zip",
  3971. "url": "https://api.github.com/repos/sonata-project/SonataAdminBundle/zipball/021646de4c11c170ae6205bc5740818b50da3591",
  3972. "reference": "021646de4c11c170ae6205bc5740818b50da3591",
  3973. "shasum": ""
  3974. },
  3975. "require": {
  3976. "doctrine/common": "^2.2",
  3977. "doctrine/inflector": "^1.0",
  3978. "knplabs/knp-menu-bundle": "^2.1.1",
  3979. "php": "^5.3 || ^7.0",
  3980. "sonata-project/block-bundle": "^3.2",
  3981. "sonata-project/core-bundle": "^3.1",
  3982. "sonata-project/exporter": "^1.0",
  3983. "symfony/class-loader": "^2.3 || ^3.0",
  3984. "symfony/config": "^2.3.9 || ^3.0",
  3985. "symfony/console": "^2.3 || ^3.0",
  3986. "symfony/dependency-injection": "^2.3.3 || ^3.0",
  3987. "symfony/expression-language": "^2.4 || ^3.0",
  3988. "symfony/form": "^2.3.5 || ^3.0",
  3989. "symfony/http-foundation": "^2.3 || ^3.0",
  3990. "symfony/property-access": "^2.3 || ^3.0",
  3991. "symfony/routing": "^2.3 || ^3.0",
  3992. "symfony/security-acl": "^2.3 || ^3.0",
  3993. "symfony/security-bundle": "^2.3 || ^3.0",
  3994. "symfony/templating": "^2.3 || ^3.0",
  3995. "symfony/translation": "^2.3 || ^3.0",
  3996. "symfony/twig-bridge": "^2.3.5 || ^3.0",
  3997. "symfony/validator": "^2.3 || ^3.0",
  3998. "twig/extensions": "^1.0",
  3999. "twig/twig": "^1.28 || ^2.0"
  4000. },
  4001. "conflict": {
  4002. "jms/di-extra-bundle": "<1.7.0"
  4003. },
  4004. "require-dev": {
  4005. "jms/di-extra-bundle": "^1.7",
  4006. "jms/translation-bundle": "^1.2",
  4007. "sensio/generator-bundle": "^2.3 || ^3.0",
  4008. "sllh/php-cs-fixer-styleci-bridge": "^2.0",
  4009. "sonata-project/intl-bundle": "^2.2.4",
  4010. "symfony/phpunit-bridge": "^2.7 || ^3.0",
  4011. "symfony/yaml": "^2.3 || ^3.0"
  4012. },
  4013. "suggest": {
  4014. "jms/di-extra-bundle": "Annotations for Admin definition",
  4015. "jms/translation-bundle": "Extract message keys from Admins",
  4016. "sensio/generator-bundle": "Add sonata:admin:generate command",
  4017. "sonata-project/intl-bundle": "Add localized date and number into the list"
  4018. },
  4019. "type": "symfony-bundle",
  4020. "extra": {
  4021. "branch-alias": {
  4022. "dev-master": "3.x-dev"
  4023. }
  4024. },
  4025. "autoload": {
  4026. "psr-4": {
  4027. "Sonata\\AdminBundle\\": ""
  4028. },
  4029. "exclude-from-classmap": [
  4030. "Tests/"
  4031. ]
  4032. },
  4033. "notification-url": "https://packagist.org/downloads/",
  4034. "license": [
  4035. "MIT"
  4036. ],
  4037. "authors": [
  4038. {
  4039. "name": "Sonata Community",
  4040. "homepage": "https://github.com/sonata-project/SonataAdminBundle/contributors"
  4041. },
  4042. {
  4043. "name": "Thomas Rabaix",
  4044. "email": "thomas.rabaix@sonata-project.org",
  4045. "homepage": "https://sonata-project.org"
  4046. }
  4047. ],
  4048. "description": "The missing Symfony Admin Generator",
  4049. "homepage": "https://sonata-project.org/bundles/admin",
  4050. "keywords": [
  4051. "Admin Generator",
  4052. "admin",
  4053. "bootstrap",
  4054. "sonata"
  4055. ],
  4056. "time": "2017-02-03T09:12:44+00:00"
  4057. },
  4058. {
  4059. "name": "sonata-project/block-bundle",
  4060. "version": "3.3.1",
  4061. "source": {
  4062. "type": "git",
  4063. "url": "https://github.com/sonata-project/SonataBlockBundle.git",
  4064. "reference": "f5aaddf91a862a10d0d79fc040dde5c16ae5f5f2"
  4065. },
  4066. "dist": {
  4067. "type": "zip",
  4068. "url": "https://api.github.com/repos/sonata-project/SonataBlockBundle/zipball/f5aaddf91a862a10d0d79fc040dde5c16ae5f5f2",
  4069. "reference": "f5aaddf91a862a10d0d79fc040dde5c16ae5f5f2",
  4070. "shasum": ""
  4071. },
  4072. "require": {
  4073. "doctrine/common": "^2.3",
  4074. "php": "^5.3 || ^7.0",
  4075. "sonata-project/cache": "^1.0",
  4076. "sonata-project/core-bundle": "^3.0",
  4077. "symfony/form": "^2.3 || ^3.0",
  4078. "symfony/http-kernel": "^2.3 || ^3.0"
  4079. },
  4080. "require-dev": {
  4081. "knplabs/knp-menu-bundle": "^2.0",
  4082. "sllh/php-cs-fixer-styleci-bridge": "^2.0",
  4083. "sonata-project/admin-bundle": "^3.0",
  4084. "symfony/phpunit-bridge": "^2.7 || ^3.0"
  4085. },
  4086. "suggest": {
  4087. "knplabs/knp-menu-bundle": "^2.0",
  4088. "sonata-project/cache-bundle": "^3.0"
  4089. },
  4090. "type": "symfony-bundle",
  4091. "extra": {
  4092. "branch-alias": {
  4093. "dev-master": "3.x-dev"
  4094. }
  4095. },
  4096. "autoload": {
  4097. "psr-4": {
  4098. "Sonata\\BlockBundle\\": ""
  4099. },
  4100. "exclude-from-classmap": [
  4101. "Tests/"
  4102. ],
  4103. "files": [
  4104. "Resources/stubs/symfony2.php"
  4105. ]
  4106. },
  4107. "notification-url": "https://packagist.org/downloads/",
  4108. "license": [
  4109. "MIT"
  4110. ],
  4111. "authors": [
  4112. {
  4113. "name": "Sonata Community",
  4114. "homepage": "https://github.com/sonata-project/SonataBlockBundle/contributors"
  4115. },
  4116. {
  4117. "name": "Thomas Rabaix",
  4118. "email": "thomas.rabaix@sonata-project.org",
  4119. "homepage": "https://sonata-project.org"
  4120. }
  4121. ],
  4122. "description": "Symfony SonataBlockBundle",
  4123. "homepage": "https://sonata-project.org/bundles/block",
  4124. "keywords": [
  4125. "block",
  4126. "sonata"
  4127. ],
  4128. "time": "2017-02-28T13:40:00+00:00"
  4129. },
  4130. {
  4131. "name": "sonata-project/cache",
  4132. "version": "1.0.7",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/sonata-project/cache.git",
  4136. "reference": "f2f6be96c270d6a2b1f26fdc1d6edcb586b60691"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/sonata-project/cache/zipball/f2f6be96c270d6a2b1f26fdc1d6edcb586b60691",
  4141. "reference": "f2f6be96c270d6a2b1f26fdc1d6edcb586b60691",
  4142. "shasum": ""
  4143. },
  4144. "require-dev": {
  4145. "doctrine/orm": "~2.2",
  4146. "doctrine/phpcr-odm": "~1.0",
  4147. "fabpot/php-cs-fixer": "~0.1|~1.0",
  4148. "jackalope/jackalope-doctrine-dbal": "~1.0",
  4149. "predis/predis": "~0.8,<1.0",
  4150. "psr/log": "~1.0",
  4151. "symfony/phpunit-bridge": "~2.7|~3.0"
  4152. },
  4153. "suggest": {
  4154. "doctrine/orm": "ORM support",
  4155. "doctrine/phpcr-odm": "PHPCR ODM support",
  4156. "ext-apc": "Caching with ext/apc",
  4157. "ext-memcached": "Caching with ext/memcached",
  4158. "predis/predis": "Install redis php"
  4159. },
  4160. "type": "library",
  4161. "extra": {
  4162. "branch-alias": {
  4163. "dev-master": "1.x-dev"
  4164. }
  4165. },
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Sonata\\Cache\\Tests\\": "test/",
  4169. "Sonata\\Cache\\": "lib/"
  4170. }
  4171. },
  4172. "notification-url": "https://packagist.org/downloads/",
  4173. "license": [
  4174. "MIT"
  4175. ],
  4176. "authors": [
  4177. {
  4178. "name": "Thomas Rabaix",
  4179. "email": "thomas.rabaix@gmail.com",
  4180. "homepage": "https://sonata-project.org/"
  4181. }
  4182. ],
  4183. "description": "Cache library",
  4184. "homepage": "https://github.com/sonata-project/cache",
  4185. "keywords": [
  4186. "cache",
  4187. "memcached",
  4188. "mongodb",
  4189. "redis"
  4190. ],
  4191. "time": "2015-09-18T14:40:58+00:00"
  4192. },
  4193. {
  4194. "name": "sonata-project/core-bundle",
  4195. "version": "3.2.0",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/sonata-project/SonataCoreBundle.git",
  4199. "reference": "b15998d497a8b1d1fdd7334ae569b7d734c0c401"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/sonata-project/SonataCoreBundle/zipball/b15998d497a8b1d1fdd7334ae569b7d734c0c401",
  4204. "reference": "b15998d497a8b1d1fdd7334ae569b7d734c0c401",
  4205. "shasum": ""
  4206. },
  4207. "require": {
  4208. "cocur/slugify": "^1.4 || ^2.0",
  4209. "php": "^5.3 || ^7.0",
  4210. "symfony/config": "^2.3 || ^3.0",
  4211. "symfony/form": "^2.3.5 || ^3.0",
  4212. "symfony/http-foundation": "^2.3 || ^3.0",
  4213. "symfony/property-access": "^2.3 || ^3.0",
  4214. "symfony/security": "^2.3 || ^3.0",
  4215. "symfony/translation": "^2.3 || ^3.0",
  4216. "symfony/twig-bridge": "^2.3.5 || ^3.0",
  4217. "symfony/validator": "^2.3 || ^3.0",
  4218. "twig/extensions": "^1.0",
  4219. "twig/twig": "^1.23 || ^2.0"
  4220. },
  4221. "require-dev": {
  4222. "doctrine/orm": "^2.4",
  4223. "doctrine/phpcr-odm": "^1.0",
  4224. "friendsofsymfony/rest-bundle": "^1.1 || ^2.0",
  4225. "jackalope/jackalope-doctrine-dbal": "^1.0",
  4226. "jms/serializer-bundle": "0.11 - 0.13 || ^1.0",
  4227. "matthiasnoback/symfony-config-test": "^0.4 || ^1.0",
  4228. "matthiasnoback/symfony-dependency-injection-test": "^0.7",
  4229. "nelmio/api-doc-bundle": "^2.11",
  4230. "sensio/framework-extra-bundle": "^2.3 || ^3.0",
  4231. "sllh/php-cs-fixer-styleci-bridge": "^2.0",
  4232. "sonata-project/exporter": "^1.3",
  4233. "symfony/phpunit-bridge": "^2.7"
  4234. },
  4235. "type": "symfony-bundle",
  4236. "extra": {
  4237. "branch-alias": {
  4238. "dev-master": "3.x-dev"
  4239. }
  4240. },
  4241. "autoload": {
  4242. "psr-4": {
  4243. "Sonata\\CoreBundle\\": ""
  4244. },
  4245. "exclude-from-classmap": [
  4246. "Tests/"
  4247. ]
  4248. },
  4249. "notification-url": "https://packagist.org/downloads/",
  4250. "license": [
  4251. "MIT"
  4252. ],
  4253. "authors": [
  4254. {
  4255. "name": "Sonata Community",
  4256. "homepage": "https://github.com/sonata-project/SonataCoreBundle/contributors"
  4257. },
  4258. {
  4259. "name": "Thomas Rabaix",
  4260. "email": "thomas.rabaix@sonata-project.org"
  4261. }
  4262. ],
  4263. "description": "Symfony SonataCoreBundle",
  4264. "homepage": "https://sonata-project.org/bundles/core",
  4265. "keywords": [
  4266. "sonata"
  4267. ],
  4268. "time": "2017-01-20T09:25:37+00:00"
  4269. },
  4270. {
  4271. "name": "sonata-project/datagrid-bundle",
  4272. "version": "2.2.1",
  4273. "source": {
  4274. "type": "git",
  4275. "url": "https://github.com/sonata-project/SonataDatagridBundle.git",
  4276. "reference": "8aa9183f2ba1724b290faacb83fb003123bae548"
  4277. },
  4278. "dist": {
  4279. "type": "zip",
  4280. "url": "https://api.github.com/repos/sonata-project/SonataDatagridBundle/zipball/8aa9183f2ba1724b290faacb83fb003123bae548",
  4281. "reference": "8aa9183f2ba1724b290faacb83fb003123bae548",
  4282. "shasum": ""
  4283. },
  4284. "require": {
  4285. "php": "^5.3 || ^7.0",
  4286. "symfony/dependency-injection": "^2.3 || ^3.0",
  4287. "symfony/form": "^2.3 || ^3.0"
  4288. },
  4289. "require-dev": {
  4290. "doctrine/orm": "^2.4",
  4291. "sllh/php-cs-fixer-styleci-bridge": "^2.0",
  4292. "symfony/phpunit-bridge": "^2.7 || ^3.0"
  4293. },
  4294. "type": "symfony-bundle",
  4295. "extra": {
  4296. "branch-alias": {
  4297. "dev-master": "2.x-dev"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "psr-4": {
  4302. "Sonata\\DatagridBundle\\": ""
  4303. },
  4304. "exclude-from-classmap": [
  4305. "Tests/"
  4306. ]
  4307. },
  4308. "notification-url": "https://packagist.org/downloads/",
  4309. "license": [
  4310. "MIT"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "Sonata Community",
  4315. "homepage": "https://github.com/sonata-project/SonataDatagridBundle/contributors"
  4316. },
  4317. {
  4318. "name": "Thomas Rabaix",
  4319. "email": "thomas.rabaix@sonata-project.org",
  4320. "homepage": "https://sonata-project.org"
  4321. }
  4322. ],
  4323. "description": "Symfony SonataDatagridBundle",
  4324. "homepage": "https://sonata-project.org/bundles/datagrid",
  4325. "keywords": [
  4326. "datagrid",
  4327. "sonata"
  4328. ],
  4329. "time": "2017-02-09T16:25:20+00:00"
  4330. },
  4331. {
  4332. "name": "sonata-project/doctrine-extensions",
  4333. "version": "1.0.2",
  4334. "source": {
  4335. "type": "git",
  4336. "url": "https://github.com/sonata-project/sonata-doctrine-extensions.git",
  4337. "reference": "4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f"
  4338. },
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://api.github.com/repos/sonata-project/sonata-doctrine-extensions/zipball/4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f",
  4342. "reference": "4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f",
  4343. "shasum": ""
  4344. },
  4345. "require": {
  4346. "doctrine/dbal": "~2.2",
  4347. "php": ">=5.3.2"
  4348. },
  4349. "type": "library",
  4350. "autoload": {
  4351. "psr-4": {
  4352. "Sonata\\Doctrine\\": "src/",
  4353. "Sonata\\Doctrine\\Tests\\": "tests/"
  4354. }
  4355. },
  4356. "notification-url": "https://packagist.org/downloads/",
  4357. "license": [
  4358. "MIT"
  4359. ],
  4360. "authors": [
  4361. {
  4362. "name": "Thomas Rabaix",
  4363. "email": "thomas.rabaix@sonata-project.org",
  4364. "homepage": "http://sonata-project.org"
  4365. },
  4366. {
  4367. "name": "Sonata Community",
  4368. "homepage": "https://github.com/sonata-project/sonata-doctrine-extensions/contributors"
  4369. }
  4370. ],
  4371. "description": "Doctrine2 behavioral extensions",
  4372. "homepage": "https://github.com/sonata-project/sonata-doctrine-extensions",
  4373. "keywords": [
  4374. "doctrine",
  4375. "doctrine2",
  4376. "json"
  4377. ],
  4378. "time": "2014-02-14T12:45:49+00:00"
  4379. },
  4380. {
  4381. "name": "sonata-project/easy-extends-bundle",
  4382. "version": "2.1.10",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://github.com/sonata-project/SonataEasyExtendsBundle.git",
  4386. "reference": "36a217bcdae06dc887a5fb942f6d93438137e951"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://api.github.com/repos/sonata-project/SonataEasyExtendsBundle/zipball/36a217bcdae06dc887a5fb942f6d93438137e951",
  4391. "reference": "36a217bcdae06dc887a5fb942f6d93438137e951",
  4392. "shasum": ""
  4393. },
  4394. "require": {
  4395. "php": ">=5.3.2",
  4396. "symfony/console": "~2.1|~3.0",
  4397. "symfony/finder": "~2.1|~3.0",
  4398. "symfony/framework-bundle": "~2.1|~3.0"
  4399. },
  4400. "require-dev": {
  4401. "doctrine/orm": "~2.1",
  4402. "fabpot/php-cs-fixer": "~0.1|~1.0",
  4403. "symfony/phpunit-bridge": "~2.7|~3.0"
  4404. },
  4405. "type": "symfony-bundle",
  4406. "extra": {
  4407. "branch-alias": {
  4408. "dev-master": "2.1.x-dev"
  4409. }
  4410. },
  4411. "autoload": {
  4412. "psr-4": {
  4413. "Sonata\\EasyExtendsBundle\\": ""
  4414. }
  4415. },
  4416. "notification-url": "https://packagist.org/downloads/",
  4417. "license": [
  4418. "MIT"
  4419. ],
  4420. "authors": [
  4421. {
  4422. "name": "Sonata Community",
  4423. "homepage": "https://github.com/sonata-project/SonataEasyExtendsBundle/contributors"
  4424. },
  4425. {
  4426. "name": "Thomas Rabaix",
  4427. "email": "thomas.rabaix@sonata-project.org",
  4428. "homepage": "https://sonata-project.org"
  4429. }
  4430. ],
  4431. "description": "Symfony SonataEasyExtendsBundle",
  4432. "homepage": "https://sonata-project.org/bundles/easy-extends",
  4433. "keywords": [
  4434. "Easy Extends",
  4435. "sonata"
  4436. ],
  4437. "time": "2015-12-02T22:24:42+00:00"
  4438. },
  4439. {
  4440. "name": "sonata-project/exporter",
  4441. "version": "1.7.1",
  4442. "source": {
  4443. "type": "git",
  4444. "url": "https://github.com/sonata-project/exporter.git",
  4445. "reference": "8ee7c0e804dc5e162187d8ed440d260adb3f1bce"
  4446. },
  4447. "dist": {
  4448. "type": "zip",
  4449. "url": "https://api.github.com/repos/sonata-project/exporter/zipball/8ee7c0e804dc5e162187d8ed440d260adb3f1bce",
  4450. "reference": "8ee7c0e804dc5e162187d8ed440d260adb3f1bce",
  4451. "shasum": ""
  4452. },
  4453. "require": {
  4454. "php": "^5.3 || ^7.0"
  4455. },
  4456. "require-dev": {
  4457. "doctrine/dbal": "^2.2",
  4458. "matthiasnoback/symfony-config-test": "^1.2.1 || ^2.0",
  4459. "matthiasnoback/symfony-dependency-injection-test": "^0.7.6 || ^1.0",
  4460. "propel/propel1": "^1.6",
  4461. "sllh/php-cs-fixer-styleci-bridge": "^2.0",
  4462. "symfony/dependency-injection": "^2.3 || ^3.0",
  4463. "symfony/http-foundation": "^2.3 || ^3.0",
  4464. "symfony/http-kernel": "^2.3 || ^3.0",
  4465. "symfony/phpunit-bridge": "^2.7 || ^3.0",
  4466. "symfony/property-access": "^2.3 || ^3.0",
  4467. "symfony/routing": "^2.3 || ^3.0"
  4468. },
  4469. "suggest": {
  4470. "ext-curl": "*",
  4471. "propel/propel1": "^1.6",
  4472. "symfony/property-access": "^2.3 || ^3.0",
  4473. "symfony/routing": "^2.3 || ^3.0"
  4474. },
  4475. "type": "library",
  4476. "extra": {
  4477. "branch-alias": {
  4478. "dev-master": "1.x-dev"
  4479. }
  4480. },
  4481. "autoload": {
  4482. "psr-4": {
  4483. "Exporter\\": "src/"
  4484. }
  4485. },
  4486. "notification-url": "https://packagist.org/downloads/",
  4487. "license": [
  4488. "MIT"
  4489. ],
  4490. "authors": [
  4491. {
  4492. "name": "Thomas Rabaix",
  4493. "email": "thomas.rabaix@gmail.com",
  4494. "homepage": "https://sonata-project.org/"
  4495. }
  4496. ],
  4497. "description": "Lightweight Exporter library",
  4498. "homepage": "https://github.com/sonata-project/Exporter",
  4499. "keywords": [
  4500. "client",
  4501. "csv",
  4502. "data",
  4503. "export",
  4504. "xls"
  4505. ],
  4506. "time": "2017-02-09T16:39:40+00:00"
  4507. },
  4508. {
  4509. "name": "sonata-project/google-authenticator",
  4510. "version": "1.0.2",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://github.com/sonata-project/GoogleAuthenticator.git",
  4514. "reference": "72f47caddd09d09c0d3c3e046f6b435e0c004cd4"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://api.github.com/repos/sonata-project/GoogleAuthenticator/zipball/72f47caddd09d09c0d3c3e046f6b435e0c004cd4",
  4519. "reference": "72f47caddd09d09c0d3c3e046f6b435e0c004cd4",
  4520. "shasum": ""
  4521. },
  4522. "require": {
  4523. "php": ">=5.3.0"
  4524. },
  4525. "type": "library",
  4526. "autoload": {
  4527. "psr-4": {
  4528. "Google\\Authenticator\\": "lib/",
  4529. "Google\\Authenticator\\Tests\\": "tests/"
  4530. }
  4531. },
  4532. "notification-url": "https://packagist.org/downloads/",
  4533. "license": [
  4534. "MIT"
  4535. ],
  4536. "authors": [
  4537. {
  4538. "name": "Thomas Rabaix",
  4539. "email": "thomas.rabaix@gmail.com",
  4540. "homepage": "http://sonata-project.org/"
  4541. },
  4542. {
  4543. "name": "Christian Stocker",
  4544. "email": "me@chregu.tv"
  4545. },
  4546. {
  4547. "name": "Andre DeMarre",
  4548. "homepage": "http://www.devnetwork.net/viewtopic.php?f=50&t=94989"
  4549. }
  4550. ],
  4551. "description": "Library to integrate Google Authenticator into a PHP project",
  4552. "homepage": "https://github.com/sonata-project/GoogleAuthenticator",
  4553. "keywords": [
  4554. "google authenticator"
  4555. ],
  4556. "time": "2014-03-31T09:18:53+00:00"
  4557. },
  4558. {
  4559. "name": "sonata-project/user-bundle",
  4560. "version": "3.2.1",
  4561. "source": {
  4562. "type": "git",
  4563. "url": "https://github.com/sonata-project/SonataUserBundle.git",
  4564. "reference": "61a8e244dce1e14dd7737e72742b17d742826f62"
  4565. },
  4566. "dist": {
  4567. "type": "zip",
  4568. "url": "https://api.github.com/repos/sonata-project/SonataUserBundle/zipball/61a8e244dce1e14dd7737e72742b17d742826f62",
  4569. "reference": "61a8e244dce1e14dd7737e72742b17d742826f62",
  4570. "shasum": ""
  4571. },
  4572. "require": {
  4573. "friendsofsymfony/user-bundle": "^1.3",
  4574. "php": "^5.3 || ^7.0",
  4575. "sonata-project/admin-bundle": "^3.1",
  4576. "sonata-project/core-bundle": "^3.0",
  4577. "sonata-project/datagrid-bundle": "^2.2",
  4578. "sonata-project/doctrine-extensions": "^1.0",
  4579. "sonata-project/easy-extends-bundle": "^2.1",
  4580. "sonata-project/google-authenticator": "^1.0",
  4581. "symfony/console": "^2.3",
  4582. "symfony/form": "^2.3",
  4583. "symfony/http-foundation": "^2.3",
  4584. "symfony/security": "^2.3"
  4585. },
  4586. "conflict": {
  4587. "friendsofsymfony/rest-bundle": "<1.1",
  4588. "jms/serializer": "<0.13 || >=2.0",
  4589. "nelmio/api-doc-bundle": "<2.4 || >= 3.0",
  4590. "sonata-project/doctrine-orm-admin-bundle": "<3.0 || >=4.0",
  4591. "sonata-project/seo-bundle": "<2.0 || >=3.0"
  4592. },
  4593. "require-dev": {
  4594. "doctrine/orm": "^2.0",
  4595. "friendsofsymfony/rest-bundle": "^1.5 || ^2.0",
  4596. "jms/serializer-bundle": "^0.13 || ^1.0",
  4597. "nelmio/api-doc-bundle": "^2.4",
  4598. "sllh/php-cs-fixer-styleci-bridge": "^2.0",
  4599. "sonata-project/seo-bundle": "^2.0",
  4600. "symfony/phpunit-bridge": "^2.8 || ^3.0"
  4601. },
  4602. "suggest": {
  4603. "friendsofsymfony/rest-bundle": "For using the public API methods.",
  4604. "jms/serializer": "For using the public API methods.",
  4605. "nelmio/api-doc-bundle": "For using the public API methods.",
  4606. "sonata-project/doctrine-orm-admin-bundle": "^3.0",
  4607. "sonata-project/seo-bundle": "For SEO breadcrumb block service usage"
  4608. },
  4609. "type": "symfony-bundle",
  4610. "extra": {
  4611. "branch-alias": {
  4612. "dev-master": "3.x-dev"
  4613. }
  4614. },
  4615. "autoload": {
  4616. "psr-4": {
  4617. "Sonata\\UserBundle\\": ""
  4618. },
  4619. "exclude-from-classmap": [
  4620. "Tests/"
  4621. ]
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "authors": [
  4628. {
  4629. "name": "Thomas Rabaix",
  4630. "email": "thomas.rabaix@sonata-project.org",
  4631. "homepage": "http://sonata-project.org"
  4632. },
  4633. {
  4634. "name": "Sonata Community",
  4635. "homepage": "https://github.com/sonata-project/SonataUserBundle/contributors"
  4636. }
  4637. ],
  4638. "description": "Symfony SonataUserBundle",
  4639. "homepage": "http://sonata-project.org/bundles/user",
  4640. "keywords": [
  4641. "google authenticator",
  4642. "sonata",
  4643. "user"
  4644. ],
  4645. "time": "2017-02-09T16:21:34+00:00"
  4646. },
  4647. {
  4648. "name": "studio-42/elfinder",
  4649. "version": "2.1.22",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://github.com/Studio-42/elFinder.git",
  4653. "reference": "a41ea2f9640b6a7415d438568c708e9bcfc2e653"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://api.github.com/repos/Studio-42/elFinder/zipball/a41ea2f9640b6a7415d438568c708e9bcfc2e653",
  4658. "reference": "a41ea2f9640b6a7415d438568c708e9bcfc2e653",
  4659. "shasum": ""
  4660. },
  4661. "require": {
  4662. "php": ">=5.2"
  4663. },
  4664. "suggest": {
  4665. "barryvdh/elfinder-flysystem-driver": "VolumeDriver for elFinder to use Flysystem as a root.",
  4666. "dropbox-php/dropbox-php": "elFinder Volume driver `Dropbox` require `dropbox-php/dropbox-php`.",
  4667. "nao-pon/flysystem-google-drive": "require in GoogleDrive network volume mounting.",
  4668. "pear/http_oauth": "dropbox-php require `pear/http_oauth` or `PHP OAuth extension`."
  4669. },
  4670. "type": "library",
  4671. "autoload": {
  4672. "classmap": [
  4673. "php"
  4674. ]
  4675. },
  4676. "notification-url": "https://packagist.org/downloads/",
  4677. "license": [
  4678. "BSD-3-Clause"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Dmitry Levashov",
  4683. "email": "dio@std42.ru",
  4684. "homepage": "http://std42.ru"
  4685. },
  4686. {
  4687. "name": "Troex Nevelin",
  4688. "email": "troex@fury.scancode.ru",
  4689. "homepage": "http://std42.ru"
  4690. },
  4691. {
  4692. "name": "Naoki Sawada",
  4693. "email": "hypweb@gmail.com",
  4694. "homepage": "http://xoops.hypweb.net"
  4695. },
  4696. {
  4697. "name": "Community contributions",
  4698. "homepage": "https://github.com/Studio-42/elFinder/contributors"
  4699. }
  4700. ],
  4701. "description": "File manager for web",
  4702. "homepage": "http://elfinder.org",
  4703. "time": "2017-02-24T15:28:23+00:00"
  4704. },
  4705. {
  4706. "name": "sunra/php-simple-html-dom-parser",
  4707. "version": "v1.5.2",
  4708. "source": {
  4709. "type": "git",
  4710. "url": "https://github.com/sunra/php-simple-html-dom-parser.git",
  4711. "reference": "75b9b1cb64502d8f8c04dc11b5906b969af247c6"
  4712. },
  4713. "dist": {
  4714. "type": "zip",
  4715. "url": "https://api.github.com/repos/sunra/php-simple-html-dom-parser/zipball/75b9b1cb64502d8f8c04dc11b5906b969af247c6",
  4716. "reference": "75b9b1cb64502d8f8c04dc11b5906b969af247c6",
  4717. "shasum": ""
  4718. },
  4719. "require": {
  4720. "ext-mbstring": "*",
  4721. "php": ">=5.3.2"
  4722. },
  4723. "type": "library",
  4724. "autoload": {
  4725. "psr-0": {
  4726. "Sunra\\PhpSimple\\HtmlDomParser": "Src/"
  4727. }
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "Sunra",
  4736. "email": "sunra@yandex.ru",
  4737. "homepage": "https://github.com/sunra"
  4738. },
  4739. {
  4740. "name": "S.C. Chen",
  4741. "homepage": "http://sourceforge.net/projects/simplehtmldom/"
  4742. }
  4743. ],
  4744. "description": "Composer adaptation of: A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.",
  4745. "homepage": "https://github.com/sunra/php-simple-html-dom-parser",
  4746. "keywords": [
  4747. "dom",
  4748. "html",
  4749. "parser"
  4750. ],
  4751. "time": "2016-11-22T22:57:47+00:00"
  4752. },
  4753. {
  4754. "name": "swftools/swftools",
  4755. "version": "0.3.1",
  4756. "source": {
  4757. "type": "git",
  4758. "url": "https://github.com/alchemy-fr/PHPSwftools.git",
  4759. "reference": "5a0fefbd5a518c9b1ec2ba247640aadbab4cc396"
  4760. },
  4761. "dist": {
  4762. "type": "zip",
  4763. "url": "https://api.github.com/repos/alchemy-fr/PHPSwftools/zipball/5a0fefbd5a518c9b1ec2ba247640aadbab4cc396",
  4764. "reference": "5a0fefbd5a518c9b1ec2ba247640aadbab4cc396",
  4765. "shasum": ""
  4766. },
  4767. "require": {
  4768. "alchemy/binary-driver": "~1.5",
  4769. "php": ">=5.3.3",
  4770. "pimple/pimple": "~1.0"
  4771. },
  4772. "require-dev": {
  4773. "phpunit/phpunit": "~3.7",
  4774. "sami/sami": "~1.0",
  4775. "silex/silex": "~1.0"
  4776. },
  4777. "type": "library",
  4778. "autoload": {
  4779. "psr-0": {
  4780. "SwfTools": "src"
  4781. }
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "MIT"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "Romain Neutron",
  4790. "email": "imprec@gmail.com",
  4791. "homepage": "http://www.lickmychip.com/"
  4792. },
  4793. {
  4794. "name": "Phraseanet Team",
  4795. "email": "info@alchemy.fr",
  4796. "homepage": "http://www.phraseanet.com/"
  4797. }
  4798. ],
  4799. "description": "PHP SwfTools",
  4800. "keywords": [
  4801. "adobe flash",
  4802. "flash",
  4803. "swf"
  4804. ],
  4805. "time": "2013-07-03T13:11:36+00:00"
  4806. },
  4807. {
  4808. "name": "sylius/attribute",
  4809. "version": "v0.13.0",
  4810. "source": {
  4811. "type": "git",
  4812. "url": "https://github.com/Sylius/Attribute.git",
  4813. "reference": "cadb69fa4bc7c6f61bda2ddbdbbd154921f4c907"
  4814. },
  4815. "dist": {
  4816. "type": "zip",
  4817. "url": "https://api.github.com/repos/Sylius/Attribute/zipball/cadb69fa4bc7c6f61bda2ddbdbbd154921f4c907",
  4818. "reference": "cadb69fa4bc7c6f61bda2ddbdbbd154921f4c907",
  4819. "shasum": ""
  4820. },
  4821. "require": {
  4822. "php": ">=5.3.3",
  4823. "sylius/resource": "0.13.*@dev"
  4824. },
  4825. "require-dev": {
  4826. "phpspec/phpspec": "~2.1"
  4827. },
  4828. "type": "library",
  4829. "extra": {
  4830. "branch-alias": {
  4831. "dev-master": "0.13-dev"
  4832. }
  4833. },
  4834. "autoload": {
  4835. "psr-4": {
  4836. "Sylius\\Component\\Attribute\\": ""
  4837. }
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Sylius project",
  4846. "homepage": "http://sylius.org"
  4847. },
  4848. {
  4849. "name": "Community contributions",
  4850. "homepage": "http://github.com/Sylius/Sylius/contributors"
  4851. },
  4852. {
  4853. "name": "Paweł Jędrzejewski",
  4854. "homepage": "http://pjedrzejewski.com"
  4855. }
  4856. ],
  4857. "description": "Component for handling object attributes in PHP projects.",
  4858. "homepage": "http://sylius.org",
  4859. "keywords": [
  4860. "attribute",
  4861. "ecommerce",
  4862. "feature",
  4863. "shop"
  4864. ],
  4865. "time": "2015-01-28T13:33:18+00:00"
  4866. },
  4867. {
  4868. "name": "sylius/resource",
  4869. "version": "v0.13.0",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/Sylius/Resource.git",
  4873. "reference": "656be14add63fe333cf81d9c7305c95240c9c0e3"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/Sylius/Resource/zipball/656be14add63fe333cf81d9c7305c95240c9c0e3",
  4878. "reference": "656be14add63fe333cf81d9c7305c95240c9c0e3",
  4879. "shasum": ""
  4880. },
  4881. "require": {
  4882. "doctrine/collections": "~1.0",
  4883. "doctrine/common": "~2.3",
  4884. "php": ">=5.3.3",
  4885. "symfony/event-dispatcher": "~2.3",
  4886. "winzou/state-machine": "~0.1"
  4887. },
  4888. "require-dev": {
  4889. "phpspec/phpspec": "~2.1"
  4890. },
  4891. "type": "library",
  4892. "extra": {
  4893. "branch-alias": {
  4894. "dev-master": "0.13-dev"
  4895. }
  4896. },
  4897. "autoload": {
  4898. "psr-4": {
  4899. "Sylius\\Component\\Resource\\": ""
  4900. }
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "MIT"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Sylius project",
  4909. "homepage": "http://sylius.org"
  4910. },
  4911. {
  4912. "name": "Community contributions",
  4913. "homepage": "http://github.com/Sylius/Sylius/contributors"
  4914. },
  4915. {
  4916. "name": "Paweł Jędrzejewski",
  4917. "homepage": "http://pjedrzejewski.com"
  4918. }
  4919. ],
  4920. "description": "Basic resource interfaces for PHP applications.",
  4921. "homepage": "http://sylius.org",
  4922. "keywords": [
  4923. "api",
  4924. "doctrine",
  4925. "ecommerce",
  4926. "resource",
  4927. "shop",
  4928. "sylius"
  4929. ],
  4930. "time": "2015-01-25T13:13:14+00:00"
  4931. },
  4932. {
  4933. "name": "sylius/translation",
  4934. "version": "v0.13.0",
  4935. "source": {
  4936. "type": "git",
  4937. "url": "https://github.com/Sylius/Translation.git",
  4938. "reference": "ff0dd157c31d543fd78517b23053e974d3728489"
  4939. },
  4940. "dist": {
  4941. "type": "zip",
  4942. "url": "https://api.github.com/repos/Sylius/Translation/zipball/ff0dd157c31d543fd78517b23053e974d3728489",
  4943. "reference": "ff0dd157c31d543fd78517b23053e974d3728489",
  4944. "shasum": ""
  4945. },
  4946. "require": {
  4947. "doctrine/collections": "~1.2",
  4948. "doctrine/orm": "~2.4",
  4949. "php": ">=5.3.3"
  4950. },
  4951. "require-dev": {
  4952. "phpspec/phpspec": "~2.0"
  4953. },
  4954. "type": "library",
  4955. "extra": {
  4956. "branch-alias": {
  4957. "dev-master": "0.13-dev"
  4958. }
  4959. },
  4960. "autoload": {
  4961. "psr-4": {
  4962. "Sylius\\Component\\Translation\\": ""
  4963. }
  4964. },
  4965. "notification-url": "https://packagist.org/downloads/",
  4966. "license": [
  4967. "MIT"
  4968. ],
  4969. "authors": [
  4970. {
  4971. "name": "Sylius project",
  4972. "homepage": "http://sylius.org"
  4973. },
  4974. {
  4975. "name": "Community contributions",
  4976. "homepage": "http://github.com/Sylius/Sylius/contributors"
  4977. },
  4978. {
  4979. "name": "Paweł Jędrzejewski",
  4980. "homepage": "http://pjedrzejewski.com"
  4981. }
  4982. ],
  4983. "description": "Translation helper.",
  4984. "homepage": "http://sylius.org",
  4985. "keywords": [
  4986. "translation"
  4987. ],
  4988. "time": "2015-02-06T11:44:07+00:00"
  4989. },
  4990. {
  4991. "name": "symfony/asset",
  4992. "version": "v3.0.9",
  4993. "source": {
  4994. "type": "git",
  4995. "url": "https://github.com/symfony/asset.git",
  4996. "reference": "f844899f663285ce819c041237777140e0c061c3"
  4997. },
  4998. "dist": {
  4999. "type": "zip",
  5000. "url": "https://api.github.com/repos/symfony/asset/zipball/f844899f663285ce819c041237777140e0c061c3",
  5001. "reference": "f844899f663285ce819c041237777140e0c061c3",
  5002. "shasum": ""
  5003. },
  5004. "require": {
  5005. "php": ">=5.5.9"
  5006. },
  5007. "require-dev": {
  5008. "symfony/http-foundation": "~2.8|~3.0"
  5009. },
  5010. "suggest": {
  5011. "symfony/http-foundation": ""
  5012. },
  5013. "type": "library",
  5014. "extra": {
  5015. "branch-alias": {
  5016. "dev-master": "3.0-dev"
  5017. }
  5018. },
  5019. "autoload": {
  5020. "psr-4": {
  5021. "Symfony\\Component\\Asset\\": ""
  5022. },
  5023. "exclude-from-classmap": [
  5024. "/Tests/"
  5025. ]
  5026. },
  5027. "notification-url": "https://packagist.org/downloads/",
  5028. "license": [
  5029. "MIT"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "Fabien Potencier",
  5034. "email": "fabien@symfony.com"
  5035. },
  5036. {
  5037. "name": "Symfony Community",
  5038. "homepage": "https://symfony.com/contributors"
  5039. }
  5040. ],
  5041. "description": "Symfony Asset Component",
  5042. "homepage": "https://symfony.com",
  5043. "time": "2016-07-01T15:14:41+00:00"
  5044. },
  5045. {
  5046. "name": "symfony/cache",
  5047. "version": "v3.2.4",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://github.com/symfony/cache.git",
  5051. "reference": "167d11ab127c7a998b855b8d1bcb7bc6bf5d3afa"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://api.github.com/repos/symfony/cache/zipball/167d11ab127c7a998b855b8d1bcb7bc6bf5d3afa",
  5056. "reference": "167d11ab127c7a998b855b8d1bcb7bc6bf5d3afa",
  5057. "shasum": ""
  5058. },
  5059. "require": {
  5060. "php": ">=5.5.9",
  5061. "psr/cache": "~1.0",
  5062. "psr/log": "~1.0"
  5063. },
  5064. "provide": {
  5065. "psr/cache-implementation": "1.0"
  5066. },
  5067. "require-dev": {
  5068. "cache/integration-tests": "dev-master",
  5069. "doctrine/cache": "~1.6",
  5070. "doctrine/dbal": "~2.4",
  5071. "predis/predis": "~1.0"
  5072. },
  5073. "suggest": {
  5074. "symfony/polyfill-apcu": "For using ApcuAdapter on HHVM"
  5075. },
  5076. "type": "library",
  5077. "extra": {
  5078. "branch-alias": {
  5079. "dev-master": "3.2-dev"
  5080. }
  5081. },
  5082. "autoload": {
  5083. "psr-4": {
  5084. "Symfony\\Component\\Cache\\": ""
  5085. },
  5086. "exclude-from-classmap": [
  5087. "/Tests/"
  5088. ]
  5089. },
  5090. "notification-url": "https://packagist.org/downloads/",
  5091. "license": [
  5092. "MIT"
  5093. ],
  5094. "authors": [
  5095. {
  5096. "name": "Nicolas Grekas",
  5097. "email": "p@tchwork.com"
  5098. },
  5099. {
  5100. "name": "Symfony Community",
  5101. "homepage": "https://symfony.com/contributors"
  5102. }
  5103. ],
  5104. "description": "Symfony implementation of PSR-6",
  5105. "homepage": "https://symfony.com",
  5106. "keywords": [
  5107. "caching",
  5108. "psr6"
  5109. ],
  5110. "time": "2017-02-04T08:30:23+00:00"
  5111. },
  5112. {
  5113. "name": "symfony/class-loader",
  5114. "version": "v2.8.18",
  5115. "source": {
  5116. "type": "git",
  5117. "url": "https://github.com/symfony/class-loader.git",
  5118. "reference": "2c8de07a8a4cc4da9c018ab7a81888b80e762f93"
  5119. },
  5120. "dist": {
  5121. "type": "zip",
  5122. "url": "https://api.github.com/repos/symfony/class-loader/zipball/2c8de07a8a4cc4da9c018ab7a81888b80e762f93",
  5123. "reference": "2c8de07a8a4cc4da9c018ab7a81888b80e762f93",
  5124. "shasum": ""
  5125. },
  5126. "require": {
  5127. "php": ">=5.3.9",
  5128. "symfony/polyfill-apcu": "~1.1"
  5129. },
  5130. "require-dev": {
  5131. "symfony/finder": "^2.0.5|~3.0.0"
  5132. },
  5133. "type": "library",
  5134. "extra": {
  5135. "branch-alias": {
  5136. "dev-master": "2.8-dev"
  5137. }
  5138. },
  5139. "autoload": {
  5140. "psr-4": {
  5141. "Symfony\\Component\\ClassLoader\\": ""
  5142. },
  5143. "exclude-from-classmap": [
  5144. "/Tests/"
  5145. ]
  5146. },
  5147. "notification-url": "https://packagist.org/downloads/",
  5148. "license": [
  5149. "MIT"
  5150. ],
  5151. "authors": [
  5152. {
  5153. "name": "Fabien Potencier",
  5154. "email": "fabien@symfony.com"
  5155. },
  5156. {
  5157. "name": "Symfony Community",
  5158. "homepage": "https://symfony.com/contributors"
  5159. }
  5160. ],
  5161. "description": "Symfony ClassLoader Component",
  5162. "homepage": "https://symfony.com",
  5163. "time": "2017-02-18T19:13:35+00:00"
  5164. },
  5165. {
  5166. "name": "symfony/config",
  5167. "version": "v2.8.18",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/symfony/config.git",
  5171. "reference": "06ce6bb46c24963ec09323da45d0f4f85d3cecd2"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/symfony/config/zipball/06ce6bb46c24963ec09323da45d0f4f85d3cecd2",
  5176. "reference": "06ce6bb46c24963ec09323da45d0f4f85d3cecd2",
  5177. "shasum": ""
  5178. },
  5179. "require": {
  5180. "php": ">=5.3.9",
  5181. "symfony/filesystem": "~2.3|~3.0.0"
  5182. },
  5183. "require-dev": {
  5184. "symfony/yaml": "~2.7|~3.0.0"
  5185. },
  5186. "suggest": {
  5187. "symfony/yaml": "To use the yaml reference dumper"
  5188. },
  5189. "type": "library",
  5190. "extra": {
  5191. "branch-alias": {
  5192. "dev-master": "2.8-dev"
  5193. }
  5194. },
  5195. "autoload": {
  5196. "psr-4": {
  5197. "Symfony\\Component\\Config\\": ""
  5198. },
  5199. "exclude-from-classmap": [
  5200. "/Tests/"
  5201. ]
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Fabien Potencier",
  5210. "email": "fabien@symfony.com"
  5211. },
  5212. {
  5213. "name": "Symfony Community",
  5214. "homepage": "https://symfony.com/contributors"
  5215. }
  5216. ],
  5217. "description": "Symfony Config Component",
  5218. "homepage": "https://symfony.com",
  5219. "time": "2017-03-01T18:13:50+00:00"
  5220. },
  5221. {
  5222. "name": "symfony/console",
  5223. "version": "v2.8.18",
  5224. "source": {
  5225. "type": "git",
  5226. "url": "https://github.com/symfony/console.git",
  5227. "reference": "81508e6fac4476771275a3f4f53c3fee9b956bfa"
  5228. },
  5229. "dist": {
  5230. "type": "zip",
  5231. "url": "https://api.github.com/repos/symfony/console/zipball/81508e6fac4476771275a3f4f53c3fee9b956bfa",
  5232. "reference": "81508e6fac4476771275a3f4f53c3fee9b956bfa",
  5233. "shasum": ""
  5234. },
  5235. "require": {
  5236. "php": ">=5.3.9",
  5237. "symfony/debug": "^2.7.2|~3.0.0",
  5238. "symfony/polyfill-mbstring": "~1.0"
  5239. },
  5240. "require-dev": {
  5241. "psr/log": "~1.0",
  5242. "symfony/event-dispatcher": "~2.1|~3.0.0",
  5243. "symfony/process": "~2.1|~3.0.0"
  5244. },
  5245. "suggest": {
  5246. "psr/log": "For using the console logger",
  5247. "symfony/event-dispatcher": "",
  5248. "symfony/process": ""
  5249. },
  5250. "type": "library",
  5251. "extra": {
  5252. "branch-alias": {
  5253. "dev-master": "2.8-dev"
  5254. }
  5255. },
  5256. "autoload": {
  5257. "psr-4": {
  5258. "Symfony\\Component\\Console\\": ""
  5259. },
  5260. "exclude-from-classmap": [
  5261. "/Tests/"
  5262. ]
  5263. },
  5264. "notification-url": "https://packagist.org/downloads/",
  5265. "license": [
  5266. "MIT"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "Fabien Potencier",
  5271. "email": "fabien@symfony.com"
  5272. },
  5273. {
  5274. "name": "Symfony Community",
  5275. "homepage": "https://symfony.com/contributors"
  5276. }
  5277. ],
  5278. "description": "Symfony Console Component",
  5279. "homepage": "https://symfony.com",
  5280. "time": "2017-03-04T11:00:12+00:00"
  5281. },
  5282. {
  5283. "name": "symfony/debug",
  5284. "version": "v2.8.18",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/symfony/debug.git",
  5288. "reference": "e90099a2958d4833a02d05b504cc06e1c234abcc"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/symfony/debug/zipball/e90099a2958d4833a02d05b504cc06e1c234abcc",
  5293. "reference": "e90099a2958d4833a02d05b504cc06e1c234abcc",
  5294. "shasum": ""
  5295. },
  5296. "require": {
  5297. "php": ">=5.3.9",
  5298. "psr/log": "~1.0"
  5299. },
  5300. "conflict": {
  5301. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  5302. },
  5303. "require-dev": {
  5304. "symfony/class-loader": "~2.2|~3.0.0",
  5305. "symfony/http-kernel": "~2.3.24|~2.5.9|^2.6.2|~3.0.0"
  5306. },
  5307. "type": "library",
  5308. "extra": {
  5309. "branch-alias": {
  5310. "dev-master": "2.8-dev"
  5311. }
  5312. },
  5313. "autoload": {
  5314. "psr-4": {
  5315. "Symfony\\Component\\Debug\\": ""
  5316. },
  5317. "exclude-from-classmap": [
  5318. "/Tests/"
  5319. ]
  5320. },
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "Fabien Potencier",
  5328. "email": "fabien@symfony.com"
  5329. },
  5330. {
  5331. "name": "Symfony Community",
  5332. "homepage": "https://symfony.com/contributors"
  5333. }
  5334. ],
  5335. "description": "Symfony Debug Component",
  5336. "homepage": "https://symfony.com",
  5337. "time": "2017-02-18T19:13:35+00:00"
  5338. },
  5339. {
  5340. "name": "symfony/dependency-injection",
  5341. "version": "v2.8.18",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://github.com/symfony/dependency-injection.git",
  5345. "reference": "efdbeefa454a41154fd99a6f0489f0e9cb46c497"
  5346. },
  5347. "dist": {
  5348. "type": "zip",
  5349. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/efdbeefa454a41154fd99a6f0489f0e9cb46c497",
  5350. "reference": "efdbeefa454a41154fd99a6f0489f0e9cb46c497",
  5351. "shasum": ""
  5352. },
  5353. "require": {
  5354. "php": ">=5.3.9"
  5355. },
  5356. "conflict": {
  5357. "symfony/expression-language": "<2.6"
  5358. },
  5359. "require-dev": {
  5360. "symfony/config": "~2.2|~3.0.0",
  5361. "symfony/expression-language": "~2.6|~3.0.0",
  5362. "symfony/yaml": "~2.3.42|~2.7.14|~2.8.7|~3.0.7"
  5363. },
  5364. "suggest": {
  5365. "symfony/config": "",
  5366. "symfony/expression-language": "For using expressions in service container configuration",
  5367. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  5368. "symfony/yaml": ""
  5369. },
  5370. "type": "library",
  5371. "extra": {
  5372. "branch-alias": {
  5373. "dev-master": "2.8-dev"
  5374. }
  5375. },
  5376. "autoload": {
  5377. "psr-4": {
  5378. "Symfony\\Component\\DependencyInjection\\": ""
  5379. },
  5380. "exclude-from-classmap": [
  5381. "/Tests/"
  5382. ]
  5383. },
  5384. "notification-url": "https://packagist.org/downloads/",
  5385. "license": [
  5386. "MIT"
  5387. ],
  5388. "authors": [
  5389. {
  5390. "name": "Fabien Potencier",
  5391. "email": "fabien@symfony.com"
  5392. },
  5393. {
  5394. "name": "Symfony Community",
  5395. "homepage": "https://symfony.com/contributors"
  5396. }
  5397. ],
  5398. "description": "Symfony DependencyInjection Component",
  5399. "homepage": "https://symfony.com",
  5400. "time": "2017-02-28T12:31:05+00:00"
  5401. },
  5402. {
  5403. "name": "symfony/doctrine-bridge",
  5404. "version": "v2.8.18",
  5405. "source": {
  5406. "type": "git",
  5407. "url": "https://github.com/symfony/doctrine-bridge.git",
  5408. "reference": "742bac3009bbaff82ecb72f4ffa7e5a0507084a7"
  5409. },
  5410. "dist": {
  5411. "type": "zip",
  5412. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/742bac3009bbaff82ecb72f4ffa7e5a0507084a7",
  5413. "reference": "742bac3009bbaff82ecb72f4ffa7e5a0507084a7",
  5414. "shasum": ""
  5415. },
  5416. "require": {
  5417. "doctrine/common": "~2.4",
  5418. "php": ">=5.3.9",
  5419. "symfony/polyfill-mbstring": "~1.0"
  5420. },
  5421. "conflict": {
  5422. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  5423. },
  5424. "require-dev": {
  5425. "doctrine/data-fixtures": "1.0.*",
  5426. "doctrine/dbal": "~2.4",
  5427. "doctrine/orm": "^2.4.5",
  5428. "symfony/dependency-injection": "~2.2|~3.0.0",
  5429. "symfony/expression-language": "~2.2|~3.0.0",
  5430. "symfony/form": "^2.8.18|~3.2.5",
  5431. "symfony/http-kernel": "~2.2|~3.0.0",
  5432. "symfony/property-access": "~2.3|~3.0.0",
  5433. "symfony/property-info": "~2.8|3.0",
  5434. "symfony/security": "~2.2|~3.0.0",
  5435. "symfony/stopwatch": "~2.2|~3.0.0",
  5436. "symfony/translation": "^2.0.5|~3.0.0",
  5437. "symfony/validator": "~2.7.25|^2.8.18|~3.2.5"
  5438. },
  5439. "suggest": {
  5440. "doctrine/data-fixtures": "",
  5441. "doctrine/dbal": "",
  5442. "doctrine/orm": "",
  5443. "symfony/form": "",
  5444. "symfony/property-info": "",
  5445. "symfony/validator": ""
  5446. },
  5447. "type": "symfony-bridge",
  5448. "extra": {
  5449. "branch-alias": {
  5450. "dev-master": "2.8-dev"
  5451. }
  5452. },
  5453. "autoload": {
  5454. "psr-4": {
  5455. "Symfony\\Bridge\\Doctrine\\": ""
  5456. },
  5457. "exclude-from-classmap": [
  5458. "/Tests/"
  5459. ]
  5460. },
  5461. "notification-url": "https://packagist.org/downloads/",
  5462. "license": [
  5463. "MIT"
  5464. ],
  5465. "authors": [
  5466. {
  5467. "name": "Fabien Potencier",
  5468. "email": "fabien@symfony.com"
  5469. },
  5470. {
  5471. "name": "Symfony Community",
  5472. "homepage": "https://symfony.com/contributors"
  5473. }
  5474. ],
  5475. "description": "Symfony Doctrine Bridge",
  5476. "homepage": "https://symfony.com",
  5477. "time": "2017-03-05T17:40:13+00:00"
  5478. },
  5479. {
  5480. "name": "symfony/event-dispatcher",
  5481. "version": "v2.8.18",
  5482. "source": {
  5483. "type": "git",
  5484. "url": "https://github.com/symfony/event-dispatcher.git",
  5485. "reference": "bb4ec47e8e109c1c1172145732d0aa468d967cd0"
  5486. },
  5487. "dist": {
  5488. "type": "zip",
  5489. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bb4ec47e8e109c1c1172145732d0aa468d967cd0",
  5490. "reference": "bb4ec47e8e109c1c1172145732d0aa468d967cd0",
  5491. "shasum": ""
  5492. },
  5493. "require": {
  5494. "php": ">=5.3.9"
  5495. },
  5496. "require-dev": {
  5497. "psr/log": "~1.0",
  5498. "symfony/config": "^2.0.5|~3.0.0",
  5499. "symfony/dependency-injection": "~2.6|~3.0.0",
  5500. "symfony/expression-language": "~2.6|~3.0.0",
  5501. "symfony/stopwatch": "~2.3|~3.0.0"
  5502. },
  5503. "suggest": {
  5504. "symfony/dependency-injection": "",
  5505. "symfony/http-kernel": ""
  5506. },
  5507. "type": "library",
  5508. "extra": {
  5509. "branch-alias": {
  5510. "dev-master": "2.8-dev"
  5511. }
  5512. },
  5513. "autoload": {
  5514. "psr-4": {
  5515. "Symfony\\Component\\EventDispatcher\\": ""
  5516. },
  5517. "exclude-from-classmap": [
  5518. "/Tests/"
  5519. ]
  5520. },
  5521. "notification-url": "https://packagist.org/downloads/",
  5522. "license": [
  5523. "MIT"
  5524. ],
  5525. "authors": [
  5526. {
  5527. "name": "Fabien Potencier",
  5528. "email": "fabien@symfony.com"
  5529. },
  5530. {
  5531. "name": "Symfony Community",
  5532. "homepage": "https://symfony.com/contributors"
  5533. }
  5534. ],
  5535. "description": "Symfony EventDispatcher Component",
  5536. "homepage": "https://symfony.com",
  5537. "time": "2017-02-21T08:33:48+00:00"
  5538. },
  5539. {
  5540. "name": "symfony/expression-language",
  5541. "version": "v3.2.4",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/symfony/expression-language.git",
  5545. "reference": "e0a7b0c58e0dac3a382d4234e33f6344a5ba69d1"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/symfony/expression-language/zipball/e0a7b0c58e0dac3a382d4234e33f6344a5ba69d1",
  5550. "reference": "e0a7b0c58e0dac3a382d4234e33f6344a5ba69d1",
  5551. "shasum": ""
  5552. },
  5553. "require": {
  5554. "php": ">=5.5.9",
  5555. "symfony/cache": "~3.1"
  5556. },
  5557. "type": "library",
  5558. "extra": {
  5559. "branch-alias": {
  5560. "dev-master": "3.2-dev"
  5561. }
  5562. },
  5563. "autoload": {
  5564. "psr-4": {
  5565. "Symfony\\Component\\ExpressionLanguage\\": ""
  5566. },
  5567. "exclude-from-classmap": [
  5568. "/Tests/"
  5569. ]
  5570. },
  5571. "notification-url": "https://packagist.org/downloads/",
  5572. "license": [
  5573. "MIT"
  5574. ],
  5575. "authors": [
  5576. {
  5577. "name": "Fabien Potencier",
  5578. "email": "fabien@symfony.com"
  5579. },
  5580. {
  5581. "name": "Symfony Community",
  5582. "homepage": "https://symfony.com/contributors"
  5583. }
  5584. ],
  5585. "description": "Symfony ExpressionLanguage Component",
  5586. "homepage": "https://symfony.com",
  5587. "time": "2017-01-02T20:32:22+00:00"
  5588. },
  5589. {
  5590. "name": "symfony/filesystem",
  5591. "version": "v2.8.18",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/symfony/filesystem.git",
  5595. "reference": "e542d4765092d22552b1bf01ddccfb01d98ee325"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/symfony/filesystem/zipball/e542d4765092d22552b1bf01ddccfb01d98ee325",
  5600. "reference": "e542d4765092d22552b1bf01ddccfb01d98ee325",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "php": ">=5.3.9"
  5605. },
  5606. "type": "library",
  5607. "extra": {
  5608. "branch-alias": {
  5609. "dev-master": "2.8-dev"
  5610. }
  5611. },
  5612. "autoload": {
  5613. "psr-4": {
  5614. "Symfony\\Component\\Filesystem\\": ""
  5615. },
  5616. "exclude-from-classmap": [
  5617. "/Tests/"
  5618. ]
  5619. },
  5620. "notification-url": "https://packagist.org/downloads/",
  5621. "license": [
  5622. "MIT"
  5623. ],
  5624. "authors": [
  5625. {
  5626. "name": "Fabien Potencier",
  5627. "email": "fabien@symfony.com"
  5628. },
  5629. {
  5630. "name": "Symfony Community",
  5631. "homepage": "https://symfony.com/contributors"
  5632. }
  5633. ],
  5634. "description": "Symfony Filesystem Component",
  5635. "homepage": "https://symfony.com",
  5636. "time": "2017-02-18T17:06:33+00:00"
  5637. },
  5638. {
  5639. "name": "symfony/finder",
  5640. "version": "v2.8.18",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/symfony/finder.git",
  5644. "reference": "5fc4b5cab38b9d28be318fcffd8066988e7d9451"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/symfony/finder/zipball/5fc4b5cab38b9d28be318fcffd8066988e7d9451",
  5649. "reference": "5fc4b5cab38b9d28be318fcffd8066988e7d9451",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "php": ">=5.3.9"
  5654. },
  5655. "type": "library",
  5656. "extra": {
  5657. "branch-alias": {
  5658. "dev-master": "2.8-dev"
  5659. }
  5660. },
  5661. "autoload": {
  5662. "psr-4": {
  5663. "Symfony\\Component\\Finder\\": ""
  5664. },
  5665. "exclude-from-classmap": [
  5666. "/Tests/"
  5667. ]
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Fabien Potencier",
  5676. "email": "fabien@symfony.com"
  5677. },
  5678. {
  5679. "name": "Symfony Community",
  5680. "homepage": "https://symfony.com/contributors"
  5681. }
  5682. ],
  5683. "description": "Symfony Finder Component",
  5684. "homepage": "https://symfony.com",
  5685. "time": "2017-02-21T08:33:48+00:00"
  5686. },
  5687. {
  5688. "name": "symfony/form",
  5689. "version": "v2.8.18",
  5690. "source": {
  5691. "type": "git",
  5692. "url": "https://github.com/symfony/form.git",
  5693. "reference": "8365cd65c776b62c3d09b0e42336740a02383f78"
  5694. },
  5695. "dist": {
  5696. "type": "zip",
  5697. "url": "https://api.github.com/repos/symfony/form/zipball/8365cd65c776b62c3d09b0e42336740a02383f78",
  5698. "reference": "8365cd65c776b62c3d09b0e42336740a02383f78",
  5699. "shasum": ""
  5700. },
  5701. "require": {
  5702. "php": ">=5.3.9",
  5703. "symfony/event-dispatcher": "~2.1|~3.0.0",
  5704. "symfony/intl": "~2.7.25|^2.8.18|~3.2.5",
  5705. "symfony/options-resolver": "~2.6",
  5706. "symfony/polyfill-mbstring": "~1.0",
  5707. "symfony/property-access": "~2.3|~3.0.0"
  5708. },
  5709. "conflict": {
  5710. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5711. "symfony/doctrine-bridge": "<2.7",
  5712. "symfony/framework-bundle": "<2.7",
  5713. "symfony/twig-bridge": "<2.7"
  5714. },
  5715. "require-dev": {
  5716. "doctrine/collections": "~1.0",
  5717. "symfony/dependency-injection": "~2.7|~3.0.0",
  5718. "symfony/http-foundation": "~2.2|~3.0.0",
  5719. "symfony/http-kernel": "~2.4|~3.0.0",
  5720. "symfony/security-csrf": "~2.4|~3.0.0",
  5721. "symfony/translation": "^2.0.5|~3.0.0",
  5722. "symfony/validator": "^2.8.18|~3.2.5"
  5723. },
  5724. "suggest": {
  5725. "symfony/framework-bundle": "For templating with PHP.",
  5726. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  5727. "symfony/twig-bridge": "For templating with Twig.",
  5728. "symfony/validator": "For form validation."
  5729. },
  5730. "type": "library",
  5731. "extra": {
  5732. "branch-alias": {
  5733. "dev-master": "2.8-dev"
  5734. }
  5735. },
  5736. "autoload": {
  5737. "psr-4": {
  5738. "Symfony\\Component\\Form\\": ""
  5739. },
  5740. "exclude-from-classmap": [
  5741. "/Tests/"
  5742. ]
  5743. },
  5744. "notification-url": "https://packagist.org/downloads/",
  5745. "license": [
  5746. "MIT"
  5747. ],
  5748. "authors": [
  5749. {
  5750. "name": "Fabien Potencier",
  5751. "email": "fabien@symfony.com"
  5752. },
  5753. {
  5754. "name": "Symfony Community",
  5755. "homepage": "https://symfony.com/contributors"
  5756. }
  5757. ],
  5758. "description": "Symfony Form Component",
  5759. "homepage": "https://symfony.com",
  5760. "time": "2017-03-05T19:52:29+00:00"
  5761. },
  5762. {
  5763. "name": "symfony/framework-bundle",
  5764. "version": "v2.8.18",
  5765. "source": {
  5766. "type": "git",
  5767. "url": "https://github.com/symfony/framework-bundle.git",
  5768. "reference": "865ff951f142c69422134214786bed43aaf53caf"
  5769. },
  5770. "dist": {
  5771. "type": "zip",
  5772. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/865ff951f142c69422134214786bed43aaf53caf",
  5773. "reference": "865ff951f142c69422134214786bed43aaf53caf",
  5774. "shasum": ""
  5775. },
  5776. "require": {
  5777. "doctrine/annotations": "~1.0",
  5778. "doctrine/cache": "~1.0",
  5779. "php": ">=5.3.9",
  5780. "symfony/asset": "~2.7|~3.0.0",
  5781. "symfony/class-loader": "~2.1|~3.0.0",
  5782. "symfony/config": "~2.8",
  5783. "symfony/dependency-injection": "~2.8",
  5784. "symfony/event-dispatcher": "~2.8|~3.0.0",
  5785. "symfony/filesystem": "~2.3|~3.0.0",
  5786. "symfony/finder": "^2.0.5|~3.0.0",
  5787. "symfony/http-foundation": "~2.7",
  5788. "symfony/http-kernel": "^2.8.18",
  5789. "symfony/polyfill-mbstring": "~1.0",
  5790. "symfony/routing": "^2.8.17",
  5791. "symfony/security-core": "~2.6.13|~2.7.9|~2.8|~3.0.0",
  5792. "symfony/security-csrf": "~2.6|~3.0.0",
  5793. "symfony/stopwatch": "~2.3|~3.0.0",
  5794. "symfony/templating": "~2.1|~3.0.0",
  5795. "symfony/translation": "~2.8"
  5796. },
  5797. "conflict": {
  5798. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  5799. },
  5800. "require-dev": {
  5801. "phpdocumentor/reflection": "^1.0.7",
  5802. "sensio/framework-extra-bundle": "^3.0.2",
  5803. "symfony/browser-kit": "~2.4|~3.0.0",
  5804. "symfony/console": "~2.8.8|~3.0.8",
  5805. "symfony/css-selector": "^2.0.5|~3.0.0",
  5806. "symfony/dom-crawler": "^2.0.5|~3.0.0",
  5807. "symfony/expression-language": "~2.6|~3.0.0",
  5808. "symfony/form": "^2.8.18",
  5809. "symfony/polyfill-intl-icu": "~1.0",
  5810. "symfony/process": "^2.0.5|~3.0.0",
  5811. "symfony/property-info": "~2.8|~3.0.0",
  5812. "symfony/security": "~2.6|~3.0.0",
  5813. "symfony/validator": "~2.5|~3.0.0",
  5814. "symfony/yaml": "^2.0.5|~3.0.0",
  5815. "twig/twig": "~1.23|~2.0"
  5816. },
  5817. "suggest": {
  5818. "symfony/console": "For using the console commands",
  5819. "symfony/form": "For using forms",
  5820. "symfony/process": "For using the server:run, server:start, server:stop, and server:status commands",
  5821. "symfony/property-info": "For using the property_info service",
  5822. "symfony/serializer": "For using the serializer service",
  5823. "symfony/validator": "For using validation",
  5824. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  5825. },
  5826. "type": "symfony-bundle",
  5827. "extra": {
  5828. "branch-alias": {
  5829. "dev-master": "2.8-dev"
  5830. }
  5831. },
  5832. "autoload": {
  5833. "psr-4": {
  5834. "Symfony\\Bundle\\FrameworkBundle\\": ""
  5835. },
  5836. "exclude-from-classmap": [
  5837. "/Tests/"
  5838. ]
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "Fabien Potencier",
  5847. "email": "fabien@symfony.com"
  5848. },
  5849. {
  5850. "name": "Symfony Community",
  5851. "homepage": "https://symfony.com/contributors"
  5852. }
  5853. ],
  5854. "description": "Symfony FrameworkBundle",
  5855. "homepage": "https://symfony.com",
  5856. "time": "2017-03-02T21:33:27+00:00"
  5857. },
  5858. {
  5859. "name": "symfony/http-foundation",
  5860. "version": "v2.8.18",
  5861. "source": {
  5862. "type": "git",
  5863. "url": "https://github.com/symfony/http-foundation.git",
  5864. "reference": "88af747e7af17d8d7d439ad4639dc3e23ddd3edd"
  5865. },
  5866. "dist": {
  5867. "type": "zip",
  5868. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/88af747e7af17d8d7d439ad4639dc3e23ddd3edd",
  5869. "reference": "88af747e7af17d8d7d439ad4639dc3e23ddd3edd",
  5870. "shasum": ""
  5871. },
  5872. "require": {
  5873. "php": ">=5.3.9",
  5874. "symfony/polyfill-mbstring": "~1.1",
  5875. "symfony/polyfill-php54": "~1.0",
  5876. "symfony/polyfill-php55": "~1.0"
  5877. },
  5878. "require-dev": {
  5879. "symfony/expression-language": "~2.4|~3.0.0"
  5880. },
  5881. "type": "library",
  5882. "extra": {
  5883. "branch-alias": {
  5884. "dev-master": "2.8-dev"
  5885. }
  5886. },
  5887. "autoload": {
  5888. "psr-4": {
  5889. "Symfony\\Component\\HttpFoundation\\": ""
  5890. },
  5891. "exclude-from-classmap": [
  5892. "/Tests/"
  5893. ]
  5894. },
  5895. "notification-url": "https://packagist.org/downloads/",
  5896. "license": [
  5897. "MIT"
  5898. ],
  5899. "authors": [
  5900. {
  5901. "name": "Fabien Potencier",
  5902. "email": "fabien@symfony.com"
  5903. },
  5904. {
  5905. "name": "Symfony Community",
  5906. "homepage": "https://symfony.com/contributors"
  5907. }
  5908. ],
  5909. "description": "Symfony HttpFoundation Component",
  5910. "homepage": "https://symfony.com",
  5911. "time": "2017-03-04T12:20:59+00:00"
  5912. },
  5913. {
  5914. "name": "symfony/http-kernel",
  5915. "version": "v2.8.18",
  5916. "source": {
  5917. "type": "git",
  5918. "url": "https://github.com/symfony/http-kernel.git",
  5919. "reference": "18d7a01ac14ffa5a652a635c402b9777f858fc1a"
  5920. },
  5921. "dist": {
  5922. "type": "zip",
  5923. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/18d7a01ac14ffa5a652a635c402b9777f858fc1a",
  5924. "reference": "18d7a01ac14ffa5a652a635c402b9777f858fc1a",
  5925. "shasum": ""
  5926. },
  5927. "require": {
  5928. "php": ">=5.3.9",
  5929. "psr/log": "~1.0",
  5930. "symfony/debug": "^2.6.2",
  5931. "symfony/event-dispatcher": "^2.6.7|~3.0.0",
  5932. "symfony/http-foundation": "~2.7.20|~2.8.13|~3.1.6"
  5933. },
  5934. "conflict": {
  5935. "symfony/config": "<2.7"
  5936. },
  5937. "require-dev": {
  5938. "symfony/browser-kit": "~2.3|~3.0.0",
  5939. "symfony/class-loader": "~2.1|~3.0.0",
  5940. "symfony/config": "~2.8",
  5941. "symfony/console": "~2.3|~3.0.0",
  5942. "symfony/css-selector": "^2.0.5|~3.0.0",
  5943. "symfony/dependency-injection": "~2.8|~3.0.0",
  5944. "symfony/dom-crawler": "^2.0.5|~3.0.0",
  5945. "symfony/expression-language": "~2.4|~3.0.0",
  5946. "symfony/finder": "^2.0.5|~3.0.0",
  5947. "symfony/process": "^2.0.5|~3.0.0",
  5948. "symfony/routing": "~2.8|~3.0.0",
  5949. "symfony/stopwatch": "~2.3|~3.0.0",
  5950. "symfony/templating": "~2.2|~3.0.0",
  5951. "symfony/translation": "^2.0.5|~3.0.0",
  5952. "symfony/var-dumper": "~2.6|~3.0.0"
  5953. },
  5954. "suggest": {
  5955. "symfony/browser-kit": "",
  5956. "symfony/class-loader": "",
  5957. "symfony/config": "",
  5958. "symfony/console": "",
  5959. "symfony/dependency-injection": "",
  5960. "symfony/finder": "",
  5961. "symfony/var-dumper": ""
  5962. },
  5963. "type": "library",
  5964. "extra": {
  5965. "branch-alias": {
  5966. "dev-master": "2.8-dev"
  5967. }
  5968. },
  5969. "autoload": {
  5970. "psr-4": {
  5971. "Symfony\\Component\\HttpKernel\\": ""
  5972. },
  5973. "exclude-from-classmap": [
  5974. "/Tests/"
  5975. ]
  5976. },
  5977. "notification-url": "https://packagist.org/downloads/",
  5978. "license": [
  5979. "MIT"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "Fabien Potencier",
  5984. "email": "fabien@symfony.com"
  5985. },
  5986. {
  5987. "name": "Symfony Community",
  5988. "homepage": "https://symfony.com/contributors"
  5989. }
  5990. ],
  5991. "description": "Symfony HttpKernel Component",
  5992. "homepage": "https://symfony.com",
  5993. "time": "2017-03-06T03:54:35+00:00"
  5994. },
  5995. {
  5996. "name": "symfony/intl",
  5997. "version": "v2.8.18",
  5998. "source": {
  5999. "type": "git",
  6000. "url": "https://github.com/symfony/intl.git",
  6001. "reference": "aa4be25dd37cf05bf6cc33d2aec5e85faa9ca830"
  6002. },
  6003. "dist": {
  6004. "type": "zip",
  6005. "url": "https://api.github.com/repos/symfony/intl/zipball/aa4be25dd37cf05bf6cc33d2aec5e85faa9ca830",
  6006. "reference": "aa4be25dd37cf05bf6cc33d2aec5e85faa9ca830",
  6007. "shasum": ""
  6008. },
  6009. "require": {
  6010. "php": ">=5.3.9",
  6011. "symfony/polyfill-intl-icu": "~1.0",
  6012. "symfony/polyfill-php54": "~1.0"
  6013. },
  6014. "require-dev": {
  6015. "symfony/filesystem": "~2.1|~3.0.0"
  6016. },
  6017. "suggest": {
  6018. "ext-intl": "to use the component with locales other than \"en\""
  6019. },
  6020. "type": "library",
  6021. "extra": {
  6022. "branch-alias": {
  6023. "dev-master": "2.8-dev"
  6024. }
  6025. },
  6026. "autoload": {
  6027. "psr-4": {
  6028. "Symfony\\Component\\Intl\\": ""
  6029. },
  6030. "classmap": [
  6031. "Resources/stubs"
  6032. ],
  6033. "exclude-from-classmap": [
  6034. "/Tests/"
  6035. ]
  6036. },
  6037. "notification-url": "https://packagist.org/downloads/",
  6038. "license": [
  6039. "MIT"
  6040. ],
  6041. "authors": [
  6042. {
  6043. "name": "Bernhard Schussek",
  6044. "email": "bschussek@gmail.com"
  6045. },
  6046. {
  6047. "name": "Eriksen Costa",
  6048. "email": "eriksen.costa@infranology.com.br"
  6049. },
  6050. {
  6051. "name": "Igor Wiedler",
  6052. "email": "igor@wiedler.ch"
  6053. },
  6054. {
  6055. "name": "Symfony Community",
  6056. "homepage": "https://symfony.com/contributors"
  6057. }
  6058. ],
  6059. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  6060. "homepage": "https://symfony.com",
  6061. "keywords": [
  6062. "i18n",
  6063. "icu",
  6064. "internationalization",
  6065. "intl",
  6066. "l10n",
  6067. "localization"
  6068. ],
  6069. "time": "2017-03-05T17:40:13+00:00"
  6070. },
  6071. {
  6072. "name": "symfony/options-resolver",
  6073. "version": "v2.8.18",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/symfony/options-resolver.git",
  6077. "reference": "bbaa4927a6edf2ba22f0f5daa6d9454e24e3442e"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/bbaa4927a6edf2ba22f0f5daa6d9454e24e3442e",
  6082. "reference": "bbaa4927a6edf2ba22f0f5daa6d9454e24e3442e",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=5.3.9"
  6087. },
  6088. "type": "library",
  6089. "extra": {
  6090. "branch-alias": {
  6091. "dev-master": "2.8-dev"
  6092. }
  6093. },
  6094. "autoload": {
  6095. "psr-4": {
  6096. "Symfony\\Component\\OptionsResolver\\": ""
  6097. },
  6098. "exclude-from-classmap": [
  6099. "/Tests/"
  6100. ]
  6101. },
  6102. "notification-url": "https://packagist.org/downloads/",
  6103. "license": [
  6104. "MIT"
  6105. ],
  6106. "authors": [
  6107. {
  6108. "name": "Fabien Potencier",
  6109. "email": "fabien@symfony.com"
  6110. },
  6111. {
  6112. "name": "Symfony Community",
  6113. "homepage": "https://symfony.com/contributors"
  6114. }
  6115. ],
  6116. "description": "Symfony OptionsResolver Component",
  6117. "homepage": "https://symfony.com",
  6118. "keywords": [
  6119. "config",
  6120. "configuration",
  6121. "options"
  6122. ],
  6123. "time": "2017-02-21T08:33:48+00:00"
  6124. },
  6125. {
  6126. "name": "symfony/polyfill-apcu",
  6127. "version": "v1.3.0",
  6128. "source": {
  6129. "type": "git",
  6130. "url": "https://github.com/symfony/polyfill-apcu.git",
  6131. "reference": "5d4474f447403c3348e37b70acc2b95475b7befa"
  6132. },
  6133. "dist": {
  6134. "type": "zip",
  6135. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/5d4474f447403c3348e37b70acc2b95475b7befa",
  6136. "reference": "5d4474f447403c3348e37b70acc2b95475b7befa",
  6137. "shasum": ""
  6138. },
  6139. "require": {
  6140. "php": ">=5.3.3"
  6141. },
  6142. "type": "library",
  6143. "extra": {
  6144. "branch-alias": {
  6145. "dev-master": "1.3-dev"
  6146. }
  6147. },
  6148. "autoload": {
  6149. "files": [
  6150. "bootstrap.php"
  6151. ]
  6152. },
  6153. "notification-url": "https://packagist.org/downloads/",
  6154. "license": [
  6155. "MIT"
  6156. ],
  6157. "authors": [
  6158. {
  6159. "name": "Nicolas Grekas",
  6160. "email": "p@tchwork.com"
  6161. },
  6162. {
  6163. "name": "Symfony Community",
  6164. "homepage": "https://symfony.com/contributors"
  6165. }
  6166. ],
  6167. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  6168. "homepage": "https://symfony.com",
  6169. "keywords": [
  6170. "apcu",
  6171. "compatibility",
  6172. "polyfill",
  6173. "portable",
  6174. "shim"
  6175. ],
  6176. "time": "2016-11-14T01:06:16+00:00"
  6177. },
  6178. {
  6179. "name": "symfony/polyfill-intl-icu",
  6180. "version": "v1.3.0",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  6184. "reference": "2d6e2b20d457603eefb6e614286c22efca30fdb4"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/2d6e2b20d457603eefb6e614286c22efca30fdb4",
  6189. "reference": "2d6e2b20d457603eefb6e614286c22efca30fdb4",
  6190. "shasum": ""
  6191. },
  6192. "require": {
  6193. "php": ">=5.3.3",
  6194. "symfony/intl": "~2.3|~3.0"
  6195. },
  6196. "suggest": {
  6197. "ext-intl": "For best performance"
  6198. },
  6199. "type": "library",
  6200. "extra": {
  6201. "branch-alias": {
  6202. "dev-master": "1.3-dev"
  6203. }
  6204. },
  6205. "autoload": {
  6206. "files": [
  6207. "bootstrap.php"
  6208. ]
  6209. },
  6210. "notification-url": "https://packagist.org/downloads/",
  6211. "license": [
  6212. "MIT"
  6213. ],
  6214. "authors": [
  6215. {
  6216. "name": "Nicolas Grekas",
  6217. "email": "p@tchwork.com"
  6218. },
  6219. {
  6220. "name": "Symfony Community",
  6221. "homepage": "https://symfony.com/contributors"
  6222. }
  6223. ],
  6224. "description": "Symfony polyfill for intl's ICU-related data and classes",
  6225. "homepage": "https://symfony.com",
  6226. "keywords": [
  6227. "compatibility",
  6228. "icu",
  6229. "intl",
  6230. "polyfill",
  6231. "portable",
  6232. "shim"
  6233. ],
  6234. "time": "2016-11-14T01:06:16+00:00"
  6235. },
  6236. {
  6237. "name": "symfony/polyfill-mbstring",
  6238. "version": "v1.3.0",
  6239. "source": {
  6240. "type": "git",
  6241. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6242. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"
  6243. },
  6244. "dist": {
  6245. "type": "zip",
  6246. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4",
  6247. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",
  6248. "shasum": ""
  6249. },
  6250. "require": {
  6251. "php": ">=5.3.3"
  6252. },
  6253. "suggest": {
  6254. "ext-mbstring": "For best performance"
  6255. },
  6256. "type": "library",
  6257. "extra": {
  6258. "branch-alias": {
  6259. "dev-master": "1.3-dev"
  6260. }
  6261. },
  6262. "autoload": {
  6263. "psr-4": {
  6264. "Symfony\\Polyfill\\Mbstring\\": ""
  6265. },
  6266. "files": [
  6267. "bootstrap.php"
  6268. ]
  6269. },
  6270. "notification-url": "https://packagist.org/downloads/",
  6271. "license": [
  6272. "MIT"
  6273. ],
  6274. "authors": [
  6275. {
  6276. "name": "Nicolas Grekas",
  6277. "email": "p@tchwork.com"
  6278. },
  6279. {
  6280. "name": "Symfony Community",
  6281. "homepage": "https://symfony.com/contributors"
  6282. }
  6283. ],
  6284. "description": "Symfony polyfill for the Mbstring extension",
  6285. "homepage": "https://symfony.com",
  6286. "keywords": [
  6287. "compatibility",
  6288. "mbstring",
  6289. "polyfill",
  6290. "portable",
  6291. "shim"
  6292. ],
  6293. "time": "2016-11-14T01:06:16+00:00"
  6294. },
  6295. {
  6296. "name": "symfony/polyfill-php54",
  6297. "version": "v1.3.0",
  6298. "source": {
  6299. "type": "git",
  6300. "url": "https://github.com/symfony/polyfill-php54.git",
  6301. "reference": "90e085822963fdcc9d1c5b73deb3d2e5783b16a0"
  6302. },
  6303. "dist": {
  6304. "type": "zip",
  6305. "url": "https://api.github.com/repos/symfony/polyfill-php54/zipball/90e085822963fdcc9d1c5b73deb3d2e5783b16a0",
  6306. "reference": "90e085822963fdcc9d1c5b73deb3d2e5783b16a0",
  6307. "shasum": ""
  6308. },
  6309. "require": {
  6310. "php": ">=5.3.3"
  6311. },
  6312. "type": "library",
  6313. "extra": {
  6314. "branch-alias": {
  6315. "dev-master": "1.3-dev"
  6316. }
  6317. },
  6318. "autoload": {
  6319. "psr-4": {
  6320. "Symfony\\Polyfill\\Php54\\": ""
  6321. },
  6322. "files": [
  6323. "bootstrap.php"
  6324. ],
  6325. "classmap": [
  6326. "Resources/stubs"
  6327. ]
  6328. },
  6329. "notification-url": "https://packagist.org/downloads/",
  6330. "license": [
  6331. "MIT"
  6332. ],
  6333. "authors": [
  6334. {
  6335. "name": "Nicolas Grekas",
  6336. "email": "p@tchwork.com"
  6337. },
  6338. {
  6339. "name": "Symfony Community",
  6340. "homepage": "https://symfony.com/contributors"
  6341. }
  6342. ],
  6343. "description": "Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions",
  6344. "homepage": "https://symfony.com",
  6345. "keywords": [
  6346. "compatibility",
  6347. "polyfill",
  6348. "portable",
  6349. "shim"
  6350. ],
  6351. "time": "2016-11-14T01:06:16+00:00"
  6352. },
  6353. {
  6354. "name": "symfony/polyfill-php55",
  6355. "version": "v1.3.0",
  6356. "source": {
  6357. "type": "git",
  6358. "url": "https://github.com/symfony/polyfill-php55.git",
  6359. "reference": "03e3f0350bca2220e3623a0e340eef194405fc67"
  6360. },
  6361. "dist": {
  6362. "type": "zip",
  6363. "url": "https://api.github.com/repos/symfony/polyfill-php55/zipball/03e3f0350bca2220e3623a0e340eef194405fc67",
  6364. "reference": "03e3f0350bca2220e3623a0e340eef194405fc67",
  6365. "shasum": ""
  6366. },
  6367. "require": {
  6368. "ircmaxell/password-compat": "~1.0",
  6369. "php": ">=5.3.3"
  6370. },
  6371. "type": "library",
  6372. "extra": {
  6373. "branch-alias": {
  6374. "dev-master": "1.3-dev"
  6375. }
  6376. },
  6377. "autoload": {
  6378. "psr-4": {
  6379. "Symfony\\Polyfill\\Php55\\": ""
  6380. },
  6381. "files": [
  6382. "bootstrap.php"
  6383. ]
  6384. },
  6385. "notification-url": "https://packagist.org/downloads/",
  6386. "license": [
  6387. "MIT"
  6388. ],
  6389. "authors": [
  6390. {
  6391. "name": "Nicolas Grekas",
  6392. "email": "p@tchwork.com"
  6393. },
  6394. {
  6395. "name": "Symfony Community",
  6396. "homepage": "https://symfony.com/contributors"
  6397. }
  6398. ],
  6399. "description": "Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions",
  6400. "homepage": "https://symfony.com",
  6401. "keywords": [
  6402. "compatibility",
  6403. "polyfill",
  6404. "portable",
  6405. "shim"
  6406. ],
  6407. "time": "2016-11-14T01:06:16+00:00"
  6408. },
  6409. {
  6410. "name": "symfony/polyfill-php56",
  6411. "version": "v1.3.0",
  6412. "source": {
  6413. "type": "git",
  6414. "url": "https://github.com/symfony/polyfill-php56.git",
  6415. "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c"
  6416. },
  6417. "dist": {
  6418. "type": "zip",
  6419. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/1dd42b9b89556f18092f3d1ada22cb05ac85383c",
  6420. "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c",
  6421. "shasum": ""
  6422. },
  6423. "require": {
  6424. "php": ">=5.3.3",
  6425. "symfony/polyfill-util": "~1.0"
  6426. },
  6427. "type": "library",
  6428. "extra": {
  6429. "branch-alias": {
  6430. "dev-master": "1.3-dev"
  6431. }
  6432. },
  6433. "autoload": {
  6434. "psr-4": {
  6435. "Symfony\\Polyfill\\Php56\\": ""
  6436. },
  6437. "files": [
  6438. "bootstrap.php"
  6439. ]
  6440. },
  6441. "notification-url": "https://packagist.org/downloads/",
  6442. "license": [
  6443. "MIT"
  6444. ],
  6445. "authors": [
  6446. {
  6447. "name": "Nicolas Grekas",
  6448. "email": "p@tchwork.com"
  6449. },
  6450. {
  6451. "name": "Symfony Community",
  6452. "homepage": "https://symfony.com/contributors"
  6453. }
  6454. ],
  6455. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6456. "homepage": "https://symfony.com",
  6457. "keywords": [
  6458. "compatibility",
  6459. "polyfill",
  6460. "portable",
  6461. "shim"
  6462. ],
  6463. "time": "2016-11-14T01:06:16+00:00"
  6464. },
  6465. {
  6466. "name": "symfony/polyfill-php70",
  6467. "version": "v1.3.0",
  6468. "source": {
  6469. "type": "git",
  6470. "url": "https://github.com/symfony/polyfill-php70.git",
  6471. "reference": "13ce343935f0f91ca89605a2f6ca6f5c2f3faac2"
  6472. },
  6473. "dist": {
  6474. "type": "zip",
  6475. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/13ce343935f0f91ca89605a2f6ca6f5c2f3faac2",
  6476. "reference": "13ce343935f0f91ca89605a2f6ca6f5c2f3faac2",
  6477. "shasum": ""
  6478. },
  6479. "require": {
  6480. "paragonie/random_compat": "~1.0|~2.0",
  6481. "php": ">=5.3.3"
  6482. },
  6483. "type": "library",
  6484. "extra": {
  6485. "branch-alias": {
  6486. "dev-master": "1.3-dev"
  6487. }
  6488. },
  6489. "autoload": {
  6490. "psr-4": {
  6491. "Symfony\\Polyfill\\Php70\\": ""
  6492. },
  6493. "files": [
  6494. "bootstrap.php"
  6495. ],
  6496. "classmap": [
  6497. "Resources/stubs"
  6498. ]
  6499. },
  6500. "notification-url": "https://packagist.org/downloads/",
  6501. "license": [
  6502. "MIT"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "Nicolas Grekas",
  6507. "email": "p@tchwork.com"
  6508. },
  6509. {
  6510. "name": "Symfony Community",
  6511. "homepage": "https://symfony.com/contributors"
  6512. }
  6513. ],
  6514. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  6515. "homepage": "https://symfony.com",
  6516. "keywords": [
  6517. "compatibility",
  6518. "polyfill",
  6519. "portable",
  6520. "shim"
  6521. ],
  6522. "time": "2016-11-14T01:06:16+00:00"
  6523. },
  6524. {
  6525. "name": "symfony/polyfill-util",
  6526. "version": "v1.3.0",
  6527. "source": {
  6528. "type": "git",
  6529. "url": "https://github.com/symfony/polyfill-util.git",
  6530. "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb"
  6531. },
  6532. "dist": {
  6533. "type": "zip",
  6534. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/746bce0fca664ac0a575e465f65c6643faddf7fb",
  6535. "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb",
  6536. "shasum": ""
  6537. },
  6538. "require": {
  6539. "php": ">=5.3.3"
  6540. },
  6541. "type": "library",
  6542. "extra": {
  6543. "branch-alias": {
  6544. "dev-master": "1.3-dev"
  6545. }
  6546. },
  6547. "autoload": {
  6548. "psr-4": {
  6549. "Symfony\\Polyfill\\Util\\": ""
  6550. }
  6551. },
  6552. "notification-url": "https://packagist.org/downloads/",
  6553. "license": [
  6554. "MIT"
  6555. ],
  6556. "authors": [
  6557. {
  6558. "name": "Nicolas Grekas",
  6559. "email": "p@tchwork.com"
  6560. },
  6561. {
  6562. "name": "Symfony Community",
  6563. "homepage": "https://symfony.com/contributors"
  6564. }
  6565. ],
  6566. "description": "Symfony utilities for portability of PHP codes",
  6567. "homepage": "https://symfony.com",
  6568. "keywords": [
  6569. "compat",
  6570. "compatibility",
  6571. "polyfill",
  6572. "shim"
  6573. ],
  6574. "time": "2016-11-14T01:06:16+00:00"
  6575. },
  6576. {
  6577. "name": "symfony/process",
  6578. "version": "v3.2.4",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/symfony/process.git",
  6582. "reference": "0ab87c1e7570b3534a6e51eb4ca8e9f6d7327856"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/symfony/process/zipball/0ab87c1e7570b3534a6e51eb4ca8e9f6d7327856",
  6587. "reference": "0ab87c1e7570b3534a6e51eb4ca8e9f6d7327856",
  6588. "shasum": ""
  6589. },
  6590. "require": {
  6591. "php": ">=5.5.9"
  6592. },
  6593. "type": "library",
  6594. "extra": {
  6595. "branch-alias": {
  6596. "dev-master": "3.2-dev"
  6597. }
  6598. },
  6599. "autoload": {
  6600. "psr-4": {
  6601. "Symfony\\Component\\Process\\": ""
  6602. },
  6603. "exclude-from-classmap": [
  6604. "/Tests/"
  6605. ]
  6606. },
  6607. "notification-url": "https://packagist.org/downloads/",
  6608. "license": [
  6609. "MIT"
  6610. ],
  6611. "authors": [
  6612. {
  6613. "name": "Fabien Potencier",
  6614. "email": "fabien@symfony.com"
  6615. },
  6616. {
  6617. "name": "Symfony Community",
  6618. "homepage": "https://symfony.com/contributors"
  6619. }
  6620. ],
  6621. "description": "Symfony Process Component",
  6622. "homepage": "https://symfony.com",
  6623. "time": "2017-02-16T14:07:22+00:00"
  6624. },
  6625. {
  6626. "name": "symfony/property-access",
  6627. "version": "v3.0.9",
  6628. "source": {
  6629. "type": "git",
  6630. "url": "https://github.com/symfony/property-access.git",
  6631. "reference": "a4f1a668d0a269a65790f07d9ab2a97dd060fccb"
  6632. },
  6633. "dist": {
  6634. "type": "zip",
  6635. "url": "https://api.github.com/repos/symfony/property-access/zipball/a4f1a668d0a269a65790f07d9ab2a97dd060fccb",
  6636. "reference": "a4f1a668d0a269a65790f07d9ab2a97dd060fccb",
  6637. "shasum": ""
  6638. },
  6639. "require": {
  6640. "php": ">=5.5.9"
  6641. },
  6642. "type": "library",
  6643. "extra": {
  6644. "branch-alias": {
  6645. "dev-master": "3.0-dev"
  6646. }
  6647. },
  6648. "autoload": {
  6649. "psr-4": {
  6650. "Symfony\\Component\\PropertyAccess\\": ""
  6651. },
  6652. "exclude-from-classmap": [
  6653. "/Tests/"
  6654. ]
  6655. },
  6656. "notification-url": "https://packagist.org/downloads/",
  6657. "license": [
  6658. "MIT"
  6659. ],
  6660. "authors": [
  6661. {
  6662. "name": "Fabien Potencier",
  6663. "email": "fabien@symfony.com"
  6664. },
  6665. {
  6666. "name": "Symfony Community",
  6667. "homepage": "https://symfony.com/contributors"
  6668. }
  6669. ],
  6670. "description": "Symfony PropertyAccess Component",
  6671. "homepage": "https://symfony.com",
  6672. "keywords": [
  6673. "access",
  6674. "array",
  6675. "extraction",
  6676. "index",
  6677. "injection",
  6678. "object",
  6679. "property",
  6680. "property path",
  6681. "reflection"
  6682. ],
  6683. "time": "2016-07-30T07:22:48+00:00"
  6684. },
  6685. {
  6686. "name": "symfony/routing",
  6687. "version": "v2.8.18",
  6688. "source": {
  6689. "type": "git",
  6690. "url": "https://github.com/symfony/routing.git",
  6691. "reference": "d145cd396f702c497cb24b21785ddac90a23fe71"
  6692. },
  6693. "dist": {
  6694. "type": "zip",
  6695. "url": "https://api.github.com/repos/symfony/routing/zipball/d145cd396f702c497cb24b21785ddac90a23fe71",
  6696. "reference": "d145cd396f702c497cb24b21785ddac90a23fe71",
  6697. "shasum": ""
  6698. },
  6699. "require": {
  6700. "php": ">=5.3.9"
  6701. },
  6702. "conflict": {
  6703. "symfony/config": "<2.7"
  6704. },
  6705. "require-dev": {
  6706. "doctrine/annotations": "~1.0",
  6707. "doctrine/common": "~2.2",
  6708. "psr/log": "~1.0",
  6709. "symfony/config": "~2.7|~3.0.0",
  6710. "symfony/expression-language": "~2.4|~3.0.0",
  6711. "symfony/http-foundation": "~2.3|~3.0.0",
  6712. "symfony/yaml": "^2.0.5|~3.0.0"
  6713. },
  6714. "suggest": {
  6715. "doctrine/annotations": "For using the annotation loader",
  6716. "symfony/config": "For using the all-in-one router or any loader",
  6717. "symfony/dependency-injection": "For loading routes from a service",
  6718. "symfony/expression-language": "For using expression matching",
  6719. "symfony/http-foundation": "For using a Symfony Request object",
  6720. "symfony/yaml": "For using the YAML loader"
  6721. },
  6722. "type": "library",
  6723. "extra": {
  6724. "branch-alias": {
  6725. "dev-master": "2.8-dev"
  6726. }
  6727. },
  6728. "autoload": {
  6729. "psr-4": {
  6730. "Symfony\\Component\\Routing\\": ""
  6731. },
  6732. "exclude-from-classmap": [
  6733. "/Tests/"
  6734. ]
  6735. },
  6736. "notification-url": "https://packagist.org/downloads/",
  6737. "license": [
  6738. "MIT"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "Fabien Potencier",
  6743. "email": "fabien@symfony.com"
  6744. },
  6745. {
  6746. "name": "Symfony Community",
  6747. "homepage": "https://symfony.com/contributors"
  6748. }
  6749. ],
  6750. "description": "Symfony Routing Component",
  6751. "homepage": "https://symfony.com",
  6752. "keywords": [
  6753. "router",
  6754. "routing",
  6755. "uri",
  6756. "url"
  6757. ],
  6758. "time": "2017-03-02T15:56:34+00:00"
  6759. },
  6760. {
  6761. "name": "symfony/security",
  6762. "version": "v2.8.18",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/symfony/security.git",
  6766. "reference": "f2fe48ae376237906836d98560dd90ea7e03710a"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/symfony/security/zipball/f2fe48ae376237906836d98560dd90ea7e03710a",
  6771. "reference": "f2fe48ae376237906836d98560dd90ea7e03710a",
  6772. "shasum": ""
  6773. },
  6774. "require": {
  6775. "php": ">=5.3.9",
  6776. "symfony/event-dispatcher": "~2.2|~3.0.0",
  6777. "symfony/http-foundation": "~2.1|~3.0.0",
  6778. "symfony/http-kernel": "~2.4|~3.0.0",
  6779. "symfony/polyfill-php55": "~1.0",
  6780. "symfony/polyfill-php56": "~1.0",
  6781. "symfony/polyfill-php70": "~1.0",
  6782. "symfony/polyfill-util": "~1.0",
  6783. "symfony/property-access": "~2.3|~3.0.0",
  6784. "symfony/security-acl": "~2.7|~3.0.0"
  6785. },
  6786. "replace": {
  6787. "symfony/security-core": "self.version",
  6788. "symfony/security-csrf": "self.version",
  6789. "symfony/security-guard": "self.version",
  6790. "symfony/security-http": "self.version"
  6791. },
  6792. "require-dev": {
  6793. "psr/log": "~1.0",
  6794. "symfony/expression-language": "~2.6|~3.0.0",
  6795. "symfony/finder": "~2.3|~3.0.0",
  6796. "symfony/ldap": "~2.8|~3.0.0",
  6797. "symfony/polyfill-intl-icu": "~1.0",
  6798. "symfony/routing": "~2.2|~3.0.0",
  6799. "symfony/validator": "~2.7.25|^2.8.18|~3.2.5"
  6800. },
  6801. "suggest": {
  6802. "symfony/expression-language": "For using the expression voter",
  6803. "symfony/form": "",
  6804. "symfony/ldap": "For using the LDAP user and authentication providers",
  6805. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6806. "symfony/validator": "For using the user password constraint"
  6807. },
  6808. "type": "library",
  6809. "extra": {
  6810. "branch-alias": {
  6811. "dev-master": "2.8-dev"
  6812. }
  6813. },
  6814. "autoload": {
  6815. "psr-4": {
  6816. "Symfony\\Component\\Security\\": ""
  6817. },
  6818. "exclude-from-classmap": [
  6819. "/Tests/"
  6820. ]
  6821. },
  6822. "notification-url": "https://packagist.org/downloads/",
  6823. "license": [
  6824. "MIT"
  6825. ],
  6826. "authors": [
  6827. {
  6828. "name": "Fabien Potencier",
  6829. "email": "fabien@symfony.com"
  6830. },
  6831. {
  6832. "name": "Symfony Community",
  6833. "homepage": "https://symfony.com/contributors"
  6834. }
  6835. ],
  6836. "description": "Symfony Security Component",
  6837. "homepage": "https://symfony.com",
  6838. "time": "2017-03-04T12:20:59+00:00"
  6839. },
  6840. {
  6841. "name": "symfony/security-acl",
  6842. "version": "v3.0.0",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/symfony/security-acl.git",
  6846. "reference": "053b49bf4aa333a392c83296855989bcf88ddad1"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/symfony/security-acl/zipball/053b49bf4aa333a392c83296855989bcf88ddad1",
  6851. "reference": "053b49bf4aa333a392c83296855989bcf88ddad1",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "php": ">=5.5.9",
  6856. "symfony/security-core": "~2.8|~3.0"
  6857. },
  6858. "require-dev": {
  6859. "doctrine/common": "~2.2",
  6860. "doctrine/dbal": "~2.2",
  6861. "psr/log": "~1.0",
  6862. "symfony/phpunit-bridge": "~2.8|~3.0"
  6863. },
  6864. "suggest": {
  6865. "doctrine/dbal": "For using the built-in ACL implementation",
  6866. "symfony/class-loader": "For using the ACL generateSql script",
  6867. "symfony/finder": "For using the ACL generateSql script"
  6868. },
  6869. "type": "library",
  6870. "extra": {
  6871. "branch-alias": {
  6872. "dev-master": "3.0-dev"
  6873. }
  6874. },
  6875. "autoload": {
  6876. "psr-4": {
  6877. "Symfony\\Component\\Security\\Acl\\": ""
  6878. },
  6879. "exclude-from-classmap": [
  6880. "/Tests/"
  6881. ]
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Fabien Potencier",
  6890. "email": "fabien@symfony.com"
  6891. },
  6892. {
  6893. "name": "Symfony Community",
  6894. "homepage": "https://symfony.com/contributors"
  6895. }
  6896. ],
  6897. "description": "Symfony Security Component - ACL (Access Control List)",
  6898. "homepage": "https://symfony.com",
  6899. "time": "2015-12-28T09:39:46+00:00"
  6900. },
  6901. {
  6902. "name": "symfony/security-bundle",
  6903. "version": "v2.8.18",
  6904. "source": {
  6905. "type": "git",
  6906. "url": "https://github.com/symfony/security-bundle.git",
  6907. "reference": "d072e11fad715737f0082adcb56f9adac06e31fc"
  6908. },
  6909. "dist": {
  6910. "type": "zip",
  6911. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/d072e11fad715737f0082adcb56f9adac06e31fc",
  6912. "reference": "d072e11fad715737f0082adcb56f9adac06e31fc",
  6913. "shasum": ""
  6914. },
  6915. "require": {
  6916. "php": ">=5.3.9",
  6917. "symfony/http-kernel": "~2.7|~3.0.0",
  6918. "symfony/polyfill-php70": "~1.0",
  6919. "symfony/security": "~2.8|~3.0.0",
  6920. "symfony/security-acl": "~2.7|~3.0.0"
  6921. },
  6922. "require-dev": {
  6923. "doctrine/doctrine-bundle": "~1.2",
  6924. "symfony/browser-kit": "~2.4|~3.0.0",
  6925. "symfony/console": "~2.7|~3.0.0",
  6926. "symfony/css-selector": "^2.0.5|~3.0.0",
  6927. "symfony/dom-crawler": "^2.0.5|~3.0.0",
  6928. "symfony/expression-language": "~2.6|~3.0.0",
  6929. "symfony/form": "^2.8.18",
  6930. "symfony/framework-bundle": "^2.8.18",
  6931. "symfony/http-foundation": "~2.7|~3.0.0",
  6932. "symfony/process": "^2.0.5|~3.0.0",
  6933. "symfony/twig-bridge": "^2.7.4|~3.1.0",
  6934. "symfony/twig-bundle": "~2.7|~3.1.0",
  6935. "symfony/validator": "~2.7.25|^2.8.18|~3.2.5",
  6936. "symfony/yaml": "^2.0.5|~3.0.0",
  6937. "twig/twig": "~1.28|~2.0"
  6938. },
  6939. "type": "symfony-bundle",
  6940. "extra": {
  6941. "branch-alias": {
  6942. "dev-master": "2.8-dev"
  6943. }
  6944. },
  6945. "autoload": {
  6946. "psr-4": {
  6947. "Symfony\\Bundle\\SecurityBundle\\": ""
  6948. },
  6949. "exclude-from-classmap": [
  6950. "/Tests/"
  6951. ]
  6952. },
  6953. "notification-url": "https://packagist.org/downloads/",
  6954. "license": [
  6955. "MIT"
  6956. ],
  6957. "authors": [
  6958. {
  6959. "name": "Fabien Potencier",
  6960. "email": "fabien@symfony.com"
  6961. },
  6962. {
  6963. "name": "Symfony Community",
  6964. "homepage": "https://symfony.com/contributors"
  6965. }
  6966. ],
  6967. "description": "Symfony SecurityBundle",
  6968. "homepage": "https://symfony.com",
  6969. "time": "2017-02-28T12:31:05+00:00"
  6970. },
  6971. {
  6972. "name": "symfony/stopwatch",
  6973. "version": "v3.0.9",
  6974. "source": {
  6975. "type": "git",
  6976. "url": "https://github.com/symfony/stopwatch.git",
  6977. "reference": "49c0ea2f3d3a779df4780927671332edc406ea84"
  6978. },
  6979. "dist": {
  6980. "type": "zip",
  6981. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/49c0ea2f3d3a779df4780927671332edc406ea84",
  6982. "reference": "49c0ea2f3d3a779df4780927671332edc406ea84",
  6983. "shasum": ""
  6984. },
  6985. "require": {
  6986. "php": ">=5.5.9"
  6987. },
  6988. "type": "library",
  6989. "extra": {
  6990. "branch-alias": {
  6991. "dev-master": "3.0-dev"
  6992. }
  6993. },
  6994. "autoload": {
  6995. "psr-4": {
  6996. "Symfony\\Component\\Stopwatch\\": ""
  6997. },
  6998. "exclude-from-classmap": [
  6999. "/Tests/"
  7000. ]
  7001. },
  7002. "notification-url": "https://packagist.org/downloads/",
  7003. "license": [
  7004. "MIT"
  7005. ],
  7006. "authors": [
  7007. {
  7008. "name": "Fabien Potencier",
  7009. "email": "fabien@symfony.com"
  7010. },
  7011. {
  7012. "name": "Symfony Community",
  7013. "homepage": "https://symfony.com/contributors"
  7014. }
  7015. ],
  7016. "description": "Symfony Stopwatch Component",
  7017. "homepage": "https://symfony.com",
  7018. "time": "2016-06-29T05:40:00+00:00"
  7019. },
  7020. {
  7021. "name": "symfony/templating",
  7022. "version": "v3.0.9",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/symfony/templating.git",
  7026. "reference": "8e5cc0417316d9fe62fb78e474f98e5f4d95dbfd"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/symfony/templating/zipball/8e5cc0417316d9fe62fb78e474f98e5f4d95dbfd",
  7031. "reference": "8e5cc0417316d9fe62fb78e474f98e5f4d95dbfd",
  7032. "shasum": ""
  7033. },
  7034. "require": {
  7035. "php": ">=5.5.9"
  7036. },
  7037. "require-dev": {
  7038. "psr/log": "~1.0"
  7039. },
  7040. "suggest": {
  7041. "psr/log": "For using debug logging in loaders"
  7042. },
  7043. "type": "library",
  7044. "extra": {
  7045. "branch-alias": {
  7046. "dev-master": "3.0-dev"
  7047. }
  7048. },
  7049. "autoload": {
  7050. "psr-4": {
  7051. "Symfony\\Component\\Templating\\": ""
  7052. },
  7053. "exclude-from-classmap": [
  7054. "/Tests/"
  7055. ]
  7056. },
  7057. "notification-url": "https://packagist.org/downloads/",
  7058. "license": [
  7059. "MIT"
  7060. ],
  7061. "authors": [
  7062. {
  7063. "name": "Fabien Potencier",
  7064. "email": "fabien@symfony.com"
  7065. },
  7066. {
  7067. "name": "Symfony Community",
  7068. "homepage": "https://symfony.com/contributors"
  7069. }
  7070. ],
  7071. "description": "Symfony Templating Component",
  7072. "homepage": "https://symfony.com",
  7073. "time": "2016-07-30T07:22:48+00:00"
  7074. },
  7075. {
  7076. "name": "symfony/translation",
  7077. "version": "v2.8.18",
  7078. "source": {
  7079. "type": "git",
  7080. "url": "https://github.com/symfony/translation.git",
  7081. "reference": "b538355bc99db2ec7cc35284ec76d92ae7d1d256"
  7082. },
  7083. "dist": {
  7084. "type": "zip",
  7085. "url": "https://api.github.com/repos/symfony/translation/zipball/b538355bc99db2ec7cc35284ec76d92ae7d1d256",
  7086. "reference": "b538355bc99db2ec7cc35284ec76d92ae7d1d256",
  7087. "shasum": ""
  7088. },
  7089. "require": {
  7090. "php": ">=5.3.9",
  7091. "symfony/polyfill-mbstring": "~1.0"
  7092. },
  7093. "conflict": {
  7094. "symfony/config": "<2.7"
  7095. },
  7096. "require-dev": {
  7097. "psr/log": "~1.0",
  7098. "symfony/config": "~2.8",
  7099. "symfony/intl": "~2.7.25|^2.8.18|~3.2.5",
  7100. "symfony/yaml": "~2.2|~3.0.0"
  7101. },
  7102. "suggest": {
  7103. "psr/log": "To use logging capability in translator",
  7104. "symfony/config": "",
  7105. "symfony/yaml": ""
  7106. },
  7107. "type": "library",
  7108. "extra": {
  7109. "branch-alias": {
  7110. "dev-master": "2.8-dev"
  7111. }
  7112. },
  7113. "autoload": {
  7114. "psr-4": {
  7115. "Symfony\\Component\\Translation\\": ""
  7116. },
  7117. "exclude-from-classmap": [
  7118. "/Tests/"
  7119. ]
  7120. },
  7121. "notification-url": "https://packagist.org/downloads/",
  7122. "license": [
  7123. "MIT"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "Fabien Potencier",
  7128. "email": "fabien@symfony.com"
  7129. },
  7130. {
  7131. "name": "Symfony Community",
  7132. "homepage": "https://symfony.com/contributors"
  7133. }
  7134. ],
  7135. "description": "Symfony Translation Component",
  7136. "homepage": "https://symfony.com",
  7137. "time": "2017-03-04T12:20:59+00:00"
  7138. },
  7139. {
  7140. "name": "symfony/twig-bridge",
  7141. "version": "v3.2.4",
  7142. "source": {
  7143. "type": "git",
  7144. "url": "https://github.com/symfony/twig-bridge.git",
  7145. "reference": "e269487ec0218f591b45eb8556144c11e7883154"
  7146. },
  7147. "dist": {
  7148. "type": "zip",
  7149. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e269487ec0218f591b45eb8556144c11e7883154",
  7150. "reference": "e269487ec0218f591b45eb8556144c11e7883154",
  7151. "shasum": ""
  7152. },
  7153. "require": {
  7154. "php": ">=5.5.9",
  7155. "twig/twig": "~1.28|~2.0"
  7156. },
  7157. "require-dev": {
  7158. "symfony/asset": "~2.8|~3.0",
  7159. "symfony/console": "~2.8|~3.0",
  7160. "symfony/expression-language": "~2.8|~3.0",
  7161. "symfony/finder": "~2.8|~3.0",
  7162. "symfony/form": "~3.1.9|^3.2.2",
  7163. "symfony/http-kernel": "~3.2",
  7164. "symfony/polyfill-intl-icu": "~1.0",
  7165. "symfony/routing": "~2.8|~3.0",
  7166. "symfony/security": "~2.8|~3.0",
  7167. "symfony/security-acl": "~2.8|~3.0",
  7168. "symfony/stopwatch": "~2.8|~3.0",
  7169. "symfony/templating": "~2.8|~3.0",
  7170. "symfony/translation": "~2.8|~3.0",
  7171. "symfony/var-dumper": "~2.8.10|~3.1.4|~3.2",
  7172. "symfony/yaml": "~2.8|~3.0"
  7173. },
  7174. "suggest": {
  7175. "symfony/asset": "For using the AssetExtension",
  7176. "symfony/expression-language": "For using the ExpressionExtension",
  7177. "symfony/finder": "",
  7178. "symfony/form": "For using the FormExtension",
  7179. "symfony/http-kernel": "For using the HttpKernelExtension",
  7180. "symfony/routing": "For using the RoutingExtension",
  7181. "symfony/security": "For using the SecurityExtension",
  7182. "symfony/stopwatch": "For using the StopwatchExtension",
  7183. "symfony/templating": "For using the TwigEngine",
  7184. "symfony/translation": "For using the TranslationExtension",
  7185. "symfony/var-dumper": "For using the DumpExtension",
  7186. "symfony/yaml": "For using the YamlExtension"
  7187. },
  7188. "type": "symfony-bridge",
  7189. "extra": {
  7190. "branch-alias": {
  7191. "dev-master": "3.2-dev"
  7192. }
  7193. },
  7194. "autoload": {
  7195. "psr-4": {
  7196. "Symfony\\Bridge\\Twig\\": ""
  7197. },
  7198. "exclude-from-classmap": [
  7199. "/Tests/"
  7200. ]
  7201. },
  7202. "notification-url": "https://packagist.org/downloads/",
  7203. "license": [
  7204. "MIT"
  7205. ],
  7206. "authors": [
  7207. {
  7208. "name": "Fabien Potencier",
  7209. "email": "fabien@symfony.com"
  7210. },
  7211. {
  7212. "name": "Symfony Community",
  7213. "homepage": "https://symfony.com/contributors"
  7214. }
  7215. ],
  7216. "description": "Symfony Twig Bridge",
  7217. "homepage": "https://symfony.com",
  7218. "time": "2017-02-16T22:46:52+00:00"
  7219. },
  7220. {
  7221. "name": "symfony/validator",
  7222. "version": "v2.8.18",
  7223. "source": {
  7224. "type": "git",
  7225. "url": "https://github.com/symfony/validator.git",
  7226. "reference": "8d4bfa7ec24e70ebc28d0cea5f2702d3f1257a63"
  7227. },
  7228. "dist": {
  7229. "type": "zip",
  7230. "url": "https://api.github.com/repos/symfony/validator/zipball/8d4bfa7ec24e70ebc28d0cea5f2702d3f1257a63",
  7231. "reference": "8d4bfa7ec24e70ebc28d0cea5f2702d3f1257a63",
  7232. "shasum": ""
  7233. },
  7234. "require": {
  7235. "php": ">=5.3.9",
  7236. "symfony/polyfill-mbstring": "~1.0",
  7237. "symfony/translation": "~2.4|~3.0.0"
  7238. },
  7239. "require-dev": {
  7240. "doctrine/annotations": "~1.0",
  7241. "doctrine/cache": "~1.0",
  7242. "egulias/email-validator": "^1.2.1",
  7243. "symfony/config": "~2.2|~3.0.0",
  7244. "symfony/expression-language": "~2.4|~3.0.0",
  7245. "symfony/http-foundation": "~2.3|~3.0.0",
  7246. "symfony/intl": "~2.7.25|^2.8.18|~3.2.5",
  7247. "symfony/property-access": "~2.3|~3.0.0",
  7248. "symfony/yaml": "^2.0.5|~3.0.0"
  7249. },
  7250. "suggest": {
  7251. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7252. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  7253. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7254. "symfony/config": "",
  7255. "symfony/expression-language": "For using the 2.4 Expression validator",
  7256. "symfony/http-foundation": "",
  7257. "symfony/intl": "",
  7258. "symfony/property-access": "For using the 2.4 Validator API",
  7259. "symfony/yaml": ""
  7260. },
  7261. "type": "library",
  7262. "extra": {
  7263. "branch-alias": {
  7264. "dev-master": "2.8-dev"
  7265. }
  7266. },
  7267. "autoload": {
  7268. "psr-4": {
  7269. "Symfony\\Component\\Validator\\": ""
  7270. },
  7271. "exclude-from-classmap": [
  7272. "/Tests/"
  7273. ]
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "MIT"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "Fabien Potencier",
  7282. "email": "fabien@symfony.com"
  7283. },
  7284. {
  7285. "name": "Symfony Community",
  7286. "homepage": "https://symfony.com/contributors"
  7287. }
  7288. ],
  7289. "description": "Symfony Validator Component",
  7290. "homepage": "https://symfony.com",
  7291. "time": "2017-02-28T02:24:56+00:00"
  7292. },
  7293. {
  7294. "name": "symfony/yaml",
  7295. "version": "v2.8.18",
  7296. "source": {
  7297. "type": "git",
  7298. "url": "https://github.com/symfony/yaml.git",
  7299. "reference": "2a7bab3c16f6f452c47818fdd08f3b1e49ffcf7d"
  7300. },
  7301. "dist": {
  7302. "type": "zip",
  7303. "url": "https://api.github.com/repos/symfony/yaml/zipball/2a7bab3c16f6f452c47818fdd08f3b1e49ffcf7d",
  7304. "reference": "2a7bab3c16f6f452c47818fdd08f3b1e49ffcf7d",
  7305. "shasum": ""
  7306. },
  7307. "require": {
  7308. "php": ">=5.3.9"
  7309. },
  7310. "type": "library",
  7311. "extra": {
  7312. "branch-alias": {
  7313. "dev-master": "2.8-dev"
  7314. }
  7315. },
  7316. "autoload": {
  7317. "psr-4": {
  7318. "Symfony\\Component\\Yaml\\": ""
  7319. },
  7320. "exclude-from-classmap": [
  7321. "/Tests/"
  7322. ]
  7323. },
  7324. "notification-url": "https://packagist.org/downloads/",
  7325. "license": [
  7326. "MIT"
  7327. ],
  7328. "authors": [
  7329. {
  7330. "name": "Fabien Potencier",
  7331. "email": "fabien@symfony.com"
  7332. },
  7333. {
  7334. "name": "Symfony Community",
  7335. "homepage": "https://symfony.com/contributors"
  7336. }
  7337. ],
  7338. "description": "Symfony Yaml Component",
  7339. "homepage": "https://symfony.com",
  7340. "time": "2017-03-01T18:13:50+00:00"
  7341. },
  7342. {
  7343. "name": "szymach/c-pchart",
  7344. "version": "1.1.6",
  7345. "source": {
  7346. "type": "git",
  7347. "url": "https://github.com/szymach/c-pchart.git",
  7348. "reference": "9daa1b08b6e75803219c3b07b87a9e4e455b5428"
  7349. },
  7350. "dist": {
  7351. "type": "zip",
  7352. "url": "https://api.github.com/repos/szymach/c-pchart/zipball/9daa1b08b6e75803219c3b07b87a9e4e455b5428",
  7353. "reference": "9daa1b08b6e75803219c3b07b87a9e4e455b5428",
  7354. "shasum": ""
  7355. },
  7356. "require": {
  7357. "ext-gd": "*",
  7358. "php": ">=5.3.3"
  7359. },
  7360. "type": "project",
  7361. "autoload": {
  7362. "psr-4": {
  7363. "CpChart\\": "src/"
  7364. },
  7365. "files": [
  7366. "src/Resources/data/constants.php"
  7367. ]
  7368. },
  7369. "notification-url": "https://packagist.org/downloads/",
  7370. "license": [
  7371. "MIT"
  7372. ],
  7373. "description": "Port of \"pChart\" library into PHP 5.3.",
  7374. "homepage": "https://github.com/szymach/c-pchart",
  7375. "keywords": [
  7376. "c-pChart",
  7377. "charts",
  7378. "composer",
  7379. "pchart",
  7380. "statistics"
  7381. ],
  7382. "time": "2015-10-16T20:41:35+00:00"
  7383. },
  7384. {
  7385. "name": "toin0u/digitalocean",
  7386. "version": "dev-master",
  7387. "source": {
  7388. "type": "git",
  7389. "url": "https://github.com/toin0u/DigitalOcean.git",
  7390. "reference": "434b4799302d9164404af1ec11d2601c791b02de"
  7391. },
  7392. "dist": {
  7393. "type": "zip",
  7394. "url": "https://api.github.com/repos/toin0u/DigitalOcean/zipball/434b4799302d9164404af1ec11d2601c791b02de",
  7395. "reference": "434b4799302d9164404af1ec11d2601c791b02de",
  7396. "shasum": ""
  7397. },
  7398. "require": {
  7399. "php": ">=5.3.0",
  7400. "symfony/console": "~2.4",
  7401. "symfony/yaml": "~2.4",
  7402. "toin0u/http-adapter": "~1.0"
  7403. },
  7404. "require-dev": {
  7405. "phpunit/phpunit": "~4.0",
  7406. "satooshi/php-coveralls": "~0.6"
  7407. },
  7408. "bin": [
  7409. "bin/digitalocean"
  7410. ],
  7411. "type": "library",
  7412. "extra": {
  7413. "branch-alias": {
  7414. "dev-master": "1.4-dev"
  7415. }
  7416. },
  7417. "autoload": {
  7418. "psr-0": {
  7419. "DigitalOcean": "src/"
  7420. }
  7421. },
  7422. "notification-url": "https://packagist.org/downloads/",
  7423. "license": [
  7424. "MIT"
  7425. ],
  7426. "authors": [
  7427. {
  7428. "name": "Antoine Corcy",
  7429. "email": "contact@sbin.dk",
  7430. "homepage": "http://sbin.dk",
  7431. "role": "Developer"
  7432. }
  7433. ],
  7434. "description": "DigitalOcean API PHP 5.3+ library",
  7435. "homepage": "https://github.com/toin0u/DigitalOcean",
  7436. "keywords": [
  7437. "Cloud Hosting",
  7438. "SSD",
  7439. "api",
  7440. "digitalocean",
  7441. "vps"
  7442. ],
  7443. "time": "2014-12-17 21:48:35"
  7444. },
  7445. {
  7446. "name": "toin0u/http-adapter",
  7447. "version": "1.0.3",
  7448. "source": {
  7449. "type": "git",
  7450. "url": "https://github.com/toin0u/HttpAdapter.git",
  7451. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10"
  7452. },
  7453. "dist": {
  7454. "type": "zip",
  7455. "url": "https://api.github.com/repos/toin0u/HttpAdapter/zipball/29253948d446bc3afc29897ac67b4cd01f56cd10",
  7456. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10",
  7457. "shasum": ""
  7458. },
  7459. "require": {
  7460. "ext-curl": "*",
  7461. "php": ">=5.3.0"
  7462. },
  7463. "require-dev": {
  7464. "guzzle/guzzle": "@stable",
  7465. "kriswallsmith/buzz": "@stable",
  7466. "satooshi/php-coveralls": "~0.6",
  7467. "zendframework/zendframework": "~2.1"
  7468. },
  7469. "suggest": {
  7470. "guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter",
  7471. "kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter",
  7472. "zendframework/zendframework": "Enabling Zend Http allows you to use the ZendHttpAdapter"
  7473. },
  7474. "type": "library",
  7475. "extra": {
  7476. "branch-alias": {
  7477. "dev-master": "1.0-dev"
  7478. }
  7479. },
  7480. "autoload": {
  7481. "psr-0": {
  7482. "HttpAdapter": "src/"
  7483. }
  7484. },
  7485. "notification-url": "https://packagist.org/downloads/",
  7486. "license": [
  7487. "MIT"
  7488. ],
  7489. "authors": [
  7490. {
  7491. "name": "Antoine Corcy",
  7492. "email": "contact@sbin.dk",
  7493. "homepage": "http://sbin.dk",
  7494. "role": "Developer"
  7495. }
  7496. ],
  7497. "description": "HttpAdapter PHP 5.3+ library",
  7498. "homepage": "https://github.com/toin0u/HttpAdapter",
  7499. "keywords": [
  7500. "adapter",
  7501. "http"
  7502. ],
  7503. "time": "2013-05-26T18:18:11+00:00"
  7504. },
  7505. {
  7506. "name": "twig/extensions",
  7507. "version": "v1.4.1",
  7508. "source": {
  7509. "type": "git",
  7510. "url": "https://github.com/twigphp/Twig-extensions.git",
  7511. "reference": "f0bb8431c8691f5a39f1017d9a5967a082bf01ff"
  7512. },
  7513. "dist": {
  7514. "type": "zip",
  7515. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/f0bb8431c8691f5a39f1017d9a5967a082bf01ff",
  7516. "reference": "f0bb8431c8691f5a39f1017d9a5967a082bf01ff",
  7517. "shasum": ""
  7518. },
  7519. "require": {
  7520. "twig/twig": "~1.20|~2.0"
  7521. },
  7522. "require-dev": {
  7523. "symfony/translation": "~2.3"
  7524. },
  7525. "suggest": {
  7526. "symfony/translation": "Allow the time_diff output to be translated"
  7527. },
  7528. "type": "library",
  7529. "extra": {
  7530. "branch-alias": {
  7531. "dev-master": "1.4-dev"
  7532. }
  7533. },
  7534. "autoload": {
  7535. "psr-0": {
  7536. "Twig_Extensions_": "lib/"
  7537. }
  7538. },
  7539. "notification-url": "https://packagist.org/downloads/",
  7540. "license": [
  7541. "MIT"
  7542. ],
  7543. "authors": [
  7544. {
  7545. "name": "Fabien Potencier",
  7546. "email": "fabien@symfony.com"
  7547. }
  7548. ],
  7549. "description": "Common additional features for Twig that do not directly belong in core",
  7550. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  7551. "keywords": [
  7552. "i18n",
  7553. "text"
  7554. ],
  7555. "time": "2016-10-25T17:34:14+00:00"
  7556. },
  7557. {
  7558. "name": "twig/twig",
  7559. "version": "v1.32.0",
  7560. "source": {
  7561. "type": "git",
  7562. "url": "https://github.com/twigphp/Twig.git",
  7563. "reference": "9935b662e24d6e634da88901ab534cc12e8c728f"
  7564. },
  7565. "dist": {
  7566. "type": "zip",
  7567. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9935b662e24d6e634da88901ab534cc12e8c728f",
  7568. "reference": "9935b662e24d6e634da88901ab534cc12e8c728f",
  7569. "shasum": ""
  7570. },
  7571. "require": {
  7572. "php": ">=5.2.7"
  7573. },
  7574. "require-dev": {
  7575. "psr/container": "^1.0",
  7576. "symfony/debug": "~2.7",
  7577. "symfony/phpunit-bridge": "~3.2"
  7578. },
  7579. "type": "library",
  7580. "extra": {
  7581. "branch-alias": {
  7582. "dev-master": "1.32-dev"
  7583. }
  7584. },
  7585. "autoload": {
  7586. "psr-0": {
  7587. "Twig_": "lib/"
  7588. }
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "BSD-3-Clause"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Fabien Potencier",
  7597. "email": "fabien@symfony.com",
  7598. "homepage": "http://fabien.potencier.org",
  7599. "role": "Lead Developer"
  7600. },
  7601. {
  7602. "name": "Armin Ronacher",
  7603. "email": "armin.ronacher@active-4.com",
  7604. "role": "Project Founder"
  7605. },
  7606. {
  7607. "name": "Twig Team",
  7608. "homepage": "http://twig.sensiolabs.org/contributors",
  7609. "role": "Contributors"
  7610. }
  7611. ],
  7612. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7613. "homepage": "http://twig.sensiolabs.org",
  7614. "keywords": [
  7615. "templating"
  7616. ],
  7617. "time": "2017-02-27T00:07:03+00:00"
  7618. },
  7619. {
  7620. "name": "webit/eval-math",
  7621. "version": "dev-master",
  7622. "source": {
  7623. "type": "git",
  7624. "url": "https://github.com/dbojdo/eval-math.git",
  7625. "reference": "0e7c3a1e0f536b826f04553726c112996b52ded6"
  7626. },
  7627. "dist": {
  7628. "type": "zip",
  7629. "url": "https://api.github.com/repos/dbojdo/eval-math/zipball/0e7c3a1e0f536b826f04553726c112996b52ded6",
  7630. "reference": "0e7c3a1e0f536b826f04553726c112996b52ded6",
  7631. "shasum": ""
  7632. },
  7633. "require": {
  7634. "php": ">=5.3"
  7635. },
  7636. "require-dev": {
  7637. "phpunit/phpunit": "~4.2"
  7638. },
  7639. "type": "library",
  7640. "extra": {
  7641. "branch-alias": {
  7642. "dev-master": "1.x-dev"
  7643. }
  7644. },
  7645. "autoload": {
  7646. "psr-4": {
  7647. "Webit\\Util\\EvalMath\\": "src/"
  7648. }
  7649. },
  7650. "notification-url": "https://packagist.org/downloads/",
  7651. "description": "EvalMath",
  7652. "keywords": [
  7653. "EvalMath"
  7654. ],
  7655. "time": "2016-02-15 09:34:24"
  7656. },
  7657. {
  7658. "name": "winzou/state-machine",
  7659. "version": "0.3.2",
  7660. "source": {
  7661. "type": "git",
  7662. "url": "https://github.com/winzou/state-machine.git",
  7663. "reference": "4ef48e7bba494514f36884a618a9b889eec3a5b0"
  7664. },
  7665. "dist": {
  7666. "type": "zip",
  7667. "url": "https://api.github.com/repos/winzou/state-machine/zipball/4ef48e7bba494514f36884a618a9b889eec3a5b0",
  7668. "reference": "4ef48e7bba494514f36884a618a9b889eec3a5b0",
  7669. "shasum": ""
  7670. },
  7671. "require": {
  7672. "php": ">=5.3.0",
  7673. "symfony/event-dispatcher": "~2.1|~3.0",
  7674. "symfony/expression-language": "~2.4|~3.0",
  7675. "symfony/property-access": "~2.1|~3.0"
  7676. },
  7677. "require-dev": {
  7678. "phpspec/phpspec": "~2.0",
  7679. "twig/twig": "~1.0"
  7680. },
  7681. "suggest": {
  7682. "twig/twig": "Access the state machine in your twig templates (~1.0)"
  7683. },
  7684. "type": "library",
  7685. "autoload": {
  7686. "psr-0": {
  7687. "SM": "src/"
  7688. }
  7689. },
  7690. "notification-url": "https://packagist.org/downloads/",
  7691. "license": [
  7692. "MIT"
  7693. ],
  7694. "authors": [
  7695. {
  7696. "name": "Alexandre Bacco",
  7697. "email": "alexandre.bacco@gmail.com",
  7698. "homepage": "http://alex.bacco.fr"
  7699. }
  7700. ],
  7701. "description": "A very lightweight yet powerful PHP state machine",
  7702. "homepage": "https://github.com/winzou/StateMachine",
  7703. "keywords": [
  7704. "callback",
  7705. "event",
  7706. "state",
  7707. "statemachine"
  7708. ],
  7709. "time": "2016-11-03T13:24:00+00:00"
  7710. },
  7711. {
  7712. "name": "zendframework/zend-code",
  7713. "version": "3.1.0",
  7714. "source": {
  7715. "type": "git",
  7716. "url": "https://github.com/zendframework/zend-code.git",
  7717. "reference": "2899c17f83a7207f2d7f53ec2f421204d3beea27"
  7718. },
  7719. "dist": {
  7720. "type": "zip",
  7721. "url": "https://api.github.com/repos/zendframework/zend-code/zipball/2899c17f83a7207f2d7f53ec2f421204d3beea27",
  7722. "reference": "2899c17f83a7207f2d7f53ec2f421204d3beea27",
  7723. "shasum": ""
  7724. },
  7725. "require": {
  7726. "php": "^5.6 || 7.0.0 - 7.0.4 || ^7.0.6",
  7727. "zendframework/zend-eventmanager": "^2.6 || ^3.0"
  7728. },
  7729. "require-dev": {
  7730. "doctrine/annotations": "~1.0",
  7731. "ext-phar": "*",
  7732. "phpunit/phpunit": "^4.8.21",
  7733. "squizlabs/php_codesniffer": "^2.5",
  7734. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  7735. },
  7736. "suggest": {
  7737. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  7738. "zendframework/zend-stdlib": "Zend\\Stdlib component"
  7739. },
  7740. "type": "library",
  7741. "extra": {
  7742. "branch-alias": {
  7743. "dev-master": "3.1-dev",
  7744. "dev-develop": "3.2-dev"
  7745. }
  7746. },
  7747. "autoload": {
  7748. "psr-4": {
  7749. "Zend\\Code\\": "src/"
  7750. }
  7751. },
  7752. "notification-url": "https://packagist.org/downloads/",
  7753. "license": [
  7754. "BSD-3-Clause"
  7755. ],
  7756. "description": "provides facilities to generate arbitrary code using an object oriented interface",
  7757. "homepage": "https://github.com/zendframework/zend-code",
  7758. "keywords": [
  7759. "code",
  7760. "zf2"
  7761. ],
  7762. "time": "2016-10-24T13:23:32+00:00"
  7763. },
  7764. {
  7765. "name": "zendframework/zend-config",
  7766. "version": "2.5.1",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/zendframework/zend-config.git",
  7770. "reference": "ec49b1df1bdd9772df09dc2f612fbfc279bf4c27"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/zendframework/zend-config/zipball/ec49b1df1bdd9772df09dc2f612fbfc279bf4c27",
  7775. "reference": "ec49b1df1bdd9772df09dc2f612fbfc279bf4c27",
  7776. "shasum": ""
  7777. },
  7778. "require": {
  7779. "php": ">=5.3.23",
  7780. "zendframework/zend-stdlib": "~2.5"
  7781. },
  7782. "require-dev": {
  7783. "fabpot/php-cs-fixer": "1.7.*",
  7784. "phpunit/phpunit": "~4.0",
  7785. "zendframework/zend-filter": "~2.5",
  7786. "zendframework/zend-i18n": "~2.5",
  7787. "zendframework/zend-json": "~2.5",
  7788. "zendframework/zend-mvc": "~2.5",
  7789. "zendframework/zend-servicemanager": "~2.5"
  7790. },
  7791. "suggest": {
  7792. "zendframework/zend-filter": "Zend\\Filter component",
  7793. "zendframework/zend-i18n": "Zend\\I18n component",
  7794. "zendframework/zend-json": "Zend\\Json to use the Json reader or writer classes",
  7795. "zendframework/zend-servicemanager": "Zend\\ServiceManager for use with the Config Factory to retrieve reader and writer instances"
  7796. },
  7797. "type": "library",
  7798. "extra": {
  7799. "branch-alias": {
  7800. "dev-master": "2.5-dev",
  7801. "dev-develop": "2.6-dev"
  7802. }
  7803. },
  7804. "autoload": {
  7805. "psr-4": {
  7806. "Zend\\Config\\": "src/"
  7807. }
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "BSD-3-Clause"
  7812. ],
  7813. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  7814. "homepage": "https://github.com/zendframework/zend-config",
  7815. "keywords": [
  7816. "config",
  7817. "zf2"
  7818. ],
  7819. "time": "2015-06-03T15:32:00+00:00"
  7820. },
  7821. {
  7822. "name": "zendframework/zend-escaper",
  7823. "version": "2.5.2",
  7824. "source": {
  7825. "type": "git",
  7826. "url": "https://github.com/zendframework/zend-escaper.git",
  7827. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  7828. },
  7829. "dist": {
  7830. "type": "zip",
  7831. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  7832. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  7833. "shasum": ""
  7834. },
  7835. "require": {
  7836. "php": ">=5.5"
  7837. },
  7838. "require-dev": {
  7839. "fabpot/php-cs-fixer": "1.7.*",
  7840. "phpunit/phpunit": "~4.0"
  7841. },
  7842. "type": "library",
  7843. "extra": {
  7844. "branch-alias": {
  7845. "dev-master": "2.5-dev",
  7846. "dev-develop": "2.6-dev"
  7847. }
  7848. },
  7849. "autoload": {
  7850. "psr-4": {
  7851. "Zend\\Escaper\\": "src/"
  7852. }
  7853. },
  7854. "notification-url": "https://packagist.org/downloads/",
  7855. "license": [
  7856. "BSD-3-Clause"
  7857. ],
  7858. "homepage": "https://github.com/zendframework/zend-escaper",
  7859. "keywords": [
  7860. "escaper",
  7861. "zf2"
  7862. ],
  7863. "time": "2016-06-30T19:48:38+00:00"
  7864. },
  7865. {
  7866. "name": "zendframework/zend-eventmanager",
  7867. "version": "3.1.0",
  7868. "source": {
  7869. "type": "git",
  7870. "url": "https://github.com/zendframework/zend-eventmanager.git",
  7871. "reference": "c3bce7b7d47c54040b9ae51bc55491c72513b75d"
  7872. },
  7873. "dist": {
  7874. "type": "zip",
  7875. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/c3bce7b7d47c54040b9ae51bc55491c72513b75d",
  7876. "reference": "c3bce7b7d47c54040b9ae51bc55491c72513b75d",
  7877. "shasum": ""
  7878. },
  7879. "require": {
  7880. "php": "^5.6 || ^7.0"
  7881. },
  7882. "require-dev": {
  7883. "athletic/athletic": "^0.1",
  7884. "container-interop/container-interop": "^1.1.0",
  7885. "phpunit/phpunit": "^5.6",
  7886. "zendframework/zend-coding-standard": "~1.0.0",
  7887. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  7888. },
  7889. "suggest": {
  7890. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  7891. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  7892. },
  7893. "type": "library",
  7894. "extra": {
  7895. "branch-alias": {
  7896. "dev-master": "3.1-dev",
  7897. "dev-develop": "3.2-dev"
  7898. }
  7899. },
  7900. "autoload": {
  7901. "psr-4": {
  7902. "Zend\\EventManager\\": "src/"
  7903. }
  7904. },
  7905. "notification-url": "https://packagist.org/downloads/",
  7906. "license": [
  7907. "BSD-3-Clause"
  7908. ],
  7909. "description": "Trigger and listen to events within a PHP application",
  7910. "homepage": "https://github.com/zendframework/zend-eventmanager",
  7911. "keywords": [
  7912. "event",
  7913. "eventmanager",
  7914. "events",
  7915. "zf2"
  7916. ],
  7917. "time": "2016-12-19T21:47:12+00:00"
  7918. },
  7919. {
  7920. "name": "zendframework/zend-feed",
  7921. "version": "2.5.1",
  7922. "source": {
  7923. "type": "git",
  7924. "url": "https://github.com/zendframework/zend-feed.git",
  7925. "reference": "c5528e2fd632a5dc09b5487fabca125e4b88d9c0"
  7926. },
  7927. "dist": {
  7928. "type": "zip",
  7929. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/c5528e2fd632a5dc09b5487fabca125e4b88d9c0",
  7930. "reference": "c5528e2fd632a5dc09b5487fabca125e4b88d9c0",
  7931. "shasum": ""
  7932. },
  7933. "require": {
  7934. "php": ">=5.3.23",
  7935. "zendframework/zend-escaper": "~2.5",
  7936. "zendframework/zend-stdlib": "~2.5"
  7937. },
  7938. "require-dev": {
  7939. "fabpot/php-cs-fixer": "1.7.*",
  7940. "phpunit/phpunit": "~4.0",
  7941. "zendframework/zend-cache": "~2.5",
  7942. "zendframework/zend-db": "~2.5",
  7943. "zendframework/zend-http": "~2.5",
  7944. "zendframework/zend-servicemanager": "~2.5",
  7945. "zendframework/zend-validator": "~2.5"
  7946. },
  7947. "suggest": {
  7948. "zendframework/zend-cache": "Zend\\Cache component",
  7949. "zendframework/zend-db": "Zend\\Db component",
  7950. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  7951. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for default/recommended ExtensionManager implementations",
  7952. "zendframework/zend-validator": "Zend\\Validator component"
  7953. },
  7954. "type": "library",
  7955. "extra": {
  7956. "branch-alias": {
  7957. "dev-master": "2.5-dev",
  7958. "dev-develop": "2.6-dev"
  7959. }
  7960. },
  7961. "autoload": {
  7962. "psr-4": {
  7963. "Zend\\Feed\\": "src/"
  7964. }
  7965. },
  7966. "notification-url": "https://packagist.org/downloads/",
  7967. "license": [
  7968. "BSD-3-Clause"
  7969. ],
  7970. "description": "provides functionality for consuming RSS and Atom feeds",
  7971. "homepage": "https://github.com/zendframework/zend-feed",
  7972. "keywords": [
  7973. "feed",
  7974. "zf2"
  7975. ],
  7976. "time": "2015-06-03T15:32:01+00:00"
  7977. },
  7978. {
  7979. "name": "zendframework/zend-http",
  7980. "version": "2.5.1",
  7981. "source": {
  7982. "type": "git",
  7983. "url": "https://github.com/zendframework/zend-http.git",
  7984. "reference": "6cc6dee9a27fc07e0167d8779ab2258747108ed5"
  7985. },
  7986. "dist": {
  7987. "type": "zip",
  7988. "url": "https://api.github.com/repos/zendframework/zend-http/zipball/6cc6dee9a27fc07e0167d8779ab2258747108ed5",
  7989. "reference": "6cc6dee9a27fc07e0167d8779ab2258747108ed5",
  7990. "shasum": ""
  7991. },
  7992. "require": {
  7993. "php": ">=5.3.23",
  7994. "zendframework/zend-loader": "~2.5",
  7995. "zendframework/zend-stdlib": "~2.5",
  7996. "zendframework/zend-uri": "~2.5",
  7997. "zendframework/zend-validator": "~2.5"
  7998. },
  7999. "require-dev": {
  8000. "fabpot/php-cs-fixer": "1.7.*",
  8001. "phpunit/phpunit": "~4.0",
  8002. "zendframework/zend-config": "~2.5"
  8003. },
  8004. "type": "library",
  8005. "extra": {
  8006. "branch-alias": {
  8007. "dev-master": "2.5-dev",
  8008. "dev-develop": "2.6-dev"
  8009. }
  8010. },
  8011. "autoload": {
  8012. "psr-4": {
  8013. "Zend\\Http\\": "src/"
  8014. }
  8015. },
  8016. "notification-url": "https://packagist.org/downloads/",
  8017. "license": [
  8018. "BSD-3-Clause"
  8019. ],
  8020. "description": "provides an easy interface for performing Hyper-Text Transfer Protocol (HTTP) requests",
  8021. "homepage": "https://github.com/zendframework/zend-http",
  8022. "keywords": [
  8023. "http",
  8024. "zf2"
  8025. ],
  8026. "time": "2015-06-03T15:32:01+00:00"
  8027. },
  8028. {
  8029. "name": "zendframework/zend-loader",
  8030. "version": "2.5.1",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/zendframework/zend-loader.git",
  8034. "reference": "c5fd2f071bde071f4363def7dea8dec7393e135c"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/zendframework/zend-loader/zipball/c5fd2f071bde071f4363def7dea8dec7393e135c",
  8039. "reference": "c5fd2f071bde071f4363def7dea8dec7393e135c",
  8040. "shasum": ""
  8041. },
  8042. "require": {
  8043. "php": ">=5.3.23"
  8044. },
  8045. "require-dev": {
  8046. "fabpot/php-cs-fixer": "1.7.*",
  8047. "phpunit/phpunit": "~4.0"
  8048. },
  8049. "type": "library",
  8050. "extra": {
  8051. "branch-alias": {
  8052. "dev-master": "2.5-dev",
  8053. "dev-develop": "2.6-dev"
  8054. }
  8055. },
  8056. "autoload": {
  8057. "psr-4": {
  8058. "Zend\\Loader\\": "src/"
  8059. }
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "BSD-3-Clause"
  8064. ],
  8065. "homepage": "https://github.com/zendframework/zend-loader",
  8066. "keywords": [
  8067. "loader",
  8068. "zf2"
  8069. ],
  8070. "time": "2015-06-03T14:05:47+00:00"
  8071. },
  8072. {
  8073. "name": "zendframework/zend-stdlib",
  8074. "version": "2.5.2",
  8075. "source": {
  8076. "type": "git",
  8077. "url": "https://github.com/zendframework/zend-stdlib.git",
  8078. "reference": "2e50c4e8f8d0ab928aa5beeb21644f30bf2cc8bf"
  8079. },
  8080. "dist": {
  8081. "type": "zip",
  8082. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/2e50c4e8f8d0ab928aa5beeb21644f30bf2cc8bf",
  8083. "reference": "2e50c4e8f8d0ab928aa5beeb21644f30bf2cc8bf",
  8084. "shasum": ""
  8085. },
  8086. "require": {
  8087. "php": ">=5.5"
  8088. },
  8089. "require-dev": {
  8090. "fabpot/php-cs-fixer": "1.7.*",
  8091. "phpunit/phpunit": "~4.0",
  8092. "zendframework/zend-config": "~2.5",
  8093. "zendframework/zend-eventmanager": "~2.5",
  8094. "zendframework/zend-filter": "~2.5",
  8095. "zendframework/zend-inputfilter": "~2.5",
  8096. "zendframework/zend-serializer": "~2.5",
  8097. "zendframework/zend-servicemanager": "~2.5"
  8098. },
  8099. "suggest": {
  8100. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  8101. "zendframework/zend-filter": "To support naming strategy hydrator usage",
  8102. "zendframework/zend-serializer": "Zend\\Serializer component",
  8103. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  8104. },
  8105. "type": "library",
  8106. "extra": {
  8107. "branch-alias": {
  8108. "dev-master": "2.5-dev",
  8109. "dev-develop": "2.6-dev"
  8110. }
  8111. },
  8112. "autoload": {
  8113. "psr-4": {
  8114. "Zend\\Stdlib\\": "src/"
  8115. }
  8116. },
  8117. "notification-url": "https://packagist.org/downloads/",
  8118. "license": [
  8119. "BSD-3-Clause"
  8120. ],
  8121. "homepage": "https://github.com/zendframework/zend-stdlib",
  8122. "keywords": [
  8123. "stdlib",
  8124. "zf2"
  8125. ],
  8126. "time": "2015-07-21T14:59:49+00:00"
  8127. },
  8128. {
  8129. "name": "zendframework/zend-uri",
  8130. "version": "2.5.2",
  8131. "source": {
  8132. "type": "git",
  8133. "url": "https://github.com/zendframework/zend-uri.git",
  8134. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed"
  8135. },
  8136. "dist": {
  8137. "type": "zip",
  8138. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/0bf717a239432b1a1675ae314f7c4acd742749ed",
  8139. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed",
  8140. "shasum": ""
  8141. },
  8142. "require": {
  8143. "php": "^5.5 || ^7.0",
  8144. "zendframework/zend-escaper": "^2.5",
  8145. "zendframework/zend-validator": "^2.5"
  8146. },
  8147. "require-dev": {
  8148. "fabpot/php-cs-fixer": "1.7.*",
  8149. "phpunit/phpunit": "~4.0"
  8150. },
  8151. "type": "library",
  8152. "extra": {
  8153. "branch-alias": {
  8154. "dev-master": "2.5-dev",
  8155. "dev-develop": "2.6-dev"
  8156. }
  8157. },
  8158. "autoload": {
  8159. "psr-4": {
  8160. "Zend\\Uri\\": "src/"
  8161. }
  8162. },
  8163. "notification-url": "https://packagist.org/downloads/",
  8164. "license": [
  8165. "BSD-3-Clause"
  8166. ],
  8167. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  8168. "homepage": "https://github.com/zendframework/zend-uri",
  8169. "keywords": [
  8170. "uri",
  8171. "zf2"
  8172. ],
  8173. "time": "2016-02-17T22:38:51+00:00"
  8174. },
  8175. {
  8176. "name": "zendframework/zend-validator",
  8177. "version": "2.5.4",
  8178. "source": {
  8179. "type": "git",
  8180. "url": "https://github.com/zendframework/zend-validator.git",
  8181. "reference": "31edd30df3c0faca721ef9dd2c1b768f3b6a7c5f"
  8182. },
  8183. "dist": {
  8184. "type": "zip",
  8185. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/31edd30df3c0faca721ef9dd2c1b768f3b6a7c5f",
  8186. "reference": "31edd30df3c0faca721ef9dd2c1b768f3b6a7c5f",
  8187. "shasum": ""
  8188. },
  8189. "require": {
  8190. "php": "^5.5 || ^7.0",
  8191. "zendframework/zend-stdlib": "~2.5"
  8192. },
  8193. "require-dev": {
  8194. "fabpot/php-cs-fixer": "1.7.*",
  8195. "phpunit/phpunit": "~4.0",
  8196. "zendframework/zend-cache": "~2.5",
  8197. "zendframework/zend-config": "~2.5",
  8198. "zendframework/zend-db": "~2.5",
  8199. "zendframework/zend-filter": "~2.5",
  8200. "zendframework/zend-http": "~2.5",
  8201. "zendframework/zend-i18n": "~2.5",
  8202. "zendframework/zend-math": "~2.5",
  8203. "zendframework/zend-servicemanager": "~2.5",
  8204. "zendframework/zend-session": "~2.5",
  8205. "zendframework/zend-uri": "~2.5"
  8206. },
  8207. "suggest": {
  8208. "zendframework/zend-db": "Zend\\Db component",
  8209. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  8210. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages as well as to use the various Date validators",
  8211. "zendframework/zend-i18n-resources": "Translations of validator messages",
  8212. "zendframework/zend-math": "Zend\\Math component",
  8213. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  8214. "zendframework/zend-session": "Zend\\Session component",
  8215. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  8216. },
  8217. "type": "library",
  8218. "extra": {
  8219. "branch-alias": {
  8220. "dev-master": "2.5-dev",
  8221. "dev-develop": "2.6-dev"
  8222. }
  8223. },
  8224. "autoload": {
  8225. "psr-4": {
  8226. "Zend\\Validator\\": "src/"
  8227. }
  8228. },
  8229. "notification-url": "https://packagist.org/downloads/",
  8230. "license": [
  8231. "BSD-3-Clause"
  8232. ],
  8233. "description": "provides a set of commonly needed validators",
  8234. "homepage": "https://github.com/zendframework/zend-validator",
  8235. "keywords": [
  8236. "validator",
  8237. "zf2"
  8238. ],
  8239. "time": "2016-02-17T17:13:10+00:00"
  8240. }
  8241. ],
  8242. "packages-dev": [
  8243. {
  8244. "name": "behat/behat",
  8245. "version": "v3.3.0",
  8246. "source": {
  8247. "type": "git",
  8248. "url": "https://github.com/Behat/Behat.git",
  8249. "reference": "15a3a1857457eaa29cdf41564a5e421effb09526"
  8250. },
  8251. "dist": {
  8252. "type": "zip",
  8253. "url": "https://api.github.com/repos/Behat/Behat/zipball/15a3a1857457eaa29cdf41564a5e421effb09526",
  8254. "reference": "15a3a1857457eaa29cdf41564a5e421effb09526",
  8255. "shasum": ""
  8256. },
  8257. "require": {
  8258. "behat/gherkin": "^4.4.4",
  8259. "behat/transliterator": "~1.0",
  8260. "container-interop/container-interop": "^1.1",
  8261. "ext-mbstring": "*",
  8262. "php": ">=5.3.3",
  8263. "symfony/class-loader": "~2.1||~3.0",
  8264. "symfony/config": "~2.3||~3.0",
  8265. "symfony/console": "~2.5||~3.0",
  8266. "symfony/dependency-injection": "~2.1||~3.0",
  8267. "symfony/event-dispatcher": "~2.1||~3.0",
  8268. "symfony/translation": "~2.3||~3.0",
  8269. "symfony/yaml": "~2.1||~3.0"
  8270. },
  8271. "require-dev": {
  8272. "herrera-io/box": "~1.6.1",
  8273. "phpunit/phpunit": "~4.5",
  8274. "symfony/process": "~2.5|~3.0"
  8275. },
  8276. "suggest": {
  8277. "behat/mink-extension": "for integration with Mink testing framework",
  8278. "behat/symfony2-extension": "for integration with Symfony2 web framework",
  8279. "behat/yii-extension": "for integration with Yii web framework"
  8280. },
  8281. "bin": [
  8282. "bin/behat"
  8283. ],
  8284. "type": "library",
  8285. "extra": {
  8286. "branch-alias": {
  8287. "dev-master": "3.2.x-dev"
  8288. }
  8289. },
  8290. "autoload": {
  8291. "psr-0": {
  8292. "Behat\\Behat": "src/",
  8293. "Behat\\Testwork": "src/"
  8294. }
  8295. },
  8296. "notification-url": "https://packagist.org/downloads/",
  8297. "license": [
  8298. "MIT"
  8299. ],
  8300. "authors": [
  8301. {
  8302. "name": "Konstantin Kudryashov",
  8303. "email": "ever.zet@gmail.com",
  8304. "homepage": "http://everzet.com"
  8305. }
  8306. ],
  8307. "description": "Scenario-oriented BDD framework for PHP 5.3",
  8308. "homepage": "http://behat.org/",
  8309. "keywords": [
  8310. "Agile",
  8311. "BDD",
  8312. "ScenarioBDD",
  8313. "Scrum",
  8314. "StoryBDD",
  8315. "User story",
  8316. "business",
  8317. "development",
  8318. "documentation",
  8319. "examples",
  8320. "symfony",
  8321. "testing"
  8322. ],
  8323. "time": "2016-12-25T13:43:52+00:00"
  8324. },
  8325. {
  8326. "name": "behat/gherkin",
  8327. "version": "v4.4.5",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/Behat/Gherkin.git",
  8331. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c14cff4f955b17d20d088dec1bde61c0539ec74",
  8336. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "php": ">=5.3.1"
  8341. },
  8342. "require-dev": {
  8343. "phpunit/phpunit": "~4.5|~5",
  8344. "symfony/phpunit-bridge": "~2.7|~3",
  8345. "symfony/yaml": "~2.3|~3"
  8346. },
  8347. "suggest": {
  8348. "symfony/yaml": "If you want to parse features, represented in YAML files"
  8349. },
  8350. "type": "library",
  8351. "extra": {
  8352. "branch-alias": {
  8353. "dev-master": "4.4-dev"
  8354. }
  8355. },
  8356. "autoload": {
  8357. "psr-0": {
  8358. "Behat\\Gherkin": "src/"
  8359. }
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "MIT"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Konstantin Kudryashov",
  8368. "email": "ever.zet@gmail.com",
  8369. "homepage": "http://everzet.com"
  8370. }
  8371. ],
  8372. "description": "Gherkin DSL parser for PHP 5.3",
  8373. "homepage": "http://behat.org/",
  8374. "keywords": [
  8375. "BDD",
  8376. "Behat",
  8377. "Cucumber",
  8378. "DSL",
  8379. "gherkin",
  8380. "parser"
  8381. ],
  8382. "time": "2016-10-30T11:50:56+00:00"
  8383. },
  8384. {
  8385. "name": "behat/mink",
  8386. "version": "v1.7.1",
  8387. "source": {
  8388. "type": "git",
  8389. "url": "https://github.com/minkphp/Mink.git",
  8390. "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9"
  8391. },
  8392. "dist": {
  8393. "type": "zip",
  8394. "url": "https://api.github.com/repos/minkphp/Mink/zipball/e6930b9c74693dff7f4e58577e1b1743399f3ff9",
  8395. "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9",
  8396. "shasum": ""
  8397. },
  8398. "require": {
  8399. "php": ">=5.3.1",
  8400. "symfony/css-selector": "~2.1|~3.0"
  8401. },
  8402. "require-dev": {
  8403. "symfony/phpunit-bridge": "~2.7|~3.0"
  8404. },
  8405. "suggest": {
  8406. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  8407. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  8408. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  8409. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  8410. },
  8411. "type": "library",
  8412. "extra": {
  8413. "branch-alias": {
  8414. "dev-master": "1.7.x-dev"
  8415. }
  8416. },
  8417. "autoload": {
  8418. "psr-4": {
  8419. "Behat\\Mink\\": "src/"
  8420. }
  8421. },
  8422. "notification-url": "https://packagist.org/downloads/",
  8423. "license": [
  8424. "MIT"
  8425. ],
  8426. "authors": [
  8427. {
  8428. "name": "Konstantin Kudryashov",
  8429. "email": "ever.zet@gmail.com",
  8430. "homepage": "http://everzet.com"
  8431. }
  8432. ],
  8433. "description": "Browser controller/emulator abstraction for PHP",
  8434. "homepage": "http://mink.behat.org/",
  8435. "keywords": [
  8436. "browser",
  8437. "testing",
  8438. "web"
  8439. ],
  8440. "time": "2016-03-05T08:26:18+00:00"
  8441. },
  8442. {
  8443. "name": "behat/mink-browserkit-driver",
  8444. "version": "v1.3.2",
  8445. "source": {
  8446. "type": "git",
  8447. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  8448. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  8449. },
  8450. "dist": {
  8451. "type": "zip",
  8452. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  8453. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  8454. "shasum": ""
  8455. },
  8456. "require": {
  8457. "behat/mink": "^1.7.1@dev",
  8458. "php": ">=5.3.6",
  8459. "symfony/browser-kit": "~2.3|~3.0",
  8460. "symfony/dom-crawler": "~2.3|~3.0"
  8461. },
  8462. "require-dev": {
  8463. "silex/silex": "~1.2",
  8464. "symfony/phpunit-bridge": "~2.7|~3.0"
  8465. },
  8466. "type": "mink-driver",
  8467. "extra": {
  8468. "branch-alias": {
  8469. "dev-master": "1.3.x-dev"
  8470. }
  8471. },
  8472. "autoload": {
  8473. "psr-4": {
  8474. "Behat\\Mink\\Driver\\": "src/"
  8475. }
  8476. },
  8477. "notification-url": "https://packagist.org/downloads/",
  8478. "license": [
  8479. "MIT"
  8480. ],
  8481. "authors": [
  8482. {
  8483. "name": "Konstantin Kudryashov",
  8484. "email": "ever.zet@gmail.com",
  8485. "homepage": "http://everzet.com"
  8486. }
  8487. ],
  8488. "description": "Symfony2 BrowserKit driver for Mink framework",
  8489. "homepage": "http://mink.behat.org/",
  8490. "keywords": [
  8491. "Mink",
  8492. "Symfony2",
  8493. "browser",
  8494. "testing"
  8495. ],
  8496. "time": "2016-03-05T08:59:47+00:00"
  8497. },
  8498. {
  8499. "name": "behat/mink-extension",
  8500. "version": "v2.2",
  8501. "source": {
  8502. "type": "git",
  8503. "url": "https://github.com/Behat/MinkExtension.git",
  8504. "reference": "5b4bda64ff456104564317e212c823e45cad9d59"
  8505. },
  8506. "dist": {
  8507. "type": "zip",
  8508. "url": "https://api.github.com/repos/Behat/MinkExtension/zipball/5b4bda64ff456104564317e212c823e45cad9d59",
  8509. "reference": "5b4bda64ff456104564317e212c823e45cad9d59",
  8510. "shasum": ""
  8511. },
  8512. "require": {
  8513. "behat/behat": "~3.0,>=3.0.5",
  8514. "behat/mink": "~1.5",
  8515. "php": ">=5.3.2",
  8516. "symfony/config": "~2.2|~3.0"
  8517. },
  8518. "require-dev": {
  8519. "behat/mink-goutte-driver": "~1.1",
  8520. "phpspec/phpspec": "~2.0"
  8521. },
  8522. "type": "behat-extension",
  8523. "extra": {
  8524. "branch-alias": {
  8525. "dev-master": "2.1.x-dev"
  8526. }
  8527. },
  8528. "autoload": {
  8529. "psr-0": {
  8530. "Behat\\MinkExtension": "src/"
  8531. }
  8532. },
  8533. "notification-url": "https://packagist.org/downloads/",
  8534. "license": [
  8535. "MIT"
  8536. ],
  8537. "authors": [
  8538. {
  8539. "name": "Christophe Coevoet",
  8540. "email": "stof@notk.org"
  8541. },
  8542. {
  8543. "name": "Konstantin Kudryashov",
  8544. "email": "ever.zet@gmail.com"
  8545. }
  8546. ],
  8547. "description": "Mink extension for Behat",
  8548. "homepage": "http://extensions.behat.org/mink",
  8549. "keywords": [
  8550. "browser",
  8551. "gui",
  8552. "test",
  8553. "web"
  8554. ],
  8555. "time": "2016-02-15T07:55:18+00:00"
  8556. },
  8557. {
  8558. "name": "behat/mink-goutte-driver",
  8559. "version": "v1.2.1",
  8560. "source": {
  8561. "type": "git",
  8562. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  8563. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  8564. },
  8565. "dist": {
  8566. "type": "zip",
  8567. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  8568. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  8569. "shasum": ""
  8570. },
  8571. "require": {
  8572. "behat/mink": "~1.6@dev",
  8573. "behat/mink-browserkit-driver": "~1.2@dev",
  8574. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  8575. "php": ">=5.3.1"
  8576. },
  8577. "require-dev": {
  8578. "symfony/phpunit-bridge": "~2.7|~3.0"
  8579. },
  8580. "type": "mink-driver",
  8581. "extra": {
  8582. "branch-alias": {
  8583. "dev-master": "1.2.x-dev"
  8584. }
  8585. },
  8586. "autoload": {
  8587. "psr-4": {
  8588. "Behat\\Mink\\Driver\\": "src/"
  8589. }
  8590. },
  8591. "notification-url": "https://packagist.org/downloads/",
  8592. "license": [
  8593. "MIT"
  8594. ],
  8595. "authors": [
  8596. {
  8597. "name": "Konstantin Kudryashov",
  8598. "email": "ever.zet@gmail.com",
  8599. "homepage": "http://everzet.com"
  8600. }
  8601. ],
  8602. "description": "Goutte driver for Mink framework",
  8603. "homepage": "http://mink.behat.org/",
  8604. "keywords": [
  8605. "browser",
  8606. "goutte",
  8607. "headless",
  8608. "testing"
  8609. ],
  8610. "time": "2016-03-05T09:04:22+00:00"
  8611. },
  8612. {
  8613. "name": "behat/mink-selenium2-driver",
  8614. "version": "v1.3.1",
  8615. "source": {
  8616. "type": "git",
  8617. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  8618. "reference": "473a9f3ebe0c134ee1e623ce8a9c852832020288"
  8619. },
  8620. "dist": {
  8621. "type": "zip",
  8622. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/473a9f3ebe0c134ee1e623ce8a9c852832020288",
  8623. "reference": "473a9f3ebe0c134ee1e623ce8a9c852832020288",
  8624. "shasum": ""
  8625. },
  8626. "require": {
  8627. "behat/mink": "~1.7@dev",
  8628. "instaclick/php-webdriver": "~1.1",
  8629. "php": ">=5.3.1"
  8630. },
  8631. "require-dev": {
  8632. "symfony/phpunit-bridge": "~2.7"
  8633. },
  8634. "type": "mink-driver",
  8635. "extra": {
  8636. "branch-alias": {
  8637. "dev-master": "1.3.x-dev"
  8638. }
  8639. },
  8640. "autoload": {
  8641. "psr-4": {
  8642. "Behat\\Mink\\Driver\\": "src/"
  8643. }
  8644. },
  8645. "notification-url": "https://packagist.org/downloads/",
  8646. "license": [
  8647. "MIT"
  8648. ],
  8649. "authors": [
  8650. {
  8651. "name": "Konstantin Kudryashov",
  8652. "email": "ever.zet@gmail.com",
  8653. "homepage": "http://everzet.com"
  8654. },
  8655. {
  8656. "name": "Pete Otaqui",
  8657. "email": "pete@otaqui.com",
  8658. "homepage": "https://github.com/pete-otaqui"
  8659. }
  8660. ],
  8661. "description": "Selenium2 (WebDriver) driver for Mink framework",
  8662. "homepage": "http://mink.behat.org/",
  8663. "keywords": [
  8664. "ajax",
  8665. "browser",
  8666. "javascript",
  8667. "selenium",
  8668. "testing",
  8669. "webdriver"
  8670. ],
  8671. "time": "2016-03-05T09:10:18+00:00"
  8672. },
  8673. {
  8674. "name": "container-interop/container-interop",
  8675. "version": "1.2.0",
  8676. "source": {
  8677. "type": "git",
  8678. "url": "https://github.com/container-interop/container-interop.git",
  8679. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  8680. },
  8681. "dist": {
  8682. "type": "zip",
  8683. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  8684. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  8685. "shasum": ""
  8686. },
  8687. "require": {
  8688. "psr/container": "^1.0"
  8689. },
  8690. "type": "library",
  8691. "autoload": {
  8692. "psr-4": {
  8693. "Interop\\Container\\": "src/Interop/Container/"
  8694. }
  8695. },
  8696. "notification-url": "https://packagist.org/downloads/",
  8697. "license": [
  8698. "MIT"
  8699. ],
  8700. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  8701. "homepage": "https://github.com/container-interop/container-interop",
  8702. "time": "2017-02-14T19:40:03+00:00"
  8703. },
  8704. {
  8705. "name": "fabpot/goutte",
  8706. "version": "v3.2.1",
  8707. "source": {
  8708. "type": "git",
  8709. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  8710. "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638"
  8711. },
  8712. "dist": {
  8713. "type": "zip",
  8714. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/db5c28f4a010b4161d507d5304e28a7ebf211638",
  8715. "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638",
  8716. "shasum": ""
  8717. },
  8718. "require": {
  8719. "guzzlehttp/guzzle": "^6.0",
  8720. "php": ">=5.5.0",
  8721. "symfony/browser-kit": "~2.1|~3.0",
  8722. "symfony/css-selector": "~2.1|~3.0",
  8723. "symfony/dom-crawler": "~2.1|~3.0"
  8724. },
  8725. "type": "application",
  8726. "extra": {
  8727. "branch-alias": {
  8728. "dev-master": "3.2-dev"
  8729. }
  8730. },
  8731. "autoload": {
  8732. "psr-4": {
  8733. "Goutte\\": "Goutte"
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "MIT"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Fabien Potencier",
  8743. "email": "fabien@symfony.com"
  8744. }
  8745. ],
  8746. "description": "A simple PHP Web Scraper",
  8747. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  8748. "keywords": [
  8749. "scraper"
  8750. ],
  8751. "time": "2017-01-03T13:21:43+00:00"
  8752. },
  8753. {
  8754. "name": "guzzlehttp/guzzle",
  8755. "version": "6.2.3",
  8756. "source": {
  8757. "type": "git",
  8758. "url": "https://github.com/guzzle/guzzle.git",
  8759. "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006"
  8760. },
  8761. "dist": {
  8762. "type": "zip",
  8763. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/8d6c6cc55186db87b7dc5009827429ba4e9dc006",
  8764. "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006",
  8765. "shasum": ""
  8766. },
  8767. "require": {
  8768. "guzzlehttp/promises": "^1.0",
  8769. "guzzlehttp/psr7": "^1.4",
  8770. "php": ">=5.5"
  8771. },
  8772. "require-dev": {
  8773. "ext-curl": "*",
  8774. "phpunit/phpunit": "^4.0",
  8775. "psr/log": "^1.0"
  8776. },
  8777. "type": "library",
  8778. "extra": {
  8779. "branch-alias": {
  8780. "dev-master": "6.2-dev"
  8781. }
  8782. },
  8783. "autoload": {
  8784. "files": [
  8785. "src/functions_include.php"
  8786. ],
  8787. "psr-4": {
  8788. "GuzzleHttp\\": "src/"
  8789. }
  8790. },
  8791. "notification-url": "https://packagist.org/downloads/",
  8792. "license": [
  8793. "MIT"
  8794. ],
  8795. "authors": [
  8796. {
  8797. "name": "Michael Dowling",
  8798. "email": "mtdowling@gmail.com",
  8799. "homepage": "https://github.com/mtdowling"
  8800. }
  8801. ],
  8802. "description": "Guzzle is a PHP HTTP client library",
  8803. "homepage": "http://guzzlephp.org/",
  8804. "keywords": [
  8805. "client",
  8806. "curl",
  8807. "framework",
  8808. "http",
  8809. "http client",
  8810. "rest",
  8811. "web service"
  8812. ],
  8813. "time": "2017-02-28T22:50:30+00:00"
  8814. },
  8815. {
  8816. "name": "guzzlehttp/promises",
  8817. "version": "v1.3.1",
  8818. "source": {
  8819. "type": "git",
  8820. "url": "https://github.com/guzzle/promises.git",
  8821. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  8822. },
  8823. "dist": {
  8824. "type": "zip",
  8825. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  8826. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  8827. "shasum": ""
  8828. },
  8829. "require": {
  8830. "php": ">=5.5.0"
  8831. },
  8832. "require-dev": {
  8833. "phpunit/phpunit": "^4.0"
  8834. },
  8835. "type": "library",
  8836. "extra": {
  8837. "branch-alias": {
  8838. "dev-master": "1.4-dev"
  8839. }
  8840. },
  8841. "autoload": {
  8842. "psr-4": {
  8843. "GuzzleHttp\\Promise\\": "src/"
  8844. },
  8845. "files": [
  8846. "src/functions_include.php"
  8847. ]
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "MIT"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Michael Dowling",
  8856. "email": "mtdowling@gmail.com",
  8857. "homepage": "https://github.com/mtdowling"
  8858. }
  8859. ],
  8860. "description": "Guzzle promises library",
  8861. "keywords": [
  8862. "promise"
  8863. ],
  8864. "time": "2016-12-20T10:07:11+00:00"
  8865. },
  8866. {
  8867. "name": "guzzlehttp/psr7",
  8868. "version": "1.4.1",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/guzzle/psr7.git",
  8872. "reference": "0d6c7ca039329247e4f0f8f8f6506810e8248855"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/guzzle/psr7/zipball/0d6c7ca039329247e4f0f8f8f6506810e8248855",
  8877. "reference": "0d6c7ca039329247e4f0f8f8f6506810e8248855",
  8878. "shasum": ""
  8879. },
  8880. "require": {
  8881. "php": ">=5.4.0",
  8882. "psr/http-message": "~1.0"
  8883. },
  8884. "provide": {
  8885. "psr/http-message-implementation": "1.0"
  8886. },
  8887. "require-dev": {
  8888. "phpunit/phpunit": "~4.0"
  8889. },
  8890. "type": "library",
  8891. "extra": {
  8892. "branch-alias": {
  8893. "dev-master": "1.4-dev"
  8894. }
  8895. },
  8896. "autoload": {
  8897. "psr-4": {
  8898. "GuzzleHttp\\Psr7\\": "src/"
  8899. },
  8900. "files": [
  8901. "src/functions_include.php"
  8902. ]
  8903. },
  8904. "notification-url": "https://packagist.org/downloads/",
  8905. "license": [
  8906. "MIT"
  8907. ],
  8908. "authors": [
  8909. {
  8910. "name": "Michael Dowling",
  8911. "email": "mtdowling@gmail.com",
  8912. "homepage": "https://github.com/mtdowling"
  8913. },
  8914. {
  8915. "name": "Tobias Schultze",
  8916. "homepage": "https://github.com/Tobion"
  8917. }
  8918. ],
  8919. "description": "PSR-7 message implementation that also provides common utility methods",
  8920. "keywords": [
  8921. "http",
  8922. "message",
  8923. "request",
  8924. "response",
  8925. "stream",
  8926. "uri",
  8927. "url"
  8928. ],
  8929. "time": "2017-02-27T10:51:17+00:00"
  8930. },
  8931. {
  8932. "name": "instaclick/php-webdriver",
  8933. "version": "1.4.3",
  8934. "source": {
  8935. "type": "git",
  8936. "url": "https://github.com/instaclick/php-webdriver.git",
  8937. "reference": "0c20707dcf30a32728fd6bdeeab996c887fdb2fb"
  8938. },
  8939. "dist": {
  8940. "type": "zip",
  8941. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/0c20707dcf30a32728fd6bdeeab996c887fdb2fb",
  8942. "reference": "0c20707dcf30a32728fd6bdeeab996c887fdb2fb",
  8943. "shasum": ""
  8944. },
  8945. "require": {
  8946. "ext-curl": "*",
  8947. "php": ">=5.3.2"
  8948. },
  8949. "require-dev": {
  8950. "satooshi/php-coveralls": "dev-master"
  8951. },
  8952. "type": "library",
  8953. "extra": {
  8954. "branch-alias": {
  8955. "dev-master": "1.4.x-dev"
  8956. }
  8957. },
  8958. "autoload": {
  8959. "psr-0": {
  8960. "WebDriver": "lib/"
  8961. }
  8962. },
  8963. "notification-url": "https://packagist.org/downloads/",
  8964. "license": [
  8965. "Apache-2.0"
  8966. ],
  8967. "authors": [
  8968. {
  8969. "name": "Justin Bishop",
  8970. "email": "jubishop@gmail.com",
  8971. "role": "Developer"
  8972. },
  8973. {
  8974. "name": "Anthon Pang",
  8975. "email": "apang@softwaredevelopment.ca",
  8976. "role": "Fork Maintainer"
  8977. }
  8978. ],
  8979. "description": "PHP WebDriver for Selenium 2",
  8980. "homepage": "http://instaclick.com/",
  8981. "keywords": [
  8982. "browser",
  8983. "selenium",
  8984. "webdriver",
  8985. "webtest"
  8986. ],
  8987. "time": "2015-06-15T20:19:33+00:00"
  8988. },
  8989. {
  8990. "name": "psr/container",
  8991. "version": "1.0.0",
  8992. "source": {
  8993. "type": "git",
  8994. "url": "https://github.com/php-fig/container.git",
  8995. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8996. },
  8997. "dist": {
  8998. "type": "zip",
  8999. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9000. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9001. "shasum": ""
  9002. },
  9003. "require": {
  9004. "php": ">=5.3.0"
  9005. },
  9006. "type": "library",
  9007. "extra": {
  9008. "branch-alias": {
  9009. "dev-master": "1.0.x-dev"
  9010. }
  9011. },
  9012. "autoload": {
  9013. "psr-4": {
  9014. "Psr\\Container\\": "src/"
  9015. }
  9016. },
  9017. "notification-url": "https://packagist.org/downloads/",
  9018. "license": [
  9019. "MIT"
  9020. ],
  9021. "authors": [
  9022. {
  9023. "name": "PHP-FIG",
  9024. "homepage": "http://www.php-fig.org/"
  9025. }
  9026. ],
  9027. "description": "Common Container Interface (PHP FIG PSR-11)",
  9028. "homepage": "https://github.com/php-fig/container",
  9029. "keywords": [
  9030. "PSR-11",
  9031. "container",
  9032. "container-interface",
  9033. "container-interop",
  9034. "psr"
  9035. ],
  9036. "time": "2017-02-14T16:28:37+00:00"
  9037. },
  9038. {
  9039. "name": "psr/http-message",
  9040. "version": "1.0.1",
  9041. "source": {
  9042. "type": "git",
  9043. "url": "https://github.com/php-fig/http-message.git",
  9044. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9045. },
  9046. "dist": {
  9047. "type": "zip",
  9048. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9049. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9050. "shasum": ""
  9051. },
  9052. "require": {
  9053. "php": ">=5.3.0"
  9054. },
  9055. "type": "library",
  9056. "extra": {
  9057. "branch-alias": {
  9058. "dev-master": "1.0.x-dev"
  9059. }
  9060. },
  9061. "autoload": {
  9062. "psr-4": {
  9063. "Psr\\Http\\Message\\": "src/"
  9064. }
  9065. },
  9066. "notification-url": "https://packagist.org/downloads/",
  9067. "license": [
  9068. "MIT"
  9069. ],
  9070. "authors": [
  9071. {
  9072. "name": "PHP-FIG",
  9073. "homepage": "http://www.php-fig.org/"
  9074. }
  9075. ],
  9076. "description": "Common interface for HTTP messages",
  9077. "homepage": "https://github.com/php-fig/http-message",
  9078. "keywords": [
  9079. "http",
  9080. "http-message",
  9081. "psr",
  9082. "psr-7",
  9083. "request",
  9084. "response"
  9085. ],
  9086. "time": "2016-08-06T14:39:51+00:00"
  9087. },
  9088. {
  9089. "name": "symfony/browser-kit",
  9090. "version": "v3.2.4",
  9091. "source": {
  9092. "type": "git",
  9093. "url": "https://github.com/symfony/browser-kit.git",
  9094. "reference": "394a2475a3a89089353fde5714a7f402fbb83880"
  9095. },
  9096. "dist": {
  9097. "type": "zip",
  9098. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/394a2475a3a89089353fde5714a7f402fbb83880",
  9099. "reference": "394a2475a3a89089353fde5714a7f402fbb83880",
  9100. "shasum": ""
  9101. },
  9102. "require": {
  9103. "php": ">=5.5.9",
  9104. "symfony/dom-crawler": "~2.8|~3.0"
  9105. },
  9106. "require-dev": {
  9107. "symfony/css-selector": "~2.8|~3.0",
  9108. "symfony/process": "~2.8|~3.0"
  9109. },
  9110. "suggest": {
  9111. "symfony/process": ""
  9112. },
  9113. "type": "library",
  9114. "extra": {
  9115. "branch-alias": {
  9116. "dev-master": "3.2-dev"
  9117. }
  9118. },
  9119. "autoload": {
  9120. "psr-4": {
  9121. "Symfony\\Component\\BrowserKit\\": ""
  9122. },
  9123. "exclude-from-classmap": [
  9124. "/Tests/"
  9125. ]
  9126. },
  9127. "notification-url": "https://packagist.org/downloads/",
  9128. "license": [
  9129. "MIT"
  9130. ],
  9131. "authors": [
  9132. {
  9133. "name": "Fabien Potencier",
  9134. "email": "fabien@symfony.com"
  9135. },
  9136. {
  9137. "name": "Symfony Community",
  9138. "homepage": "https://symfony.com/contributors"
  9139. }
  9140. ],
  9141. "description": "Symfony BrowserKit Component",
  9142. "homepage": "https://symfony.com",
  9143. "time": "2017-01-31T21:49:23+00:00"
  9144. },
  9145. {
  9146. "name": "symfony/css-selector",
  9147. "version": "v3.2.4",
  9148. "source": {
  9149. "type": "git",
  9150. "url": "https://github.com/symfony/css-selector.git",
  9151. "reference": "f0e628f04fc055c934b3211cfabdb1c59eefbfaa"
  9152. },
  9153. "dist": {
  9154. "type": "zip",
  9155. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f0e628f04fc055c934b3211cfabdb1c59eefbfaa",
  9156. "reference": "f0e628f04fc055c934b3211cfabdb1c59eefbfaa",
  9157. "shasum": ""
  9158. },
  9159. "require": {
  9160. "php": ">=5.5.9"
  9161. },
  9162. "type": "library",
  9163. "extra": {
  9164. "branch-alias": {
  9165. "dev-master": "3.2-dev"
  9166. }
  9167. },
  9168. "autoload": {
  9169. "psr-4": {
  9170. "Symfony\\Component\\CssSelector\\": ""
  9171. },
  9172. "exclude-from-classmap": [
  9173. "/Tests/"
  9174. ]
  9175. },
  9176. "notification-url": "https://packagist.org/downloads/",
  9177. "license": [
  9178. "MIT"
  9179. ],
  9180. "authors": [
  9181. {
  9182. "name": "Jean-François Simon",
  9183. "email": "jeanfrancois.simon@sensiolabs.com"
  9184. },
  9185. {
  9186. "name": "Fabien Potencier",
  9187. "email": "fabien@symfony.com"
  9188. },
  9189. {
  9190. "name": "Symfony Community",
  9191. "homepage": "https://symfony.com/contributors"
  9192. }
  9193. ],
  9194. "description": "Symfony CssSelector Component",
  9195. "homepage": "https://symfony.com",
  9196. "time": "2017-01-02T20:32:22+00:00"
  9197. },
  9198. {
  9199. "name": "symfony/dom-crawler",
  9200. "version": "v3.2.4",
  9201. "source": {
  9202. "type": "git",
  9203. "url": "https://github.com/symfony/dom-crawler.git",
  9204. "reference": "b814b41373fc4e535aff8c765abe39545216f391"
  9205. },
  9206. "dist": {
  9207. "type": "zip",
  9208. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b814b41373fc4e535aff8c765abe39545216f391",
  9209. "reference": "b814b41373fc4e535aff8c765abe39545216f391",
  9210. "shasum": ""
  9211. },
  9212. "require": {
  9213. "php": ">=5.5.9",
  9214. "symfony/polyfill-mbstring": "~1.0"
  9215. },
  9216. "require-dev": {
  9217. "symfony/css-selector": "~2.8|~3.0"
  9218. },
  9219. "suggest": {
  9220. "symfony/css-selector": ""
  9221. },
  9222. "type": "library",
  9223. "extra": {
  9224. "branch-alias": {
  9225. "dev-master": "3.2-dev"
  9226. }
  9227. },
  9228. "autoload": {
  9229. "psr-4": {
  9230. "Symfony\\Component\\DomCrawler\\": ""
  9231. },
  9232. "exclude-from-classmap": [
  9233. "/Tests/"
  9234. ]
  9235. },
  9236. "notification-url": "https://packagist.org/downloads/",
  9237. "license": [
  9238. "MIT"
  9239. ],
  9240. "authors": [
  9241. {
  9242. "name": "Fabien Potencier",
  9243. "email": "fabien@symfony.com"
  9244. },
  9245. {
  9246. "name": "Symfony Community",
  9247. "homepage": "https://symfony.com/contributors"
  9248. }
  9249. ],
  9250. "description": "Symfony DomCrawler Component",
  9251. "homepage": "https://symfony.com",
  9252. "time": "2017-01-21T17:14:11+00:00"
  9253. }
  9254. ],
  9255. "aliases": [],
  9256. "minimum-stability": "stable",
  9257. "stability-flags": {
  9258. "doctrine/migrations": 20,
  9259. "doctrine/data-fixtures": 20,
  9260. "toin0u/digitalocean": 20,
  9261. "jbroadway/urlify": 20,
  9262. "ddeboer/data-import": 0,
  9263. "webit/eval-math": 20,
  9264. "chamilo/chash": 20,
  9265. "behat/behat": 0,
  9266. "behat/mink": 0
  9267. },
  9268. "prefer-stable": false,
  9269. "prefer-lowest": false,
  9270. "platform": {
  9271. "php": ">=5.4",
  9272. "ext-intl": "*",
  9273. "ext-gd": "*",
  9274. "ext-curl": "*",
  9275. "ext-zlib": "*",
  9276. "ext-zip": "*",
  9277. "ext-xml": "*",
  9278. "ext-json": "*",
  9279. "ext-mbstring": "*"
  9280. },
  9281. "platform-dev": []
  9282. }