composer.lock 330 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307
  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": "d55e9e02ecf7c8ce154de7eb9552e97b",
  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": "2f6667c72584148a53f15baef91888fd5f4a2c58"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/doctrine/migrations/zipball/2f6667c72584148a53f15baef91888fd5f4a2c58",
  1372. "reference": "2f6667c72584148a53f15baef91888fd5f4a2c58",
  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-07 13:39:33"
  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.2",
  4561. "source": {
  4562. "type": "git",
  4563. "url": "https://github.com/sonata-project/SonataUserBundle.git",
  4564. "reference": "3b4114c665b9410e2b85475aae2cfb4ad119f063"
  4565. },
  4566. "dist": {
  4567. "type": "zip",
  4568. "url": "https://api.github.com/repos/sonata-project/SonataUserBundle/zipball/3b4114c665b9410e2b85475aae2cfb4ad119f063",
  4569. "reference": "3b4114c665b9410e2b85475aae2cfb4ad119f063",
  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.2",
  4577. "sonata-project/datagrid-bundle": "^2.2.1",
  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-03-08T10:30:57+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": "2.0.3",
  7345. "source": {
  7346. "type": "git",
  7347. "url": "https://github.com/szymach/c-pchart.git",
  7348. "reference": "e234d6ca5d9bc9eb39301fca2953c7cf01e9f2a8"
  7349. },
  7350. "dist": {
  7351. "type": "zip",
  7352. "url": "https://api.github.com/repos/szymach/c-pchart/zipball/e234d6ca5d9bc9eb39301fca2953c7cf01e9f2a8",
  7353. "reference": "e234d6ca5d9bc9eb39301fca2953c7cf01e9f2a8",
  7354. "shasum": ""
  7355. },
  7356. "require": {
  7357. "ext-gd": "*",
  7358. "php": ">=5.5"
  7359. },
  7360. "require-dev": {
  7361. "behat/behat": "~3.0",
  7362. "behat/mink": "~1.7",
  7363. "behat/mink-goutte-driver": "~1.2",
  7364. "bossa/phpspec2-expect": "~1.0",
  7365. "sensiolabs/behat-page-object-extension": "~2.0@dev",
  7366. "squizlabs/php_codesniffer": "~2.3"
  7367. },
  7368. "type": "project",
  7369. "extra": {
  7370. "branch-alias": {
  7371. "dev-master": "2.0.x-dev"
  7372. }
  7373. },
  7374. "autoload": {
  7375. "psr-4": {
  7376. "CpChart\\": "src/"
  7377. },
  7378. "files": [
  7379. "src/Resources/data/constants.php"
  7380. ]
  7381. },
  7382. "notification-url": "https://packagist.org/downloads/",
  7383. "license": [
  7384. "GPL-3.0"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "Jean-Damien Pogolotti",
  7389. "homepage": "http://www.pchart.net",
  7390. "role": "Creator of the original pChart library"
  7391. },
  7392. {
  7393. "name": "Piotr Szymaszek",
  7394. "homepage": "https://github.com/szymach",
  7395. "role": "Developer of the CpChart wrapper package"
  7396. }
  7397. ],
  7398. "description": "Port of \"pChart\" library into PHP 5",
  7399. "homepage": "https://github.com/szymach/c-pchart",
  7400. "keywords": [
  7401. "CpChart",
  7402. "c-pChart",
  7403. "charts",
  7404. "pchart",
  7405. "statistics"
  7406. ],
  7407. "time": "2016-04-16T16:30:22+00:00"
  7408. },
  7409. {
  7410. "name": "toin0u/digitalocean",
  7411. "version": "dev-master",
  7412. "source": {
  7413. "type": "git",
  7414. "url": "https://github.com/toin0u/DigitalOcean.git",
  7415. "reference": "434b4799302d9164404af1ec11d2601c791b02de"
  7416. },
  7417. "dist": {
  7418. "type": "zip",
  7419. "url": "https://api.github.com/repos/toin0u/DigitalOcean/zipball/434b4799302d9164404af1ec11d2601c791b02de",
  7420. "reference": "434b4799302d9164404af1ec11d2601c791b02de",
  7421. "shasum": ""
  7422. },
  7423. "require": {
  7424. "php": ">=5.3.0",
  7425. "symfony/console": "~2.4",
  7426. "symfony/yaml": "~2.4",
  7427. "toin0u/http-adapter": "~1.0"
  7428. },
  7429. "require-dev": {
  7430. "phpunit/phpunit": "~4.0",
  7431. "satooshi/php-coveralls": "~0.6"
  7432. },
  7433. "bin": [
  7434. "bin/digitalocean"
  7435. ],
  7436. "type": "library",
  7437. "extra": {
  7438. "branch-alias": {
  7439. "dev-master": "1.4-dev"
  7440. }
  7441. },
  7442. "autoload": {
  7443. "psr-0": {
  7444. "DigitalOcean": "src/"
  7445. }
  7446. },
  7447. "notification-url": "https://packagist.org/downloads/",
  7448. "license": [
  7449. "MIT"
  7450. ],
  7451. "authors": [
  7452. {
  7453. "name": "Antoine Corcy",
  7454. "email": "contact@sbin.dk",
  7455. "homepage": "http://sbin.dk",
  7456. "role": "Developer"
  7457. }
  7458. ],
  7459. "description": "DigitalOcean API PHP 5.3+ library",
  7460. "homepage": "https://github.com/toin0u/DigitalOcean",
  7461. "keywords": [
  7462. "Cloud Hosting",
  7463. "SSD",
  7464. "api",
  7465. "digitalocean",
  7466. "vps"
  7467. ],
  7468. "time": "2014-12-17 21:48:35"
  7469. },
  7470. {
  7471. "name": "toin0u/http-adapter",
  7472. "version": "1.0.3",
  7473. "source": {
  7474. "type": "git",
  7475. "url": "https://github.com/toin0u/HttpAdapter.git",
  7476. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10"
  7477. },
  7478. "dist": {
  7479. "type": "zip",
  7480. "url": "https://api.github.com/repos/toin0u/HttpAdapter/zipball/29253948d446bc3afc29897ac67b4cd01f56cd10",
  7481. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10",
  7482. "shasum": ""
  7483. },
  7484. "require": {
  7485. "ext-curl": "*",
  7486. "php": ">=5.3.0"
  7487. },
  7488. "require-dev": {
  7489. "guzzle/guzzle": "@stable",
  7490. "kriswallsmith/buzz": "@stable",
  7491. "satooshi/php-coveralls": "~0.6",
  7492. "zendframework/zendframework": "~2.1"
  7493. },
  7494. "suggest": {
  7495. "guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter",
  7496. "kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter",
  7497. "zendframework/zendframework": "Enabling Zend Http allows you to use the ZendHttpAdapter"
  7498. },
  7499. "type": "library",
  7500. "extra": {
  7501. "branch-alias": {
  7502. "dev-master": "1.0-dev"
  7503. }
  7504. },
  7505. "autoload": {
  7506. "psr-0": {
  7507. "HttpAdapter": "src/"
  7508. }
  7509. },
  7510. "notification-url": "https://packagist.org/downloads/",
  7511. "license": [
  7512. "MIT"
  7513. ],
  7514. "authors": [
  7515. {
  7516. "name": "Antoine Corcy",
  7517. "email": "contact@sbin.dk",
  7518. "homepage": "http://sbin.dk",
  7519. "role": "Developer"
  7520. }
  7521. ],
  7522. "description": "HttpAdapter PHP 5.3+ library",
  7523. "homepage": "https://github.com/toin0u/HttpAdapter",
  7524. "keywords": [
  7525. "adapter",
  7526. "http"
  7527. ],
  7528. "time": "2013-05-26T18:18:11+00:00"
  7529. },
  7530. {
  7531. "name": "twig/extensions",
  7532. "version": "v1.4.1",
  7533. "source": {
  7534. "type": "git",
  7535. "url": "https://github.com/twigphp/Twig-extensions.git",
  7536. "reference": "f0bb8431c8691f5a39f1017d9a5967a082bf01ff"
  7537. },
  7538. "dist": {
  7539. "type": "zip",
  7540. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/f0bb8431c8691f5a39f1017d9a5967a082bf01ff",
  7541. "reference": "f0bb8431c8691f5a39f1017d9a5967a082bf01ff",
  7542. "shasum": ""
  7543. },
  7544. "require": {
  7545. "twig/twig": "~1.20|~2.0"
  7546. },
  7547. "require-dev": {
  7548. "symfony/translation": "~2.3"
  7549. },
  7550. "suggest": {
  7551. "symfony/translation": "Allow the time_diff output to be translated"
  7552. },
  7553. "type": "library",
  7554. "extra": {
  7555. "branch-alias": {
  7556. "dev-master": "1.4-dev"
  7557. }
  7558. },
  7559. "autoload": {
  7560. "psr-0": {
  7561. "Twig_Extensions_": "lib/"
  7562. }
  7563. },
  7564. "notification-url": "https://packagist.org/downloads/",
  7565. "license": [
  7566. "MIT"
  7567. ],
  7568. "authors": [
  7569. {
  7570. "name": "Fabien Potencier",
  7571. "email": "fabien@symfony.com"
  7572. }
  7573. ],
  7574. "description": "Common additional features for Twig that do not directly belong in core",
  7575. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  7576. "keywords": [
  7577. "i18n",
  7578. "text"
  7579. ],
  7580. "time": "2016-10-25T17:34:14+00:00"
  7581. },
  7582. {
  7583. "name": "twig/twig",
  7584. "version": "v1.32.0",
  7585. "source": {
  7586. "type": "git",
  7587. "url": "https://github.com/twigphp/Twig.git",
  7588. "reference": "9935b662e24d6e634da88901ab534cc12e8c728f"
  7589. },
  7590. "dist": {
  7591. "type": "zip",
  7592. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9935b662e24d6e634da88901ab534cc12e8c728f",
  7593. "reference": "9935b662e24d6e634da88901ab534cc12e8c728f",
  7594. "shasum": ""
  7595. },
  7596. "require": {
  7597. "php": ">=5.2.7"
  7598. },
  7599. "require-dev": {
  7600. "psr/container": "^1.0",
  7601. "symfony/debug": "~2.7",
  7602. "symfony/phpunit-bridge": "~3.2"
  7603. },
  7604. "type": "library",
  7605. "extra": {
  7606. "branch-alias": {
  7607. "dev-master": "1.32-dev"
  7608. }
  7609. },
  7610. "autoload": {
  7611. "psr-0": {
  7612. "Twig_": "lib/"
  7613. }
  7614. },
  7615. "notification-url": "https://packagist.org/downloads/",
  7616. "license": [
  7617. "BSD-3-Clause"
  7618. ],
  7619. "authors": [
  7620. {
  7621. "name": "Fabien Potencier",
  7622. "email": "fabien@symfony.com",
  7623. "homepage": "http://fabien.potencier.org",
  7624. "role": "Lead Developer"
  7625. },
  7626. {
  7627. "name": "Armin Ronacher",
  7628. "email": "armin.ronacher@active-4.com",
  7629. "role": "Project Founder"
  7630. },
  7631. {
  7632. "name": "Twig Team",
  7633. "homepage": "http://twig.sensiolabs.org/contributors",
  7634. "role": "Contributors"
  7635. }
  7636. ],
  7637. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7638. "homepage": "http://twig.sensiolabs.org",
  7639. "keywords": [
  7640. "templating"
  7641. ],
  7642. "time": "2017-02-27T00:07:03+00:00"
  7643. },
  7644. {
  7645. "name": "webit/eval-math",
  7646. "version": "dev-master",
  7647. "source": {
  7648. "type": "git",
  7649. "url": "https://github.com/dbojdo/eval-math.git",
  7650. "reference": "0e7c3a1e0f536b826f04553726c112996b52ded6"
  7651. },
  7652. "dist": {
  7653. "type": "zip",
  7654. "url": "https://api.github.com/repos/dbojdo/eval-math/zipball/0e7c3a1e0f536b826f04553726c112996b52ded6",
  7655. "reference": "0e7c3a1e0f536b826f04553726c112996b52ded6",
  7656. "shasum": ""
  7657. },
  7658. "require": {
  7659. "php": ">=5.3"
  7660. },
  7661. "require-dev": {
  7662. "phpunit/phpunit": "~4.2"
  7663. },
  7664. "type": "library",
  7665. "extra": {
  7666. "branch-alias": {
  7667. "dev-master": "1.x-dev"
  7668. }
  7669. },
  7670. "autoload": {
  7671. "psr-4": {
  7672. "Webit\\Util\\EvalMath\\": "src/"
  7673. }
  7674. },
  7675. "notification-url": "https://packagist.org/downloads/",
  7676. "description": "EvalMath",
  7677. "keywords": [
  7678. "EvalMath"
  7679. ],
  7680. "time": "2016-02-15 09:34:24"
  7681. },
  7682. {
  7683. "name": "winzou/state-machine",
  7684. "version": "0.3.2",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/winzou/state-machine.git",
  7688. "reference": "4ef48e7bba494514f36884a618a9b889eec3a5b0"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/winzou/state-machine/zipball/4ef48e7bba494514f36884a618a9b889eec3a5b0",
  7693. "reference": "4ef48e7bba494514f36884a618a9b889eec3a5b0",
  7694. "shasum": ""
  7695. },
  7696. "require": {
  7697. "php": ">=5.3.0",
  7698. "symfony/event-dispatcher": "~2.1|~3.0",
  7699. "symfony/expression-language": "~2.4|~3.0",
  7700. "symfony/property-access": "~2.1|~3.0"
  7701. },
  7702. "require-dev": {
  7703. "phpspec/phpspec": "~2.0",
  7704. "twig/twig": "~1.0"
  7705. },
  7706. "suggest": {
  7707. "twig/twig": "Access the state machine in your twig templates (~1.0)"
  7708. },
  7709. "type": "library",
  7710. "autoload": {
  7711. "psr-0": {
  7712. "SM": "src/"
  7713. }
  7714. },
  7715. "notification-url": "https://packagist.org/downloads/",
  7716. "license": [
  7717. "MIT"
  7718. ],
  7719. "authors": [
  7720. {
  7721. "name": "Alexandre Bacco",
  7722. "email": "alexandre.bacco@gmail.com",
  7723. "homepage": "http://alex.bacco.fr"
  7724. }
  7725. ],
  7726. "description": "A very lightweight yet powerful PHP state machine",
  7727. "homepage": "https://github.com/winzou/StateMachine",
  7728. "keywords": [
  7729. "callback",
  7730. "event",
  7731. "state",
  7732. "statemachine"
  7733. ],
  7734. "time": "2016-11-03T13:24:00+00:00"
  7735. },
  7736. {
  7737. "name": "zendframework/zend-code",
  7738. "version": "3.1.0",
  7739. "source": {
  7740. "type": "git",
  7741. "url": "https://github.com/zendframework/zend-code.git",
  7742. "reference": "2899c17f83a7207f2d7f53ec2f421204d3beea27"
  7743. },
  7744. "dist": {
  7745. "type": "zip",
  7746. "url": "https://api.github.com/repos/zendframework/zend-code/zipball/2899c17f83a7207f2d7f53ec2f421204d3beea27",
  7747. "reference": "2899c17f83a7207f2d7f53ec2f421204d3beea27",
  7748. "shasum": ""
  7749. },
  7750. "require": {
  7751. "php": "^5.6 || 7.0.0 - 7.0.4 || ^7.0.6",
  7752. "zendframework/zend-eventmanager": "^2.6 || ^3.0"
  7753. },
  7754. "require-dev": {
  7755. "doctrine/annotations": "~1.0",
  7756. "ext-phar": "*",
  7757. "phpunit/phpunit": "^4.8.21",
  7758. "squizlabs/php_codesniffer": "^2.5",
  7759. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  7760. },
  7761. "suggest": {
  7762. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  7763. "zendframework/zend-stdlib": "Zend\\Stdlib component"
  7764. },
  7765. "type": "library",
  7766. "extra": {
  7767. "branch-alias": {
  7768. "dev-master": "3.1-dev",
  7769. "dev-develop": "3.2-dev"
  7770. }
  7771. },
  7772. "autoload": {
  7773. "psr-4": {
  7774. "Zend\\Code\\": "src/"
  7775. }
  7776. },
  7777. "notification-url": "https://packagist.org/downloads/",
  7778. "license": [
  7779. "BSD-3-Clause"
  7780. ],
  7781. "description": "provides facilities to generate arbitrary code using an object oriented interface",
  7782. "homepage": "https://github.com/zendframework/zend-code",
  7783. "keywords": [
  7784. "code",
  7785. "zf2"
  7786. ],
  7787. "time": "2016-10-24T13:23:32+00:00"
  7788. },
  7789. {
  7790. "name": "zendframework/zend-config",
  7791. "version": "2.5.1",
  7792. "source": {
  7793. "type": "git",
  7794. "url": "https://github.com/zendframework/zend-config.git",
  7795. "reference": "ec49b1df1bdd9772df09dc2f612fbfc279bf4c27"
  7796. },
  7797. "dist": {
  7798. "type": "zip",
  7799. "url": "https://api.github.com/repos/zendframework/zend-config/zipball/ec49b1df1bdd9772df09dc2f612fbfc279bf4c27",
  7800. "reference": "ec49b1df1bdd9772df09dc2f612fbfc279bf4c27",
  7801. "shasum": ""
  7802. },
  7803. "require": {
  7804. "php": ">=5.3.23",
  7805. "zendframework/zend-stdlib": "~2.5"
  7806. },
  7807. "require-dev": {
  7808. "fabpot/php-cs-fixer": "1.7.*",
  7809. "phpunit/phpunit": "~4.0",
  7810. "zendframework/zend-filter": "~2.5",
  7811. "zendframework/zend-i18n": "~2.5",
  7812. "zendframework/zend-json": "~2.5",
  7813. "zendframework/zend-mvc": "~2.5",
  7814. "zendframework/zend-servicemanager": "~2.5"
  7815. },
  7816. "suggest": {
  7817. "zendframework/zend-filter": "Zend\\Filter component",
  7818. "zendframework/zend-i18n": "Zend\\I18n component",
  7819. "zendframework/zend-json": "Zend\\Json to use the Json reader or writer classes",
  7820. "zendframework/zend-servicemanager": "Zend\\ServiceManager for use with the Config Factory to retrieve reader and writer instances"
  7821. },
  7822. "type": "library",
  7823. "extra": {
  7824. "branch-alias": {
  7825. "dev-master": "2.5-dev",
  7826. "dev-develop": "2.6-dev"
  7827. }
  7828. },
  7829. "autoload": {
  7830. "psr-4": {
  7831. "Zend\\Config\\": "src/"
  7832. }
  7833. },
  7834. "notification-url": "https://packagist.org/downloads/",
  7835. "license": [
  7836. "BSD-3-Clause"
  7837. ],
  7838. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  7839. "homepage": "https://github.com/zendframework/zend-config",
  7840. "keywords": [
  7841. "config",
  7842. "zf2"
  7843. ],
  7844. "time": "2015-06-03T15:32:00+00:00"
  7845. },
  7846. {
  7847. "name": "zendframework/zend-escaper",
  7848. "version": "2.5.2",
  7849. "source": {
  7850. "type": "git",
  7851. "url": "https://github.com/zendframework/zend-escaper.git",
  7852. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  7853. },
  7854. "dist": {
  7855. "type": "zip",
  7856. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  7857. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  7858. "shasum": ""
  7859. },
  7860. "require": {
  7861. "php": ">=5.5"
  7862. },
  7863. "require-dev": {
  7864. "fabpot/php-cs-fixer": "1.7.*",
  7865. "phpunit/phpunit": "~4.0"
  7866. },
  7867. "type": "library",
  7868. "extra": {
  7869. "branch-alias": {
  7870. "dev-master": "2.5-dev",
  7871. "dev-develop": "2.6-dev"
  7872. }
  7873. },
  7874. "autoload": {
  7875. "psr-4": {
  7876. "Zend\\Escaper\\": "src/"
  7877. }
  7878. },
  7879. "notification-url": "https://packagist.org/downloads/",
  7880. "license": [
  7881. "BSD-3-Clause"
  7882. ],
  7883. "homepage": "https://github.com/zendframework/zend-escaper",
  7884. "keywords": [
  7885. "escaper",
  7886. "zf2"
  7887. ],
  7888. "time": "2016-06-30T19:48:38+00:00"
  7889. },
  7890. {
  7891. "name": "zendframework/zend-eventmanager",
  7892. "version": "3.1.0",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://github.com/zendframework/zend-eventmanager.git",
  7896. "reference": "c3bce7b7d47c54040b9ae51bc55491c72513b75d"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/c3bce7b7d47c54040b9ae51bc55491c72513b75d",
  7901. "reference": "c3bce7b7d47c54040b9ae51bc55491c72513b75d",
  7902. "shasum": ""
  7903. },
  7904. "require": {
  7905. "php": "^5.6 || ^7.0"
  7906. },
  7907. "require-dev": {
  7908. "athletic/athletic": "^0.1",
  7909. "container-interop/container-interop": "^1.1.0",
  7910. "phpunit/phpunit": "^5.6",
  7911. "zendframework/zend-coding-standard": "~1.0.0",
  7912. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  7913. },
  7914. "suggest": {
  7915. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  7916. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  7917. },
  7918. "type": "library",
  7919. "extra": {
  7920. "branch-alias": {
  7921. "dev-master": "3.1-dev",
  7922. "dev-develop": "3.2-dev"
  7923. }
  7924. },
  7925. "autoload": {
  7926. "psr-4": {
  7927. "Zend\\EventManager\\": "src/"
  7928. }
  7929. },
  7930. "notification-url": "https://packagist.org/downloads/",
  7931. "license": [
  7932. "BSD-3-Clause"
  7933. ],
  7934. "description": "Trigger and listen to events within a PHP application",
  7935. "homepage": "https://github.com/zendframework/zend-eventmanager",
  7936. "keywords": [
  7937. "event",
  7938. "eventmanager",
  7939. "events",
  7940. "zf2"
  7941. ],
  7942. "time": "2016-12-19T21:47:12+00:00"
  7943. },
  7944. {
  7945. "name": "zendframework/zend-feed",
  7946. "version": "2.5.1",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/zendframework/zend-feed.git",
  7950. "reference": "c5528e2fd632a5dc09b5487fabca125e4b88d9c0"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/c5528e2fd632a5dc09b5487fabca125e4b88d9c0",
  7955. "reference": "c5528e2fd632a5dc09b5487fabca125e4b88d9c0",
  7956. "shasum": ""
  7957. },
  7958. "require": {
  7959. "php": ">=5.3.23",
  7960. "zendframework/zend-escaper": "~2.5",
  7961. "zendframework/zend-stdlib": "~2.5"
  7962. },
  7963. "require-dev": {
  7964. "fabpot/php-cs-fixer": "1.7.*",
  7965. "phpunit/phpunit": "~4.0",
  7966. "zendframework/zend-cache": "~2.5",
  7967. "zendframework/zend-db": "~2.5",
  7968. "zendframework/zend-http": "~2.5",
  7969. "zendframework/zend-servicemanager": "~2.5",
  7970. "zendframework/zend-validator": "~2.5"
  7971. },
  7972. "suggest": {
  7973. "zendframework/zend-cache": "Zend\\Cache component",
  7974. "zendframework/zend-db": "Zend\\Db component",
  7975. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  7976. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for default/recommended ExtensionManager implementations",
  7977. "zendframework/zend-validator": "Zend\\Validator component"
  7978. },
  7979. "type": "library",
  7980. "extra": {
  7981. "branch-alias": {
  7982. "dev-master": "2.5-dev",
  7983. "dev-develop": "2.6-dev"
  7984. }
  7985. },
  7986. "autoload": {
  7987. "psr-4": {
  7988. "Zend\\Feed\\": "src/"
  7989. }
  7990. },
  7991. "notification-url": "https://packagist.org/downloads/",
  7992. "license": [
  7993. "BSD-3-Clause"
  7994. ],
  7995. "description": "provides functionality for consuming RSS and Atom feeds",
  7996. "homepage": "https://github.com/zendframework/zend-feed",
  7997. "keywords": [
  7998. "feed",
  7999. "zf2"
  8000. ],
  8001. "time": "2015-06-03T15:32:01+00:00"
  8002. },
  8003. {
  8004. "name": "zendframework/zend-http",
  8005. "version": "2.5.1",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/zendframework/zend-http.git",
  8009. "reference": "6cc6dee9a27fc07e0167d8779ab2258747108ed5"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/zendframework/zend-http/zipball/6cc6dee9a27fc07e0167d8779ab2258747108ed5",
  8014. "reference": "6cc6dee9a27fc07e0167d8779ab2258747108ed5",
  8015. "shasum": ""
  8016. },
  8017. "require": {
  8018. "php": ">=5.3.23",
  8019. "zendframework/zend-loader": "~2.5",
  8020. "zendframework/zend-stdlib": "~2.5",
  8021. "zendframework/zend-uri": "~2.5",
  8022. "zendframework/zend-validator": "~2.5"
  8023. },
  8024. "require-dev": {
  8025. "fabpot/php-cs-fixer": "1.7.*",
  8026. "phpunit/phpunit": "~4.0",
  8027. "zendframework/zend-config": "~2.5"
  8028. },
  8029. "type": "library",
  8030. "extra": {
  8031. "branch-alias": {
  8032. "dev-master": "2.5-dev",
  8033. "dev-develop": "2.6-dev"
  8034. }
  8035. },
  8036. "autoload": {
  8037. "psr-4": {
  8038. "Zend\\Http\\": "src/"
  8039. }
  8040. },
  8041. "notification-url": "https://packagist.org/downloads/",
  8042. "license": [
  8043. "BSD-3-Clause"
  8044. ],
  8045. "description": "provides an easy interface for performing Hyper-Text Transfer Protocol (HTTP) requests",
  8046. "homepage": "https://github.com/zendframework/zend-http",
  8047. "keywords": [
  8048. "http",
  8049. "zf2"
  8050. ],
  8051. "time": "2015-06-03T15:32:01+00:00"
  8052. },
  8053. {
  8054. "name": "zendframework/zend-loader",
  8055. "version": "2.5.1",
  8056. "source": {
  8057. "type": "git",
  8058. "url": "https://github.com/zendframework/zend-loader.git",
  8059. "reference": "c5fd2f071bde071f4363def7dea8dec7393e135c"
  8060. },
  8061. "dist": {
  8062. "type": "zip",
  8063. "url": "https://api.github.com/repos/zendframework/zend-loader/zipball/c5fd2f071bde071f4363def7dea8dec7393e135c",
  8064. "reference": "c5fd2f071bde071f4363def7dea8dec7393e135c",
  8065. "shasum": ""
  8066. },
  8067. "require": {
  8068. "php": ">=5.3.23"
  8069. },
  8070. "require-dev": {
  8071. "fabpot/php-cs-fixer": "1.7.*",
  8072. "phpunit/phpunit": "~4.0"
  8073. },
  8074. "type": "library",
  8075. "extra": {
  8076. "branch-alias": {
  8077. "dev-master": "2.5-dev",
  8078. "dev-develop": "2.6-dev"
  8079. }
  8080. },
  8081. "autoload": {
  8082. "psr-4": {
  8083. "Zend\\Loader\\": "src/"
  8084. }
  8085. },
  8086. "notification-url": "https://packagist.org/downloads/",
  8087. "license": [
  8088. "BSD-3-Clause"
  8089. ],
  8090. "homepage": "https://github.com/zendframework/zend-loader",
  8091. "keywords": [
  8092. "loader",
  8093. "zf2"
  8094. ],
  8095. "time": "2015-06-03T14:05:47+00:00"
  8096. },
  8097. {
  8098. "name": "zendframework/zend-stdlib",
  8099. "version": "2.5.2",
  8100. "source": {
  8101. "type": "git",
  8102. "url": "https://github.com/zendframework/zend-stdlib.git",
  8103. "reference": "2e50c4e8f8d0ab928aa5beeb21644f30bf2cc8bf"
  8104. },
  8105. "dist": {
  8106. "type": "zip",
  8107. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/2e50c4e8f8d0ab928aa5beeb21644f30bf2cc8bf",
  8108. "reference": "2e50c4e8f8d0ab928aa5beeb21644f30bf2cc8bf",
  8109. "shasum": ""
  8110. },
  8111. "require": {
  8112. "php": ">=5.5"
  8113. },
  8114. "require-dev": {
  8115. "fabpot/php-cs-fixer": "1.7.*",
  8116. "phpunit/phpunit": "~4.0",
  8117. "zendframework/zend-config": "~2.5",
  8118. "zendframework/zend-eventmanager": "~2.5",
  8119. "zendframework/zend-filter": "~2.5",
  8120. "zendframework/zend-inputfilter": "~2.5",
  8121. "zendframework/zend-serializer": "~2.5",
  8122. "zendframework/zend-servicemanager": "~2.5"
  8123. },
  8124. "suggest": {
  8125. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  8126. "zendframework/zend-filter": "To support naming strategy hydrator usage",
  8127. "zendframework/zend-serializer": "Zend\\Serializer component",
  8128. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  8129. },
  8130. "type": "library",
  8131. "extra": {
  8132. "branch-alias": {
  8133. "dev-master": "2.5-dev",
  8134. "dev-develop": "2.6-dev"
  8135. }
  8136. },
  8137. "autoload": {
  8138. "psr-4": {
  8139. "Zend\\Stdlib\\": "src/"
  8140. }
  8141. },
  8142. "notification-url": "https://packagist.org/downloads/",
  8143. "license": [
  8144. "BSD-3-Clause"
  8145. ],
  8146. "homepage": "https://github.com/zendframework/zend-stdlib",
  8147. "keywords": [
  8148. "stdlib",
  8149. "zf2"
  8150. ],
  8151. "time": "2015-07-21T14:59:49+00:00"
  8152. },
  8153. {
  8154. "name": "zendframework/zend-uri",
  8155. "version": "2.5.2",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/zendframework/zend-uri.git",
  8159. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/0bf717a239432b1a1675ae314f7c4acd742749ed",
  8164. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": "^5.5 || ^7.0",
  8169. "zendframework/zend-escaper": "^2.5",
  8170. "zendframework/zend-validator": "^2.5"
  8171. },
  8172. "require-dev": {
  8173. "fabpot/php-cs-fixer": "1.7.*",
  8174. "phpunit/phpunit": "~4.0"
  8175. },
  8176. "type": "library",
  8177. "extra": {
  8178. "branch-alias": {
  8179. "dev-master": "2.5-dev",
  8180. "dev-develop": "2.6-dev"
  8181. }
  8182. },
  8183. "autoload": {
  8184. "psr-4": {
  8185. "Zend\\Uri\\": "src/"
  8186. }
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "license": [
  8190. "BSD-3-Clause"
  8191. ],
  8192. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  8193. "homepage": "https://github.com/zendframework/zend-uri",
  8194. "keywords": [
  8195. "uri",
  8196. "zf2"
  8197. ],
  8198. "time": "2016-02-17T22:38:51+00:00"
  8199. },
  8200. {
  8201. "name": "zendframework/zend-validator",
  8202. "version": "2.5.4",
  8203. "source": {
  8204. "type": "git",
  8205. "url": "https://github.com/zendframework/zend-validator.git",
  8206. "reference": "31edd30df3c0faca721ef9dd2c1b768f3b6a7c5f"
  8207. },
  8208. "dist": {
  8209. "type": "zip",
  8210. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/31edd30df3c0faca721ef9dd2c1b768f3b6a7c5f",
  8211. "reference": "31edd30df3c0faca721ef9dd2c1b768f3b6a7c5f",
  8212. "shasum": ""
  8213. },
  8214. "require": {
  8215. "php": "^5.5 || ^7.0",
  8216. "zendframework/zend-stdlib": "~2.5"
  8217. },
  8218. "require-dev": {
  8219. "fabpot/php-cs-fixer": "1.7.*",
  8220. "phpunit/phpunit": "~4.0",
  8221. "zendframework/zend-cache": "~2.5",
  8222. "zendframework/zend-config": "~2.5",
  8223. "zendframework/zend-db": "~2.5",
  8224. "zendframework/zend-filter": "~2.5",
  8225. "zendframework/zend-http": "~2.5",
  8226. "zendframework/zend-i18n": "~2.5",
  8227. "zendframework/zend-math": "~2.5",
  8228. "zendframework/zend-servicemanager": "~2.5",
  8229. "zendframework/zend-session": "~2.5",
  8230. "zendframework/zend-uri": "~2.5"
  8231. },
  8232. "suggest": {
  8233. "zendframework/zend-db": "Zend\\Db component",
  8234. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  8235. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages as well as to use the various Date validators",
  8236. "zendframework/zend-i18n-resources": "Translations of validator messages",
  8237. "zendframework/zend-math": "Zend\\Math component",
  8238. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  8239. "zendframework/zend-session": "Zend\\Session component",
  8240. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  8241. },
  8242. "type": "library",
  8243. "extra": {
  8244. "branch-alias": {
  8245. "dev-master": "2.5-dev",
  8246. "dev-develop": "2.6-dev"
  8247. }
  8248. },
  8249. "autoload": {
  8250. "psr-4": {
  8251. "Zend\\Validator\\": "src/"
  8252. }
  8253. },
  8254. "notification-url": "https://packagist.org/downloads/",
  8255. "license": [
  8256. "BSD-3-Clause"
  8257. ],
  8258. "description": "provides a set of commonly needed validators",
  8259. "homepage": "https://github.com/zendframework/zend-validator",
  8260. "keywords": [
  8261. "validator",
  8262. "zf2"
  8263. ],
  8264. "time": "2016-02-17T17:13:10+00:00"
  8265. }
  8266. ],
  8267. "packages-dev": [
  8268. {
  8269. "name": "behat/behat",
  8270. "version": "v3.3.0",
  8271. "source": {
  8272. "type": "git",
  8273. "url": "https://github.com/Behat/Behat.git",
  8274. "reference": "15a3a1857457eaa29cdf41564a5e421effb09526"
  8275. },
  8276. "dist": {
  8277. "type": "zip",
  8278. "url": "https://api.github.com/repos/Behat/Behat/zipball/15a3a1857457eaa29cdf41564a5e421effb09526",
  8279. "reference": "15a3a1857457eaa29cdf41564a5e421effb09526",
  8280. "shasum": ""
  8281. },
  8282. "require": {
  8283. "behat/gherkin": "^4.4.4",
  8284. "behat/transliterator": "~1.0",
  8285. "container-interop/container-interop": "^1.1",
  8286. "ext-mbstring": "*",
  8287. "php": ">=5.3.3",
  8288. "symfony/class-loader": "~2.1||~3.0",
  8289. "symfony/config": "~2.3||~3.0",
  8290. "symfony/console": "~2.5||~3.0",
  8291. "symfony/dependency-injection": "~2.1||~3.0",
  8292. "symfony/event-dispatcher": "~2.1||~3.0",
  8293. "symfony/translation": "~2.3||~3.0",
  8294. "symfony/yaml": "~2.1||~3.0"
  8295. },
  8296. "require-dev": {
  8297. "herrera-io/box": "~1.6.1",
  8298. "phpunit/phpunit": "~4.5",
  8299. "symfony/process": "~2.5|~3.0"
  8300. },
  8301. "suggest": {
  8302. "behat/mink-extension": "for integration with Mink testing framework",
  8303. "behat/symfony2-extension": "for integration with Symfony2 web framework",
  8304. "behat/yii-extension": "for integration with Yii web framework"
  8305. },
  8306. "bin": [
  8307. "bin/behat"
  8308. ],
  8309. "type": "library",
  8310. "extra": {
  8311. "branch-alias": {
  8312. "dev-master": "3.2.x-dev"
  8313. }
  8314. },
  8315. "autoload": {
  8316. "psr-0": {
  8317. "Behat\\Behat": "src/",
  8318. "Behat\\Testwork": "src/"
  8319. }
  8320. },
  8321. "notification-url": "https://packagist.org/downloads/",
  8322. "license": [
  8323. "MIT"
  8324. ],
  8325. "authors": [
  8326. {
  8327. "name": "Konstantin Kudryashov",
  8328. "email": "ever.zet@gmail.com",
  8329. "homepage": "http://everzet.com"
  8330. }
  8331. ],
  8332. "description": "Scenario-oriented BDD framework for PHP 5.3",
  8333. "homepage": "http://behat.org/",
  8334. "keywords": [
  8335. "Agile",
  8336. "BDD",
  8337. "ScenarioBDD",
  8338. "Scrum",
  8339. "StoryBDD",
  8340. "User story",
  8341. "business",
  8342. "development",
  8343. "documentation",
  8344. "examples",
  8345. "symfony",
  8346. "testing"
  8347. ],
  8348. "time": "2016-12-25T13:43:52+00:00"
  8349. },
  8350. {
  8351. "name": "behat/gherkin",
  8352. "version": "v4.4.5",
  8353. "source": {
  8354. "type": "git",
  8355. "url": "https://github.com/Behat/Gherkin.git",
  8356. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74"
  8357. },
  8358. "dist": {
  8359. "type": "zip",
  8360. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c14cff4f955b17d20d088dec1bde61c0539ec74",
  8361. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74",
  8362. "shasum": ""
  8363. },
  8364. "require": {
  8365. "php": ">=5.3.1"
  8366. },
  8367. "require-dev": {
  8368. "phpunit/phpunit": "~4.5|~5",
  8369. "symfony/phpunit-bridge": "~2.7|~3",
  8370. "symfony/yaml": "~2.3|~3"
  8371. },
  8372. "suggest": {
  8373. "symfony/yaml": "If you want to parse features, represented in YAML files"
  8374. },
  8375. "type": "library",
  8376. "extra": {
  8377. "branch-alias": {
  8378. "dev-master": "4.4-dev"
  8379. }
  8380. },
  8381. "autoload": {
  8382. "psr-0": {
  8383. "Behat\\Gherkin": "src/"
  8384. }
  8385. },
  8386. "notification-url": "https://packagist.org/downloads/",
  8387. "license": [
  8388. "MIT"
  8389. ],
  8390. "authors": [
  8391. {
  8392. "name": "Konstantin Kudryashov",
  8393. "email": "ever.zet@gmail.com",
  8394. "homepage": "http://everzet.com"
  8395. }
  8396. ],
  8397. "description": "Gherkin DSL parser for PHP 5.3",
  8398. "homepage": "http://behat.org/",
  8399. "keywords": [
  8400. "BDD",
  8401. "Behat",
  8402. "Cucumber",
  8403. "DSL",
  8404. "gherkin",
  8405. "parser"
  8406. ],
  8407. "time": "2016-10-30T11:50:56+00:00"
  8408. },
  8409. {
  8410. "name": "behat/mink",
  8411. "version": "v1.7.1",
  8412. "source": {
  8413. "type": "git",
  8414. "url": "https://github.com/minkphp/Mink.git",
  8415. "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9"
  8416. },
  8417. "dist": {
  8418. "type": "zip",
  8419. "url": "https://api.github.com/repos/minkphp/Mink/zipball/e6930b9c74693dff7f4e58577e1b1743399f3ff9",
  8420. "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9",
  8421. "shasum": ""
  8422. },
  8423. "require": {
  8424. "php": ">=5.3.1",
  8425. "symfony/css-selector": "~2.1|~3.0"
  8426. },
  8427. "require-dev": {
  8428. "symfony/phpunit-bridge": "~2.7|~3.0"
  8429. },
  8430. "suggest": {
  8431. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  8432. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  8433. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  8434. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  8435. },
  8436. "type": "library",
  8437. "extra": {
  8438. "branch-alias": {
  8439. "dev-master": "1.7.x-dev"
  8440. }
  8441. },
  8442. "autoload": {
  8443. "psr-4": {
  8444. "Behat\\Mink\\": "src/"
  8445. }
  8446. },
  8447. "notification-url": "https://packagist.org/downloads/",
  8448. "license": [
  8449. "MIT"
  8450. ],
  8451. "authors": [
  8452. {
  8453. "name": "Konstantin Kudryashov",
  8454. "email": "ever.zet@gmail.com",
  8455. "homepage": "http://everzet.com"
  8456. }
  8457. ],
  8458. "description": "Browser controller/emulator abstraction for PHP",
  8459. "homepage": "http://mink.behat.org/",
  8460. "keywords": [
  8461. "browser",
  8462. "testing",
  8463. "web"
  8464. ],
  8465. "time": "2016-03-05T08:26:18+00:00"
  8466. },
  8467. {
  8468. "name": "behat/mink-browserkit-driver",
  8469. "version": "v1.3.2",
  8470. "source": {
  8471. "type": "git",
  8472. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  8473. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  8474. },
  8475. "dist": {
  8476. "type": "zip",
  8477. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  8478. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  8479. "shasum": ""
  8480. },
  8481. "require": {
  8482. "behat/mink": "^1.7.1@dev",
  8483. "php": ">=5.3.6",
  8484. "symfony/browser-kit": "~2.3|~3.0",
  8485. "symfony/dom-crawler": "~2.3|~3.0"
  8486. },
  8487. "require-dev": {
  8488. "silex/silex": "~1.2",
  8489. "symfony/phpunit-bridge": "~2.7|~3.0"
  8490. },
  8491. "type": "mink-driver",
  8492. "extra": {
  8493. "branch-alias": {
  8494. "dev-master": "1.3.x-dev"
  8495. }
  8496. },
  8497. "autoload": {
  8498. "psr-4": {
  8499. "Behat\\Mink\\Driver\\": "src/"
  8500. }
  8501. },
  8502. "notification-url": "https://packagist.org/downloads/",
  8503. "license": [
  8504. "MIT"
  8505. ],
  8506. "authors": [
  8507. {
  8508. "name": "Konstantin Kudryashov",
  8509. "email": "ever.zet@gmail.com",
  8510. "homepage": "http://everzet.com"
  8511. }
  8512. ],
  8513. "description": "Symfony2 BrowserKit driver for Mink framework",
  8514. "homepage": "http://mink.behat.org/",
  8515. "keywords": [
  8516. "Mink",
  8517. "Symfony2",
  8518. "browser",
  8519. "testing"
  8520. ],
  8521. "time": "2016-03-05T08:59:47+00:00"
  8522. },
  8523. {
  8524. "name": "behat/mink-extension",
  8525. "version": "v2.2",
  8526. "source": {
  8527. "type": "git",
  8528. "url": "https://github.com/Behat/MinkExtension.git",
  8529. "reference": "5b4bda64ff456104564317e212c823e45cad9d59"
  8530. },
  8531. "dist": {
  8532. "type": "zip",
  8533. "url": "https://api.github.com/repos/Behat/MinkExtension/zipball/5b4bda64ff456104564317e212c823e45cad9d59",
  8534. "reference": "5b4bda64ff456104564317e212c823e45cad9d59",
  8535. "shasum": ""
  8536. },
  8537. "require": {
  8538. "behat/behat": "~3.0,>=3.0.5",
  8539. "behat/mink": "~1.5",
  8540. "php": ">=5.3.2",
  8541. "symfony/config": "~2.2|~3.0"
  8542. },
  8543. "require-dev": {
  8544. "behat/mink-goutte-driver": "~1.1",
  8545. "phpspec/phpspec": "~2.0"
  8546. },
  8547. "type": "behat-extension",
  8548. "extra": {
  8549. "branch-alias": {
  8550. "dev-master": "2.1.x-dev"
  8551. }
  8552. },
  8553. "autoload": {
  8554. "psr-0": {
  8555. "Behat\\MinkExtension": "src/"
  8556. }
  8557. },
  8558. "notification-url": "https://packagist.org/downloads/",
  8559. "license": [
  8560. "MIT"
  8561. ],
  8562. "authors": [
  8563. {
  8564. "name": "Christophe Coevoet",
  8565. "email": "stof@notk.org"
  8566. },
  8567. {
  8568. "name": "Konstantin Kudryashov",
  8569. "email": "ever.zet@gmail.com"
  8570. }
  8571. ],
  8572. "description": "Mink extension for Behat",
  8573. "homepage": "http://extensions.behat.org/mink",
  8574. "keywords": [
  8575. "browser",
  8576. "gui",
  8577. "test",
  8578. "web"
  8579. ],
  8580. "time": "2016-02-15T07:55:18+00:00"
  8581. },
  8582. {
  8583. "name": "behat/mink-goutte-driver",
  8584. "version": "v1.2.1",
  8585. "source": {
  8586. "type": "git",
  8587. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  8588. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  8589. },
  8590. "dist": {
  8591. "type": "zip",
  8592. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  8593. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  8594. "shasum": ""
  8595. },
  8596. "require": {
  8597. "behat/mink": "~1.6@dev",
  8598. "behat/mink-browserkit-driver": "~1.2@dev",
  8599. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  8600. "php": ">=5.3.1"
  8601. },
  8602. "require-dev": {
  8603. "symfony/phpunit-bridge": "~2.7|~3.0"
  8604. },
  8605. "type": "mink-driver",
  8606. "extra": {
  8607. "branch-alias": {
  8608. "dev-master": "1.2.x-dev"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "psr-4": {
  8613. "Behat\\Mink\\Driver\\": "src/"
  8614. }
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "MIT"
  8619. ],
  8620. "authors": [
  8621. {
  8622. "name": "Konstantin Kudryashov",
  8623. "email": "ever.zet@gmail.com",
  8624. "homepage": "http://everzet.com"
  8625. }
  8626. ],
  8627. "description": "Goutte driver for Mink framework",
  8628. "homepage": "http://mink.behat.org/",
  8629. "keywords": [
  8630. "browser",
  8631. "goutte",
  8632. "headless",
  8633. "testing"
  8634. ],
  8635. "time": "2016-03-05T09:04:22+00:00"
  8636. },
  8637. {
  8638. "name": "behat/mink-selenium2-driver",
  8639. "version": "v1.3.1",
  8640. "source": {
  8641. "type": "git",
  8642. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  8643. "reference": "473a9f3ebe0c134ee1e623ce8a9c852832020288"
  8644. },
  8645. "dist": {
  8646. "type": "zip",
  8647. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/473a9f3ebe0c134ee1e623ce8a9c852832020288",
  8648. "reference": "473a9f3ebe0c134ee1e623ce8a9c852832020288",
  8649. "shasum": ""
  8650. },
  8651. "require": {
  8652. "behat/mink": "~1.7@dev",
  8653. "instaclick/php-webdriver": "~1.1",
  8654. "php": ">=5.3.1"
  8655. },
  8656. "require-dev": {
  8657. "symfony/phpunit-bridge": "~2.7"
  8658. },
  8659. "type": "mink-driver",
  8660. "extra": {
  8661. "branch-alias": {
  8662. "dev-master": "1.3.x-dev"
  8663. }
  8664. },
  8665. "autoload": {
  8666. "psr-4": {
  8667. "Behat\\Mink\\Driver\\": "src/"
  8668. }
  8669. },
  8670. "notification-url": "https://packagist.org/downloads/",
  8671. "license": [
  8672. "MIT"
  8673. ],
  8674. "authors": [
  8675. {
  8676. "name": "Konstantin Kudryashov",
  8677. "email": "ever.zet@gmail.com",
  8678. "homepage": "http://everzet.com"
  8679. },
  8680. {
  8681. "name": "Pete Otaqui",
  8682. "email": "pete@otaqui.com",
  8683. "homepage": "https://github.com/pete-otaqui"
  8684. }
  8685. ],
  8686. "description": "Selenium2 (WebDriver) driver for Mink framework",
  8687. "homepage": "http://mink.behat.org/",
  8688. "keywords": [
  8689. "ajax",
  8690. "browser",
  8691. "javascript",
  8692. "selenium",
  8693. "testing",
  8694. "webdriver"
  8695. ],
  8696. "time": "2016-03-05T09:10:18+00:00"
  8697. },
  8698. {
  8699. "name": "container-interop/container-interop",
  8700. "version": "1.2.0",
  8701. "source": {
  8702. "type": "git",
  8703. "url": "https://github.com/container-interop/container-interop.git",
  8704. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  8705. },
  8706. "dist": {
  8707. "type": "zip",
  8708. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  8709. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  8710. "shasum": ""
  8711. },
  8712. "require": {
  8713. "psr/container": "^1.0"
  8714. },
  8715. "type": "library",
  8716. "autoload": {
  8717. "psr-4": {
  8718. "Interop\\Container\\": "src/Interop/Container/"
  8719. }
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "MIT"
  8724. ],
  8725. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  8726. "homepage": "https://github.com/container-interop/container-interop",
  8727. "time": "2017-02-14T19:40:03+00:00"
  8728. },
  8729. {
  8730. "name": "fabpot/goutte",
  8731. "version": "v3.2.1",
  8732. "source": {
  8733. "type": "git",
  8734. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  8735. "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638"
  8736. },
  8737. "dist": {
  8738. "type": "zip",
  8739. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/db5c28f4a010b4161d507d5304e28a7ebf211638",
  8740. "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638",
  8741. "shasum": ""
  8742. },
  8743. "require": {
  8744. "guzzlehttp/guzzle": "^6.0",
  8745. "php": ">=5.5.0",
  8746. "symfony/browser-kit": "~2.1|~3.0",
  8747. "symfony/css-selector": "~2.1|~3.0",
  8748. "symfony/dom-crawler": "~2.1|~3.0"
  8749. },
  8750. "type": "application",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-master": "3.2-dev"
  8754. }
  8755. },
  8756. "autoload": {
  8757. "psr-4": {
  8758. "Goutte\\": "Goutte"
  8759. }
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "MIT"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Fabien Potencier",
  8768. "email": "fabien@symfony.com"
  8769. }
  8770. ],
  8771. "description": "A simple PHP Web Scraper",
  8772. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  8773. "keywords": [
  8774. "scraper"
  8775. ],
  8776. "time": "2017-01-03T13:21:43+00:00"
  8777. },
  8778. {
  8779. "name": "guzzlehttp/guzzle",
  8780. "version": "6.2.3",
  8781. "source": {
  8782. "type": "git",
  8783. "url": "https://github.com/guzzle/guzzle.git",
  8784. "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006"
  8785. },
  8786. "dist": {
  8787. "type": "zip",
  8788. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/8d6c6cc55186db87b7dc5009827429ba4e9dc006",
  8789. "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006",
  8790. "shasum": ""
  8791. },
  8792. "require": {
  8793. "guzzlehttp/promises": "^1.0",
  8794. "guzzlehttp/psr7": "^1.4",
  8795. "php": ">=5.5"
  8796. },
  8797. "require-dev": {
  8798. "ext-curl": "*",
  8799. "phpunit/phpunit": "^4.0",
  8800. "psr/log": "^1.0"
  8801. },
  8802. "type": "library",
  8803. "extra": {
  8804. "branch-alias": {
  8805. "dev-master": "6.2-dev"
  8806. }
  8807. },
  8808. "autoload": {
  8809. "files": [
  8810. "src/functions_include.php"
  8811. ],
  8812. "psr-4": {
  8813. "GuzzleHttp\\": "src/"
  8814. }
  8815. },
  8816. "notification-url": "https://packagist.org/downloads/",
  8817. "license": [
  8818. "MIT"
  8819. ],
  8820. "authors": [
  8821. {
  8822. "name": "Michael Dowling",
  8823. "email": "mtdowling@gmail.com",
  8824. "homepage": "https://github.com/mtdowling"
  8825. }
  8826. ],
  8827. "description": "Guzzle is a PHP HTTP client library",
  8828. "homepage": "http://guzzlephp.org/",
  8829. "keywords": [
  8830. "client",
  8831. "curl",
  8832. "framework",
  8833. "http",
  8834. "http client",
  8835. "rest",
  8836. "web service"
  8837. ],
  8838. "time": "2017-02-28T22:50:30+00:00"
  8839. },
  8840. {
  8841. "name": "guzzlehttp/promises",
  8842. "version": "v1.3.1",
  8843. "source": {
  8844. "type": "git",
  8845. "url": "https://github.com/guzzle/promises.git",
  8846. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  8847. },
  8848. "dist": {
  8849. "type": "zip",
  8850. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  8851. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  8852. "shasum": ""
  8853. },
  8854. "require": {
  8855. "php": ">=5.5.0"
  8856. },
  8857. "require-dev": {
  8858. "phpunit/phpunit": "^4.0"
  8859. },
  8860. "type": "library",
  8861. "extra": {
  8862. "branch-alias": {
  8863. "dev-master": "1.4-dev"
  8864. }
  8865. },
  8866. "autoload": {
  8867. "psr-4": {
  8868. "GuzzleHttp\\Promise\\": "src/"
  8869. },
  8870. "files": [
  8871. "src/functions_include.php"
  8872. ]
  8873. },
  8874. "notification-url": "https://packagist.org/downloads/",
  8875. "license": [
  8876. "MIT"
  8877. ],
  8878. "authors": [
  8879. {
  8880. "name": "Michael Dowling",
  8881. "email": "mtdowling@gmail.com",
  8882. "homepage": "https://github.com/mtdowling"
  8883. }
  8884. ],
  8885. "description": "Guzzle promises library",
  8886. "keywords": [
  8887. "promise"
  8888. ],
  8889. "time": "2016-12-20T10:07:11+00:00"
  8890. },
  8891. {
  8892. "name": "guzzlehttp/psr7",
  8893. "version": "1.4.1",
  8894. "source": {
  8895. "type": "git",
  8896. "url": "https://github.com/guzzle/psr7.git",
  8897. "reference": "0d6c7ca039329247e4f0f8f8f6506810e8248855"
  8898. },
  8899. "dist": {
  8900. "type": "zip",
  8901. "url": "https://api.github.com/repos/guzzle/psr7/zipball/0d6c7ca039329247e4f0f8f8f6506810e8248855",
  8902. "reference": "0d6c7ca039329247e4f0f8f8f6506810e8248855",
  8903. "shasum": ""
  8904. },
  8905. "require": {
  8906. "php": ">=5.4.0",
  8907. "psr/http-message": "~1.0"
  8908. },
  8909. "provide": {
  8910. "psr/http-message-implementation": "1.0"
  8911. },
  8912. "require-dev": {
  8913. "phpunit/phpunit": "~4.0"
  8914. },
  8915. "type": "library",
  8916. "extra": {
  8917. "branch-alias": {
  8918. "dev-master": "1.4-dev"
  8919. }
  8920. },
  8921. "autoload": {
  8922. "psr-4": {
  8923. "GuzzleHttp\\Psr7\\": "src/"
  8924. },
  8925. "files": [
  8926. "src/functions_include.php"
  8927. ]
  8928. },
  8929. "notification-url": "https://packagist.org/downloads/",
  8930. "license": [
  8931. "MIT"
  8932. ],
  8933. "authors": [
  8934. {
  8935. "name": "Michael Dowling",
  8936. "email": "mtdowling@gmail.com",
  8937. "homepage": "https://github.com/mtdowling"
  8938. },
  8939. {
  8940. "name": "Tobias Schultze",
  8941. "homepage": "https://github.com/Tobion"
  8942. }
  8943. ],
  8944. "description": "PSR-7 message implementation that also provides common utility methods",
  8945. "keywords": [
  8946. "http",
  8947. "message",
  8948. "request",
  8949. "response",
  8950. "stream",
  8951. "uri",
  8952. "url"
  8953. ],
  8954. "time": "2017-02-27T10:51:17+00:00"
  8955. },
  8956. {
  8957. "name": "instaclick/php-webdriver",
  8958. "version": "1.4.3",
  8959. "source": {
  8960. "type": "git",
  8961. "url": "https://github.com/instaclick/php-webdriver.git",
  8962. "reference": "0c20707dcf30a32728fd6bdeeab996c887fdb2fb"
  8963. },
  8964. "dist": {
  8965. "type": "zip",
  8966. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/0c20707dcf30a32728fd6bdeeab996c887fdb2fb",
  8967. "reference": "0c20707dcf30a32728fd6bdeeab996c887fdb2fb",
  8968. "shasum": ""
  8969. },
  8970. "require": {
  8971. "ext-curl": "*",
  8972. "php": ">=5.3.2"
  8973. },
  8974. "require-dev": {
  8975. "satooshi/php-coveralls": "dev-master"
  8976. },
  8977. "type": "library",
  8978. "extra": {
  8979. "branch-alias": {
  8980. "dev-master": "1.4.x-dev"
  8981. }
  8982. },
  8983. "autoload": {
  8984. "psr-0": {
  8985. "WebDriver": "lib/"
  8986. }
  8987. },
  8988. "notification-url": "https://packagist.org/downloads/",
  8989. "license": [
  8990. "Apache-2.0"
  8991. ],
  8992. "authors": [
  8993. {
  8994. "name": "Justin Bishop",
  8995. "email": "jubishop@gmail.com",
  8996. "role": "Developer"
  8997. },
  8998. {
  8999. "name": "Anthon Pang",
  9000. "email": "apang@softwaredevelopment.ca",
  9001. "role": "Fork Maintainer"
  9002. }
  9003. ],
  9004. "description": "PHP WebDriver for Selenium 2",
  9005. "homepage": "http://instaclick.com/",
  9006. "keywords": [
  9007. "browser",
  9008. "selenium",
  9009. "webdriver",
  9010. "webtest"
  9011. ],
  9012. "time": "2015-06-15T20:19:33+00:00"
  9013. },
  9014. {
  9015. "name": "psr/container",
  9016. "version": "1.0.0",
  9017. "source": {
  9018. "type": "git",
  9019. "url": "https://github.com/php-fig/container.git",
  9020. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9021. },
  9022. "dist": {
  9023. "type": "zip",
  9024. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9025. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9026. "shasum": ""
  9027. },
  9028. "require": {
  9029. "php": ">=5.3.0"
  9030. },
  9031. "type": "library",
  9032. "extra": {
  9033. "branch-alias": {
  9034. "dev-master": "1.0.x-dev"
  9035. }
  9036. },
  9037. "autoload": {
  9038. "psr-4": {
  9039. "Psr\\Container\\": "src/"
  9040. }
  9041. },
  9042. "notification-url": "https://packagist.org/downloads/",
  9043. "license": [
  9044. "MIT"
  9045. ],
  9046. "authors": [
  9047. {
  9048. "name": "PHP-FIG",
  9049. "homepage": "http://www.php-fig.org/"
  9050. }
  9051. ],
  9052. "description": "Common Container Interface (PHP FIG PSR-11)",
  9053. "homepage": "https://github.com/php-fig/container",
  9054. "keywords": [
  9055. "PSR-11",
  9056. "container",
  9057. "container-interface",
  9058. "container-interop",
  9059. "psr"
  9060. ],
  9061. "time": "2017-02-14T16:28:37+00:00"
  9062. },
  9063. {
  9064. "name": "psr/http-message",
  9065. "version": "1.0.1",
  9066. "source": {
  9067. "type": "git",
  9068. "url": "https://github.com/php-fig/http-message.git",
  9069. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9070. },
  9071. "dist": {
  9072. "type": "zip",
  9073. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9074. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9075. "shasum": ""
  9076. },
  9077. "require": {
  9078. "php": ">=5.3.0"
  9079. },
  9080. "type": "library",
  9081. "extra": {
  9082. "branch-alias": {
  9083. "dev-master": "1.0.x-dev"
  9084. }
  9085. },
  9086. "autoload": {
  9087. "psr-4": {
  9088. "Psr\\Http\\Message\\": "src/"
  9089. }
  9090. },
  9091. "notification-url": "https://packagist.org/downloads/",
  9092. "license": [
  9093. "MIT"
  9094. ],
  9095. "authors": [
  9096. {
  9097. "name": "PHP-FIG",
  9098. "homepage": "http://www.php-fig.org/"
  9099. }
  9100. ],
  9101. "description": "Common interface for HTTP messages",
  9102. "homepage": "https://github.com/php-fig/http-message",
  9103. "keywords": [
  9104. "http",
  9105. "http-message",
  9106. "psr",
  9107. "psr-7",
  9108. "request",
  9109. "response"
  9110. ],
  9111. "time": "2016-08-06T14:39:51+00:00"
  9112. },
  9113. {
  9114. "name": "symfony/browser-kit",
  9115. "version": "v3.2.4",
  9116. "source": {
  9117. "type": "git",
  9118. "url": "https://github.com/symfony/browser-kit.git",
  9119. "reference": "394a2475a3a89089353fde5714a7f402fbb83880"
  9120. },
  9121. "dist": {
  9122. "type": "zip",
  9123. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/394a2475a3a89089353fde5714a7f402fbb83880",
  9124. "reference": "394a2475a3a89089353fde5714a7f402fbb83880",
  9125. "shasum": ""
  9126. },
  9127. "require": {
  9128. "php": ">=5.5.9",
  9129. "symfony/dom-crawler": "~2.8|~3.0"
  9130. },
  9131. "require-dev": {
  9132. "symfony/css-selector": "~2.8|~3.0",
  9133. "symfony/process": "~2.8|~3.0"
  9134. },
  9135. "suggest": {
  9136. "symfony/process": ""
  9137. },
  9138. "type": "library",
  9139. "extra": {
  9140. "branch-alias": {
  9141. "dev-master": "3.2-dev"
  9142. }
  9143. },
  9144. "autoload": {
  9145. "psr-4": {
  9146. "Symfony\\Component\\BrowserKit\\": ""
  9147. },
  9148. "exclude-from-classmap": [
  9149. "/Tests/"
  9150. ]
  9151. },
  9152. "notification-url": "https://packagist.org/downloads/",
  9153. "license": [
  9154. "MIT"
  9155. ],
  9156. "authors": [
  9157. {
  9158. "name": "Fabien Potencier",
  9159. "email": "fabien@symfony.com"
  9160. },
  9161. {
  9162. "name": "Symfony Community",
  9163. "homepage": "https://symfony.com/contributors"
  9164. }
  9165. ],
  9166. "description": "Symfony BrowserKit Component",
  9167. "homepage": "https://symfony.com",
  9168. "time": "2017-01-31T21:49:23+00:00"
  9169. },
  9170. {
  9171. "name": "symfony/css-selector",
  9172. "version": "v3.2.4",
  9173. "source": {
  9174. "type": "git",
  9175. "url": "https://github.com/symfony/css-selector.git",
  9176. "reference": "f0e628f04fc055c934b3211cfabdb1c59eefbfaa"
  9177. },
  9178. "dist": {
  9179. "type": "zip",
  9180. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f0e628f04fc055c934b3211cfabdb1c59eefbfaa",
  9181. "reference": "f0e628f04fc055c934b3211cfabdb1c59eefbfaa",
  9182. "shasum": ""
  9183. },
  9184. "require": {
  9185. "php": ">=5.5.9"
  9186. },
  9187. "type": "library",
  9188. "extra": {
  9189. "branch-alias": {
  9190. "dev-master": "3.2-dev"
  9191. }
  9192. },
  9193. "autoload": {
  9194. "psr-4": {
  9195. "Symfony\\Component\\CssSelector\\": ""
  9196. },
  9197. "exclude-from-classmap": [
  9198. "/Tests/"
  9199. ]
  9200. },
  9201. "notification-url": "https://packagist.org/downloads/",
  9202. "license": [
  9203. "MIT"
  9204. ],
  9205. "authors": [
  9206. {
  9207. "name": "Jean-François Simon",
  9208. "email": "jeanfrancois.simon@sensiolabs.com"
  9209. },
  9210. {
  9211. "name": "Fabien Potencier",
  9212. "email": "fabien@symfony.com"
  9213. },
  9214. {
  9215. "name": "Symfony Community",
  9216. "homepage": "https://symfony.com/contributors"
  9217. }
  9218. ],
  9219. "description": "Symfony CssSelector Component",
  9220. "homepage": "https://symfony.com",
  9221. "time": "2017-01-02T20:32:22+00:00"
  9222. },
  9223. {
  9224. "name": "symfony/dom-crawler",
  9225. "version": "v3.2.4",
  9226. "source": {
  9227. "type": "git",
  9228. "url": "https://github.com/symfony/dom-crawler.git",
  9229. "reference": "b814b41373fc4e535aff8c765abe39545216f391"
  9230. },
  9231. "dist": {
  9232. "type": "zip",
  9233. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b814b41373fc4e535aff8c765abe39545216f391",
  9234. "reference": "b814b41373fc4e535aff8c765abe39545216f391",
  9235. "shasum": ""
  9236. },
  9237. "require": {
  9238. "php": ">=5.5.9",
  9239. "symfony/polyfill-mbstring": "~1.0"
  9240. },
  9241. "require-dev": {
  9242. "symfony/css-selector": "~2.8|~3.0"
  9243. },
  9244. "suggest": {
  9245. "symfony/css-selector": ""
  9246. },
  9247. "type": "library",
  9248. "extra": {
  9249. "branch-alias": {
  9250. "dev-master": "3.2-dev"
  9251. }
  9252. },
  9253. "autoload": {
  9254. "psr-4": {
  9255. "Symfony\\Component\\DomCrawler\\": ""
  9256. },
  9257. "exclude-from-classmap": [
  9258. "/Tests/"
  9259. ]
  9260. },
  9261. "notification-url": "https://packagist.org/downloads/",
  9262. "license": [
  9263. "MIT"
  9264. ],
  9265. "authors": [
  9266. {
  9267. "name": "Fabien Potencier",
  9268. "email": "fabien@symfony.com"
  9269. },
  9270. {
  9271. "name": "Symfony Community",
  9272. "homepage": "https://symfony.com/contributors"
  9273. }
  9274. ],
  9275. "description": "Symfony DomCrawler Component",
  9276. "homepage": "https://symfony.com",
  9277. "time": "2017-01-21T17:14:11+00:00"
  9278. }
  9279. ],
  9280. "aliases": [],
  9281. "minimum-stability": "stable",
  9282. "stability-flags": {
  9283. "doctrine/migrations": 20,
  9284. "doctrine/data-fixtures": 20,
  9285. "toin0u/digitalocean": 20,
  9286. "jbroadway/urlify": 20,
  9287. "ddeboer/data-import": 0,
  9288. "webit/eval-math": 20,
  9289. "chamilo/chash": 20,
  9290. "behat/behat": 0,
  9291. "behat/mink": 0
  9292. },
  9293. "prefer-stable": false,
  9294. "prefer-lowest": false,
  9295. "platform": {
  9296. "php": ">=5.4",
  9297. "ext-intl": "*",
  9298. "ext-gd": "*",
  9299. "ext-curl": "*",
  9300. "ext-zlib": "*",
  9301. "ext-zip": "*",
  9302. "ext-xml": "*",
  9303. "ext-json": "*",
  9304. "ext-mbstring": "*"
  9305. },
  9306. "platform-dev": []
  9307. }