| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661 |
- {
- "_readme": [
- "This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
- "This file is @generated automatically"
- ],
- "hash": "0cb8aa148eb3bf0a631ea82aa1efec18",
- "content-hash": "fd4f5cbfac79cf78bf6324bb69096e50",
- "packages": [
- {
- "name": "aws/aws-sdk-php",
- "version": "3.22.7",
- "source": {
- "type": "git",
- "url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "eea83aaac2b6c86f72a5c85c54d1839b70d4fd21"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/eea83aaac2b6c86f72a5c85c54d1839b70d4fd21",
- "reference": "eea83aaac2b6c86f72a5c85c54d1839b70d4fd21",
- "shasum": ""
- },
- "require": {
- "guzzlehttp/guzzle": "^5.3.1|^6.2.1",
- "guzzlehttp/promises": "~1.0",
- "guzzlehttp/psr7": "~1.3.1",
- "mtdowling/jmespath.php": "~2.2",
- "php": ">=5.5"
- },
- "require-dev": {
- "andrewsville/php-token-reflection": "^1.4",
- "aws/aws-php-sns-message-validator": "~1.0",
- "behat/behat": "~3.0",
- "doctrine/cache": "~1.4",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-openssl": "*",
- "ext-pcre": "*",
- "ext-simplexml": "*",
- "ext-spl": "*",
- "nette/neon": "^2.3",
- "phpunit/phpunit": "~4.0|~5.0",
- "psr/cache": "^1.0"
- },
- "suggest": {
- "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
- "doctrine/cache": "To use the DoctrineCacheAdapter",
- "ext-curl": "To send requests using cURL",
- "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Aws\\": "src/"
- },
- "files": [
- "src/functions.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Amazon Web Services",
- "homepage": "http://aws.amazon.com"
- }
- ],
- "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
- "homepage": "http://aws.amazon.com/sdkforphp",
- "keywords": [
- "amazon",
- "aws",
- "cloud",
- "dynamodb",
- "ec2",
- "glacier",
- "s3",
- "sdk"
- ],
- "time": "2017-02-17 20:09:40"
- },
- {
- "name": "cloudxns/cloud-xns-api-sdk-php",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/CloudXNS/CloudXNS-API-SDK-PHP.git",
- "reference": "8e270167b957e66b1c67939018bee82d68d9d2ac"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/CloudXNS/CloudXNS-API-SDK-PHP/zipball/8e270167b957e66b1c67939018bee82d68d9d2ac",
- "reference": "8e270167b957e66b1c67939018bee82d68d9d2ac",
- "shasum": ""
- },
- "require-dev": {
- "guzzlehttp/guzzle": "~5.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "CloudXNS\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "CloudXNS",
- "email": "[email protected]"
- }
- ],
- "description": "CloudXNS SDK FILES",
- "homepage": "https://www.cloudxns.net/",
- "time": "2016-01-27 02:39:42"
- },
- {
- "name": "container-interop/container-interop",
- "version": "1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/container-interop/container-interop.git",
- "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
- "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
- "shasum": ""
- },
- "require": {
- "psr/container": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Interop\\Container\\": "src/Interop/Container/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
- "homepage": "https://github.com/container-interop/container-interop",
- "time": "2017-02-14 19:40:03"
- },
- {
- "name": "doctrine/inflector",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/inflector.git",
- "reference": "803a2ed9fea02f9ca47cd45395089fe78769a392"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/803a2ed9fea02f9ca47cd45395089fe78769a392",
- "reference": "803a2ed9fea02f9ca47cd45395089fe78769a392",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.2"
- },
- "require-dev": {
- "phpunit/phpunit": "4.*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Doctrine\\Common\\Inflector\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Roman Borschel",
- "email": "[email protected]"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "[email protected]"
- },
- {
- "name": "Guilherme Blanco",
- "email": "[email protected]"
- },
- {
- "name": "Jonathan Wage",
- "email": "[email protected]"
- },
- {
- "name": "Johannes Schmitt",
- "email": "[email protected]"
- }
- ],
- "description": "Common String Manipulations with regard to casing and singular/plural rules.",
- "homepage": "http://www.doctrine-project.org",
- "keywords": [
- "inflection",
- "pluralize",
- "singularize",
- "string"
- ],
- "time": "2016-05-12 17:23:41"
- },
- {
- "name": "esdeathlove/datatables",
- "version": "1.6.8",
- "source": {
- "type": "git",
- "url": "https://github.com/esdeathlove/datatables.git",
- "reference": "13a222abd2ee1a1be114b70cca6a8753e90348a8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/esdeathlove/datatables/zipball/13a222abd2ee1a1be114b70cca6a8753e90348a8",
- "reference": "13a222abd2ee1a1be114b70cca6a8753e90348a8",
- "shasum": ""
- },
- "require-dev": {
- "phpspec/phpspec": "~2.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Ozdemir\\Datatables\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Yusuf Özdemir",
- "email": "[email protected]"
- }
- ],
- "description": "PHP Library to handle server-side processing for Datatables, in a fast and simple way.",
- "time": "2017-02-19 00:35:03"
- },
- {
- "name": "filp/whoops",
- "version": "2.1.5",
- "source": {
- "type": "git",
- "url": "https://github.com/filp/whoops.git",
- "reference": "2abce9d956589122c6443d6265f01cf7e9388e3c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/2abce9d956589122c6443d6265f01cf7e9388e3c",
- "reference": "2abce9d956589122c6443d6265f01cf7e9388e3c",
- "shasum": ""
- },
- "require": {
- "php": "^5.5.9 || ^7.0"
- },
- "require-dev": {
- "mockery/mockery": "0.9.*",
- "phpunit/phpunit": "^4.8 || ^5.0",
- "symfony/var-dumper": "^2.6 || ^3.0"
- },
- "suggest": {
- "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
- "whoops/soap": "Formats errors as SOAP responses"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Whoops\\": "src/Whoops/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Filipe Dobreira",
- "homepage": "https://github.com/filp",
- "role": "Developer"
- }
- ],
- "description": "php error handling for cool kids",
- "homepage": "https://filp.github.io/whoops/",
- "keywords": [
- "error",
- "exception",
- "handling",
- "library",
- "whoops",
- "zf2"
- ],
- "time": "2016-12-26 16:13:31"
- },
- {
- "name": "firebase/php-jwt",
- "version": "v3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/firebase/php-jwt.git",
- "reference": "fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/firebase/php-jwt/zipball/fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1",
- "reference": "fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Firebase\\JWT\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Neuman Vong",
- "email": "[email protected]",
- "role": "Developer"
- },
- {
- "name": "Anant Narayanan",
- "email": "[email protected]",
- "role": "Developer"
- }
- ],
- "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
- "homepage": "https://github.com/firebase/php-jwt",
- "time": "2015-07-22 18:31:08"
- },
- {
- "name": "gregwar/captcha",
- "version": "v1.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/Gregwar/Captcha.git",
- "reference": "1240ab993ca713680573b2d4166900da5f758623"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/1240ab993ca713680573b2d4166900da5f758623",
- "reference": "1240ab993ca713680573b2d4166900da5f758623",
- "shasum": ""
- },
- "require": {
- "ext-gd": "*",
- "php": ">=5.3.0"
- },
- "type": "captcha",
- "autoload": {
- "psr-4": {
- "Gregwar\\Captcha\\": "/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Grégoire Passault",
- "email": "[email protected]",
- "homepage": "http://www.gregwar.com/"
- },
- {
- "name": "Jeremy Livingston",
- "email": "[email protected]"
- }
- ],
- "description": "Captcha generator",
- "homepage": "https://github.com/Gregwar/Captcha",
- "keywords": [
- "bot",
- "captcha",
- "spam"
- ],
- "time": "2015-09-11 15:23:20"
- },
- {
- "name": "guzzle/guzzle",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/guzzle3.git",
- "reference": "f7778ed85e3db90009d79725afd6c3a82dab32fe"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/f7778ed85e3db90009d79725afd6c3a82dab32fe",
- "reference": "f7778ed85e3db90009d79725afd6c3a82dab32fe",
- "shasum": ""
- },
- "require": {
- "ext-curl": "*",
- "php": ">=5.3.3",
- "symfony/event-dispatcher": "~2.1"
- },
- "replace": {
- "guzzle/batch": "self.version",
- "guzzle/cache": "self.version",
- "guzzle/common": "self.version",
- "guzzle/http": "self.version",
- "guzzle/inflection": "self.version",
- "guzzle/iterator": "self.version",
- "guzzle/log": "self.version",
- "guzzle/parser": "self.version",
- "guzzle/plugin": "self.version",
- "guzzle/plugin-async": "self.version",
- "guzzle/plugin-backoff": "self.version",
- "guzzle/plugin-cache": "self.version",
- "guzzle/plugin-cookie": "self.version",
- "guzzle/plugin-curlauth": "self.version",
- "guzzle/plugin-error-response": "self.version",
- "guzzle/plugin-history": "self.version",
- "guzzle/plugin-log": "self.version",
- "guzzle/plugin-md5": "self.version",
- "guzzle/plugin-mock": "self.version",
- "guzzle/plugin-oauth": "self.version",
- "guzzle/service": "self.version",
- "guzzle/stream": "self.version"
- },
- "require-dev": {
- "doctrine/cache": "~1.3",
- "monolog/monolog": "~1.0",
- "phpunit/phpunit": "3.7.*",
- "psr/log": "~1.0",
- "symfony/class-loader": "~2.1",
- "zendframework/zend-cache": "2.*,<2.3",
- "zendframework/zend-log": "2.*,<2.3"
- },
- "suggest": {
- "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.9-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Guzzle": "src/",
- "Guzzle\\Tests": "tests/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "[email protected]",
- "homepage": "https://github.com/mtdowling"
- },
- {
- "name": "Guzzle Community",
- "homepage": "https://github.com/guzzle/guzzle/contributors"
- }
- ],
- "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
- "homepage": "http://guzzlephp.org/",
- "keywords": [
- "client",
- "curl",
- "framework",
- "http",
- "http client",
- "rest",
- "web service"
- ],
- "abandoned": "guzzlehttp/guzzle",
- "time": "2016-10-26 18:22:07"
- },
- {
- "name": "guzzlehttp/guzzle",
- "version": "5.3.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/guzzle.git",
- "reference": "fc66319d0027509c3a83166314dfc813fa25ffcc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fc66319d0027509c3a83166314dfc813fa25ffcc",
- "reference": "fc66319d0027509c3a83166314dfc813fa25ffcc",
- "shasum": ""
- },
- "require": {
- "guzzlehttp/ringphp": "^1.1",
- "php": ">=5.4.0",
- "react/promise": "^2.2"
- },
- "require-dev": {
- "ext-curl": "*",
- "phpunit/phpunit": "^4.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "[email protected]",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
- "homepage": "http://guzzlephp.org/",
- "keywords": [
- "client",
- "curl",
- "framework",
- "http",
- "http client",
- "rest",
- "web service"
- ],
- "time": "2017-01-05 06:25:03"
- },
- {
- "name": "guzzlehttp/promises",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/promises.git",
- "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
- "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\Promise\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "[email protected]",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Guzzle promises library",
- "keywords": [
- "promise"
- ],
- "time": "2016-12-20 10:07:11"
- },
- {
- "name": "guzzlehttp/psr7",
- "version": "1.3.1",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/psr7.git",
- "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/5c6447c9df362e8f8093bda8f5d8873fe5c7f65b",
- "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0",
- "psr/http-message": "~1.0"
- },
- "provide": {
- "psr/http-message-implementation": "1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\Psr7\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "[email protected]",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "PSR-7 message implementation",
- "keywords": [
- "http",
- "message",
- "stream",
- "uri"
- ],
- "time": "2016-06-24 23:00:38"
- },
- {
- "name": "guzzlehttp/ringphp",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/RingPHP.git",
- "reference": "4c8fe4c48a0fb7cc5e41ef529e43fecd6da4d539"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/4c8fe4c48a0fb7cc5e41ef529e43fecd6da4d539",
- "reference": "4c8fe4c48a0fb7cc5e41ef529e43fecd6da4d539",
- "shasum": ""
- },
- "require": {
- "guzzlehttp/streams": "~3.0",
- "php": ">=5.4.0",
- "react/promise": "~2.0"
- },
- "require-dev": {
- "ext-curl": "*",
- "phpunit/phpunit": "~4.0"
- },
- "suggest": {
- "ext-curl": "Guzzle will use specific adapters if cURL is present"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\Ring\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "[email protected]",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
- "time": "2017-01-13 20:44:38"
- },
- {
- "name": "guzzlehttp/streams",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/streams.git",
- "reference": "d99a261c616210618ab94fd319cb17eda458cc3e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/streams/zipball/d99a261c616210618ab94fd319cb17eda458cc3e",
- "reference": "d99a261c616210618ab94fd319cb17eda458cc3e",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\Stream\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "[email protected]",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Provides a simple abstraction over streams of data",
- "homepage": "http://guzzlephp.org/",
- "keywords": [
- "Guzzle",
- "stream"
- ],
- "time": "2016-04-13 16:32:01"
- },
- {
- "name": "illuminate/container",
- "version": "5.2.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/illuminate/container.git",
- "reference": "5139cebc8293b6820b91aef6f4b4e18bde33c9b2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/illuminate/container/zipball/5139cebc8293b6820b91aef6f4b4e18bde33c9b2",
- "reference": "5139cebc8293b6820b91aef6f4b4e18bde33c9b2",
- "shasum": ""
- },
- "require": {
- "illuminate/contracts": "5.2.*",
- "php": ">=5.5.9"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Illuminate\\Container\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Taylor Otwell",
- "email": "[email protected]"
- }
- ],
- "description": "The Illuminate Container package.",
- "homepage": "http://laravel.com",
- "time": "2016-08-01 13:49:14"
- },
- {
- "name": "illuminate/contracts",
- "version": "5.2.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/illuminate/contracts.git",
- "reference": "22bde7b048a33c702d9737fc1446234fff9b1363"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/illuminate/contracts/zipball/22bde7b048a33c702d9737fc1446234fff9b1363",
- "reference": "22bde7b048a33c702d9737fc1446234fff9b1363",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Illuminate\\Contracts\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Taylor Otwell",
- "email": "[email protected]"
- }
- ],
- "description": "The Illuminate Contracts package.",
- "homepage": "http://laravel.com",
- "time": "2016-08-08 11:46:08"
- },
- {
- "name": "illuminate/database",
- "version": "5.2.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/illuminate/database.git",
- "reference": "ab112b5cfd33020752d91ce8106b9f9420393fbd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/illuminate/database/zipball/ab112b5cfd33020752d91ce8106b9f9420393fbd",
- "reference": "ab112b5cfd33020752d91ce8106b9f9420393fbd",
- "shasum": ""
- },
- "require": {
- "illuminate/container": "5.2.*",
- "illuminate/contracts": "5.2.*",
- "illuminate/support": "5.2.*",
- "nesbot/carbon": "~1.20",
- "php": ">=5.5.9"
- },
- "suggest": {
- "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
- "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
- "illuminate/console": "Required to use the database commands (5.2.*).",
- "illuminate/events": "Required to use the observers with Eloquent (5.2.*).",
- "illuminate/filesystem": "Required to use the migrations (5.2.*).",
- "illuminate/pagination": "Required to paginate the result set (5.2.*)."
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Illuminate\\Database\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Taylor Otwell",
- "email": "[email protected]"
- }
- ],
- "description": "The Illuminate Database package.",
- "homepage": "http://laravel.com",
- "keywords": [
- "database",
- "laravel",
- "orm",
- "sql"
- ],
- "time": "2016-12-06 15:27:14"
- },
- {
- "name": "illuminate/pagination",
- "version": "5.2.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/illuminate/pagination.git",
- "reference": "a4450887251f443a1243ef537d98ce5bbea6b193"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/illuminate/pagination/zipball/a4450887251f443a1243ef537d98ce5bbea6b193",
- "reference": "a4450887251f443a1243ef537d98ce5bbea6b193",
- "shasum": ""
- },
- "require": {
- "illuminate/contracts": "5.2.*",
- "illuminate/support": "5.2.*",
- "php": ">=5.5.9"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Illuminate\\Pagination\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Taylor Otwell",
- "email": "[email protected]"
- }
- ],
- "description": "The Illuminate Pagination package.",
- "homepage": "http://laravel.com",
- "time": "2016-08-01 13:49:14"
- },
- {
- "name": "illuminate/support",
- "version": "v5.2.21",
- "source": {
- "type": "git",
- "url": "https://github.com/illuminate/support.git",
- "reference": "6749fab3f3d38d8b15427536a8e7bbdc57497c9e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/illuminate/support/zipball/6749fab3f3d38d8b15427536a8e7bbdc57497c9e",
- "reference": "6749fab3f3d38d8b15427536a8e7bbdc57497c9e",
- "shasum": ""
- },
- "require": {
- "doctrine/inflector": "~1.0",
- "ext-mbstring": "*",
- "illuminate/contracts": "5.2.*",
- "php": ">=5.5.9"
- },
- "suggest": {
- "illuminate/filesystem": "Required to use the composer class (5.2.*).",
- "jeremeamia/superclosure": "Required to be able to serialize closures (~2.2).",
- "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (~1.1).",
- "symfony/polyfill-php56": "Required to use the hash_equals function on PHP 5.5 (~1.0).",
- "symfony/process": "Required to use the composer class (2.8.*|3.0.*).",
- "symfony/var-dumper": "Improves the dd function (2.8.*|3.0.*)."
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Illuminate\\Support\\": ""
- },
- "files": [
- "helpers.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Taylor Otwell",
- "email": "[email protected]"
- }
- ],
- "description": "The Illuminate Support package.",
- "homepage": "http://laravel.com",
- "time": "2016-02-22 20:29:02"
- },
- {
- "name": "ircmaxell/password-compat",
- "version": "1.0.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/ircmaxell/password_compat.git",
- "reference": "9b99377557a33a4129c9194e60a97a685fab21e0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/9b99377557a33a4129c9194e60a97a685fab21e0",
- "reference": "9b99377557a33a4129c9194e60a97a685fab21e0",
- "shasum": ""
- },
- "require-dev": {
- "phpunit/phpunit": "4.*"
- },
- "type": "library",
- "autoload": {
- "files": [
- "lib/password.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anthony Ferrara",
- "email": "[email protected]",
- "homepage": "http://blog.ircmaxell.com"
- }
- ],
- "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
- "homepage": "https://github.com/ircmaxell/password_compat",
- "keywords": [
- "hashing",
- "password"
- ],
- "time": "2014-11-20 19:18:42"
- },
- {
- "name": "mailgun/mailgun-php",
- "version": "v1.7.2",
- "source": {
- "type": "git",
- "url": "https://github.com/mailgun/mailgun-php.git",
- "reference": "45ec0c8f3a2a6554b4987e97889f44991e4f75b4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/45ec0c8f3a2a6554b4987e97889f44991e4f75b4",
- "reference": "45ec0c8f3a2a6554b4987e97889f44991e4f75b4",
- "shasum": ""
- },
- "require": {
- "guzzle/guzzle": "<4.0,>=3.8"
- },
- "require-dev": {
- "phpunit/phpunit": "3.7.*"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "Mailgun\\Tests": "tests/",
- "Mailgun": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Travis Swientek",
- "email": "[email protected]"
- }
- ],
- "description": "The Mailgun SDK provides methods for all API functions.",
- "time": "2014-11-19 22:31:03"
- },
- {
- "name": "mtdowling/jmespath.php",
- "version": "2.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/jmespath/jmespath.php.git",
- "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
- "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0"
- },
- "bin": [
- "bin/jp.php"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "JmesPath\\": "src/"
- },
- "files": [
- "src/JmesPath.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "[email protected]",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Declaratively specify how to extract elements from a JSON document",
- "keywords": [
- "json",
- "jsonpath"
- ],
- "time": "2016-12-03 22:08:25"
- },
- {
- "name": "nesbot/carbon",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/briannesbitt/Carbon.git",
- "reference": "926aee5ab38c2868816aa760f862a85ad01cb61a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/926aee5ab38c2868816aa760f862a85ad01cb61a",
- "reference": "926aee5ab38c2868816aa760f862a85ad01cb61a",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0",
- "symfony/translation": "~2.6 || ~3.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "~2",
- "phpunit/phpunit": "~4.0 || ~5.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.23-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Carbon\\": "src/Carbon/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Brian Nesbitt",
- "email": "[email protected]",
- "homepage": "http://nesbot.com"
- }
- ],
- "description": "A simple API extension for DateTime.",
- "homepage": "http://carbon.nesbot.com",
- "keywords": [
- "date",
- "datetime",
- "time"
- ],
- "time": "2017-02-06 22:02:47"
- },
- {
- "name": "nikic/fast-route",
- "version": "v1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/nikic/FastRoute.git",
- "reference": "b5f95749071c82a8e0f58586987627054400cdf6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nikic/FastRoute/zipball/b5f95749071c82a8e0f58586987627054400cdf6",
- "reference": "b5f95749071c82a8e0f58586987627054400cdf6",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "FastRoute\\": "src/"
- },
- "files": [
- "src/functions.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Nikita Popov",
- "email": "[email protected]"
- }
- ],
- "description": "Fast request router for PHP",
- "keywords": [
- "router",
- "routing"
- ],
- "time": "2017-01-19 11:35:12"
- },
- {
- "name": "paragonie/random_compat",
- "version": "v2.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/paragonie/random_compat.git",
- "reference": "a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e",
- "reference": "a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e",
- "shasum": ""
- },
- "require": {
- "php": ">=5.2.0"
- },
- "require-dev": {
- "phpunit/phpunit": "4.*|5.*"
- },
- "suggest": {
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
- },
- "type": "library",
- "autoload": {
- "files": [
- "lib/random.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Paragon Initiative Enterprises",
- "email": "[email protected]",
- "homepage": "https://paragonie.com"
- }
- ],
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
- "keywords": [
- "csprng",
- "pseudorandom",
- "random"
- ],
- "time": "2016-11-07 23:38:38"
- },
- {
- "name": "paymentwall/paymentwall-php",
- "version": "2.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/paymentwall/paymentwall-php.git",
- "reference": "4f082c9a6a28973e149308822aae34baf253851b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/paymentwall/paymentwall-php/zipball/4f082c9a6a28973e149308822aae34baf253851b",
- "reference": "4f082c9a6a28973e149308822aae34baf253851b",
- "shasum": ""
- },
- "require": {
- "ext-curl": "*",
- "ext-json": "*",
- "php": ">=5.2"
- },
- "require-dev": {
- "behat/behat": "2.4.*@stable"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "lib/Paymentwall/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Paymentwall Team",
- "email": "[email protected]"
- }
- ],
- "description": "Paymentwall PHP Library. Paymentwall is the leading digital payments platform for globally monetizing digital goods and services.",
- "homepage": "https://www.paymentwall.com/?source=gh",
- "keywords": [
- "alternative payments",
- "api",
- "carrier billing",
- "credit cards",
- "monetization",
- "payment processing",
- "payments",
- "paymentwall",
- "recurring billing"
- ],
- "time": "2016-07-01 12:06:30"
- },
- {
- "name": "phpmailer/phpmailer",
- "version": "v5.2.22",
- "source": {
- "type": "git",
- "url": "https://github.com/PHPMailer/PHPMailer.git",
- "reference": "b18cb98131bd83103ccb26a888fdfe3177b8a663"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/b18cb98131bd83103ccb26a888fdfe3177b8a663",
- "reference": "b18cb98131bd83103ccb26a888fdfe3177b8a663",
- "shasum": ""
- },
- "require": {
- "php": ">=5.0.0"
- },
- "require-dev": {
- "phpdocumentor/phpdocumentor": "*",
- "phpunit/phpunit": "4.7.*"
- },
- "suggest": {
- "league/oauth2-google": "Needed for Google XOAUTH2 authentication"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "class.phpmailer.php",
- "class.phpmaileroauth.php",
- "class.phpmaileroauthgoogle.php",
- "class.smtp.php",
- "class.pop3.php",
- "extras/EasyPeasyICS.php",
- "extras/ntlm_sasl_client.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-2.1"
- ],
- "authors": [
- {
- "name": "Jim Jagielski",
- "email": "[email protected]"
- },
- {
- "name": "Marcus Bointon",
- "email": "[email protected]"
- },
- {
- "name": "Andy Prevost",
- "email": "[email protected]"
- },
- {
- "name": "Brent R. Matzelle"
- }
- ],
- "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
- "time": "2017-01-09 09:33:47"
- },
- {
- "name": "pimple/pimple",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/silexphp/Pimple.git",
- "reference": "ac03ac93edb0ac6d2aced595ee00577ebc6ff480"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/silexphp/Pimple/zipball/ac03ac93edb0ac6d2aced595ee00577ebc6ff480",
- "reference": "ac03ac93edb0ac6d2aced595ee00577ebc6ff480",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Pimple": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "[email protected]"
- }
- ],
- "description": "Pimple, a simple Dependency Injection Container",
- "homepage": "http://pimple.sensiolabs.org",
- "keywords": [
- "container",
- "dependency injection"
- ],
- "time": "2017-01-02 20:35:07"
- },
- {
- "name": "predis/predis",
- "version": "v1.1.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/nrk/predis.git",
- "reference": "98ec0cc27efc1efab32b369962f97e29ecc0464a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nrk/predis/zipball/98ec0cc27efc1efab32b369962f97e29ecc0464a",
- "reference": "98ec0cc27efc1efab32b369962f97e29ecc0464a",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.9"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.8"
- },
- "suggest": {
- "ext-curl": "Allows access to Webdis when paired with phpiredis",
- "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Predis\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Daniele Alessandri",
- "email": "[email protected]",
- "homepage": "http://clorophilla.net"
- }
- ],
- "description": "Flexible and feature-complete Redis client for PHP and HHVM",
- "homepage": "http://github.com/nrk/predis",
- "keywords": [
- "nosql",
- "predis",
- "redis"
- ],
- "time": "2016-11-22 14:32:30"
- },
- {
- "name": "psr/container",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Container\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
- "keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
- ],
- "time": "2017-02-14 16:28:37"
- },
- {
- "name": "psr/http-message",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/http-message.git",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interface for HTTP messages",
- "homepage": "https://github.com/php-fig/http-message",
- "keywords": [
- "http",
- "http-message",
- "psr",
- "psr-7",
- "request",
- "response"
- ],
- "time": "2016-08-06 14:39:51"
- },
- {
- "name": "react/promise",
- "version": "2.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/reactphp/promise.git",
- "reference": "2760f3898b7e931aa71153852dcd48a75c9b95db"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/reactphp/promise/zipball/2760f3898b7e931aa71153852dcd48a75c9b95db",
- "reference": "2760f3898b7e931aa71153852dcd48a75c9b95db",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "React\\Promise\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jan Sorgalla",
- "email": "[email protected]"
- }
- ],
- "description": "A lightweight implementation of CommonJS Promises/A for PHP",
- "keywords": [
- "promise",
- "promises"
- ],
- "time": "2016-12-22 14:09:01"
- },
- {
- "name": "sendgrid/php-http-client",
- "version": "3.5.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sendgrid/php-http-client.git",
- "reference": "3c4c35eafd364ebcfdbb0a37f655417beed8ee0f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/3c4c35eafd364ebcfdbb0a37f655417beed8ee0f",
- "reference": "3c4c35eafd364ebcfdbb0a37f655417beed8ee0f",
- "shasum": ""
- },
- "require": {
- "php": ">=5.6"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.4",
- "squizlabs/php_codesniffer": "~2.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "SendGrid\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Matt Bernier",
- "email": "[email protected]"
- },
- {
- "name": "Elmer Thomas",
- "email": "[email protected]"
- }
- ],
- "description": "HTTP REST client, simplified for PHP",
- "homepage": "http://github.com/sendgrid/php-http-client",
- "keywords": [
- "api",
- "fluent",
- "http",
- "rest",
- "sendgrid"
- ],
- "time": "2016-11-17 22:45:31"
- },
- {
- "name": "sendgrid/sendgrid",
- "version": "5.1.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sendgrid/sendgrid-php.git",
- "reference": "46f85e69ec6a36d4674e7131e442fbecdaa5d183"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/46f85e69ec6a36d4674e7131e442fbecdaa5d183",
- "reference": "46f85e69ec6a36d4674e7131e442fbecdaa5d183",
- "shasum": ""
- },
- "require": {
- "php": ">=5.6",
- "sendgrid/php-http-client": "~3.5"
- },
- "replace": {
- "sendgrid/sendgrid-php": "*"
- },
- "require-dev": {
- "phpunit/phpunit": "4.*",
- "squizlabs/php_codesniffer": "2.*"
- },
- "type": "library",
- "autoload": {
- "files": [
- "lib/SendGrid.php",
- "lib/helpers/mail/Mail.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "This library allows you to quickly and easily send emails through SendGrid using PHP.",
- "homepage": "http://github.com/sendgrid/sendgrid-php",
- "keywords": [
- "email",
- "grid",
- "send",
- "sendgrid"
- ],
- "time": "2016-11-17 23:05:01"
- },
- {
- "name": "slim/csrf",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/slimphp/Slim-Csrf.git",
- "reference": "96f2019d2626d71985dc0ca41948f49c3454f4d1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/slimphp/Slim-Csrf/zipball/96f2019d2626d71985dc0ca41948f49c3454f4d1",
- "reference": "96f2019d2626d71985dc0ca41948f49c3454f4d1",
- "shasum": ""
- },
- "require": {
- "paragonie/random_compat": "^1.1|^2.0",
- "php": ">=5.5.0",
- "psr/http-message": "^1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.0",
- "slim/slim": "~3.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Slim\\Csrf\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Josh Lockhart",
- "email": "[email protected]",
- "homepage": "http://joshlockhart.com"
- }
- ],
- "description": "Slim Framework 3 CSRF protection middleware",
- "homepage": "http://slimframework.com",
- "keywords": [
- "csrf",
- "framework",
- "middleware",
- "slim"
- ],
- "time": "2016-12-20 20:45:43"
- },
- {
- "name": "slim/slim",
- "version": "4.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/slimphp/Slim.git",
- "reference": "5abbab075ac7675a715d42d425d4b17112659df0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/slimphp/Slim/zipball/5abbab075ac7675a715d42d425d4b17112659df0",
- "reference": "5abbab075ac7675a715d42d425d4b17112659df0",
- "shasum": ""
- },
- "require": {
- "container-interop/container-interop": "^1.1",
- "nikic/fast-route": "^1.0",
- "php": ">=5.5.0",
- "pimple/pimple": "^3.0",
- "psr/http-message": "^1.0"
- },
- "provide": {
- "psr/http-message-implementation": "1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.0",
- "squizlabs/php_codesniffer": "^2.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Slim\\": "Slim"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Rob Allen",
- "email": "[email protected]",
- "homepage": "http://akrabat.com"
- },
- {
- "name": "Josh Lockhart",
- "email": "[email protected]",
- "homepage": "https://joshlockhart.com"
- },
- {
- "name": "Gabriel Manricks",
- "email": "[email protected]",
- "homepage": "http://gabrielmanricks.com"
- },
- {
- "name": "Andrew Smith",
- "email": "[email protected]",
- "homepage": "http://silentworks.co.uk"
- }
- ],
- "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
- "homepage": "https://slimframework.com",
- "keywords": [
- "api",
- "framework",
- "micro",
- "router"
- ],
- "time": "2017-02-06 09:10:37"
- },
- {
- "name": "slim/twig-view",
- "version": "1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/slimphp/Twig-View.git",
- "reference": "5f9d42133491772ea924ebcef11a6da2b236e33b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/slimphp/Twig-View/zipball/5f9d42133491772ea924ebcef11a6da2b236e33b",
- "reference": "5f9d42133491772ea924ebcef11a6da2b236e33b",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0",
- "pimple/pimple": "~3.0",
- "twig/twig": "~1.18"
- },
- "require-dev": {
- "phpunit/phpunit": "*",
- "psr/http-message": "~0.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Slim\\Views\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Josh Lockhart",
- "email": "[email protected]",
- "homepage": "http://joshlockhart.com"
- }
- ],
- "description": "Slim Framework view helper built on top of the Twig templating component",
- "homepage": "http://slimframework.com",
- "keywords": [
- "framework",
- "slim",
- "template",
- "twig",
- "view"
- ],
- "time": "2015-07-11 13:57:28"
- },
- {
- "name": "smarty/smarty",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/smarty-php/smarty.git",
- "reference": "c7d42e4a327c402897dd587871434888fde1e7a9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/smarty-php/smarty/zipball/c7d42e4a327c402897dd587871434888fde1e7a9",
- "reference": "c7d42e4a327c402897dd587871434888fde1e7a9",
- "shasum": ""
- },
- "require": {
- "php": ">=5.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1.x-dev"
- }
- },
- "autoload": {
- "files": [
- "libs/bootstrap.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0"
- ],
- "authors": [
- {
- "name": "Monte Ohrt",
- "email": "[email protected]"
- },
- {
- "name": "Uwe Tews",
- "email": "[email protected]"
- },
- {
- "name": "Rodney Rehm",
- "email": "[email protected]"
- }
- ],
- "description": "Smarty - the compiling PHP template engine",
- "homepage": "http://www.smarty.net",
- "keywords": [
- "templating"
- ],
- "time": "2016-12-14 21:57:25"
- },
- {
- "name": "symfony/event-dispatcher",
- "version": "2.8.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "3178c0e247b81da8a0265b460ac23bec6d2e6627"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3178c0e247b81da8a0265b460ac23bec6d2e6627",
- "reference": "3178c0e247b81da8a0265b460ac23bec6d2e6627",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.9"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "^2.0.5|~3.0.0",
- "symfony/dependency-injection": "~2.6|~3.0.0",
- "symfony/expression-language": "~2.6|~3.0.0",
- "symfony/stopwatch": "~2.3|~3.0.0"
- },
- "suggest": {
- "symfony/dependency-injection": "",
- "symfony/http-kernel": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.8-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\EventDispatcher\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "[email protected]"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony EventDispatcher Component",
- "homepage": "https://symfony.com",
- "time": "2017-02-18 19:13:35"
- },
- {
- "name": "symfony/intl",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/intl.git",
- "reference": "d45cacfbb4952d2537e5c7cb5617172386b090e6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/intl/zipball/d45cacfbb4952d2537e5c7cb5617172386b090e6",
- "reference": "d45cacfbb4952d2537e5c7cb5617172386b090e6",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9",
- "symfony/polyfill-intl-icu": "~1.0"
- },
- "require-dev": {
- "symfony/filesystem": "~2.8|~3.0"
- },
- "suggest": {
- "ext-intl": "to use the component with locales other than \"en\""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.3-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Intl\\": ""
- },
- "classmap": [
- "Resources/stubs"
- ],
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Bernhard Schussek",
- "email": "[email protected]"
- },
- {
- "name": "Eriksen Costa",
- "email": "[email protected]"
- },
- {
- "name": "Igor Wiedler",
- "email": "[email protected]"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
- "homepage": "https://symfony.com",
- "keywords": [
- "i18n",
- "icu",
- "internationalization",
- "intl",
- "l10n",
- "localization"
- ],
- "time": "2017-02-18 17:35:19"
- },
- {
- "name": "symfony/polyfill",
- "version": "v1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill.git",
- "reference": "ee2c9c2576fdd4a42b024260a1906a9888770c34"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill/zipball/ee2c9c2576fdd4a42b024260a1906a9888770c34",
- "reference": "ee2c9c2576fdd4a42b024260a1906a9888770c34",
- "shasum": ""
- },
- "require": {
- "ircmaxell/password-compat": "~1.0",
- "paragonie/random_compat": "~1.0|~2.0",
- "php": ">=5.3.3",
- "symfony/intl": "~2.3|~3.0"
- },
- "replace": {
- "symfony/polyfill-apcu": "self.version",
- "symfony/polyfill-iconv": "self.version",
- "symfony/polyfill-intl-grapheme": "self.version",
- "symfony/polyfill-intl-icu": "self.version",
- "symfony/polyfill-intl-normalizer": "self.version",
- "symfony/polyfill-mbstring": "self.version",
- "symfony/polyfill-php54": "self.version",
- "symfony/polyfill-php55": "self.version",
- "symfony/polyfill-php56": "self.version",
- "symfony/polyfill-php70": "self.version",
- "symfony/polyfill-util": "self.version",
- "symfony/polyfill-xml": "self.version"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\": "src/"
- },
- "files": [
- "src/Apcu/bootstrap.php",
- "src/Php54/bootstrap.php",
- "src/Php55/bootstrap.php",
- "src/Php56/bootstrap.php",
- "src/Php70/bootstrap.php",
- "src/Iconv/bootstrap.php",
- "src/Intl/Grapheme/bootstrap.php",
- "src/Intl/Icu/bootstrap.php",
- "src/Intl/Normalizer/bootstrap.php",
- "src/Mbstring/bootstrap.php",
- "src/Xml/bootstrap.php"
- ],
- "classmap": [
- "src/Intl/Normalizer/Resources/stubs",
- "src/Php70/Resources/stubs",
- "src/Php54/Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "[email protected]"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfills backporting features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compat",
- "compatibility",
- "polyfill",
- "shim"
- ],
- "time": "2016-05-18 14:27:53"
- },
- {
- "name": "symfony/translation",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "9492b28dc4092ff952c26b8195aaad45526468b0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/9492b28dc4092ff952c26b8195aaad45526468b0",
- "reference": "9492b28dc4092ff952c26b8195aaad45526468b0",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/config": "<2.8"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "~2.8|~3.0",
- "symfony/intl": "~2.8|~3.0",
- "symfony/yaml": "~2.8|~3.0"
- },
- "suggest": {
- "psr/log": "To use logging capability in translator",
- "symfony/config": "",
- "symfony/yaml": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.3-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Translation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "[email protected]"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony Translation Component",
- "homepage": "https://symfony.com",
- "time": "2017-02-18 17:35:19"
- },
- {
- "name": "telegram-bot/api",
- "version": "2.2.6",
- "source": {
- "type": "git",
- "url": "https://github.com/TelegramBot/Api.git",
- "reference": "fd6927584ba77eb8d54c42ae912c387c8d9f5314"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/TelegramBot/Api/zipball/fd6927584ba77eb8d54c42ae912c387c8d9f5314",
- "reference": "fd6927584ba77eb8d54c42ae912c387c8d9f5314",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.0"
- },
- "require-dev": {
- "codeception/codeception": "*",
- "phpunit/phpunit": "4.*",
- "squizlabs/php_codesniffer": "2.*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "TelegramBot\\Api\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ilya Gusev",
- "email": "[email protected]",
- "homepage": "https://php-cat.com",
- "role": "Developer"
- }
- ],
- "description": "PHP Wrapper for Telegram Bot API",
- "homepage": "https://github.com/TelegramBot/Api",
- "keywords": [
- "bot",
- "bot api",
- "php",
- "telegram"
- ],
- "time": "2016-12-12 11:36:44"
- },
- {
- "name": "twig/twig",
- "version": "1.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/twigphp/Twig.git",
- "reference": "b6a16a21f93dc80a48cb140c32d3beb44458d9c3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/twigphp/Twig/zipball/b6a16a21f93dc80a48cb140c32d3beb44458d9c3",
- "reference": "b6a16a21f93dc80a48cb140c32d3beb44458d9c3",
- "shasum": ""
- },
- "require": {
- "php": ">=5.2.7"
- },
- "require-dev": {
- "psr/container": "^1.0",
- "symfony/debug": "~2.7",
- "symfony/phpunit-bridge": "~3.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.32-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Twig_": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "[email protected]",
- "homepage": "http://fabien.potencier.org",
- "role": "Lead Developer"
- },
- {
- "name": "Armin Ronacher",
- "email": "[email protected]",
- "role": "Project Founder"
- },
- {
- "name": "Twig Team",
- "homepage": "http://twig.sensiolabs.org/contributors",
- "role": "Contributors"
- }
- ],
- "description": "Twig, the flexible, fast, and secure template language for PHP",
- "homepage": "http://twig.sensiolabs.org",
- "keywords": [
- "templating"
- ],
- "time": "2017-02-17 19:29:51"
- },
- {
- "name": "vlucas/phpdotenv",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "7ac2c1cef304f5bd5a8d40750fbcbdd49333b9e5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/7ac2c1cef304f5bd5a8d40750fbcbdd49333b9e5",
- "reference": "7ac2c1cef304f5bd5a8d40750fbcbdd49333b9e5",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.9"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8 || ^5.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.4-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Dotenv\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause-Attribution"
- ],
- "authors": [
- {
- "name": "Vance Lucas",
- "email": "[email protected]",
- "homepage": "http://www.vancelucas.com"
- }
- ],
- "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
- "keywords": [
- "dotenv",
- "env",
- "environment"
- ],
- "time": "2017-02-03 22:05:04"
- },
- {
- "name": "voku/anti-xss",
- "version": "1.2.14",
- "source": {
- "type": "git",
- "url": "https://github.com/voku/anti-xss.git",
- "reference": "d4c9a93197b89b51b1aca616fda574017e29ed0d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/voku/anti-xss/zipball/d4c9a93197b89b51b1aca616fda574017e29ed0d",
- "reference": "d4c9a93197b89b51b1aca616fda574017e29ed0d",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0",
- "voku/portable-utf8": "~2.1"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "voku\\helper\\": "src/voku/helper/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "EllisLab Dev Team",
- "homepage": "http://ellislab.com/"
- },
- {
- "name": "Lars Moelleken",
- "email": "[email protected]",
- "homepage": "http://www.moelleken.org/"
- }
- ],
- "description": "anti xss-library",
- "homepage": "https://github.com/voku/anti-xss",
- "keywords": [
- "anti-xss",
- "clean",
- "security",
- "xss"
- ],
- "time": "2016-06-01 23:57:07"
- },
- {
- "name": "voku/portable-utf8",
- "version": "2.1.24",
- "source": {
- "type": "git",
- "url": "https://github.com/voku/portable-utf8.git",
- "reference": "17c394be13374b196d4691c54c5f3ffccca253cf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/voku/portable-utf8/zipball/17c394be13374b196d4691c54c5f3ffccca253cf",
- "reference": "17c394be13374b196d4691c54c5f3ffccca253cf",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0",
- "symfony/polyfill": "1.2.*@dev"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0"
- },
- "suggest": {
- "ext-iconv": "Use iconv for best performance",
- "ext-intl": "Use Intl for best performance",
- "ext-mbstring": "Use Mbstring for best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "voku\\": "src/voku/"
- },
- "files": [
- "bootstrap.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "(Apache-2.0 or GPL-2.0)"
- ],
- "authors": [
- {
- "name": "Hamid Sarfraz",
- "homepage": "http://pageconfig.com/"
- },
- {
- "name": "Lars Moelleken",
- "homepage": "http://www.moelleken.org/"
- },
- {
- "name": "Nicolas Grekas",
- "email": "[email protected]"
- }
- ],
- "description": "Portable UTF-8 library with polyfill / shim for Iconv, Intl, Mbstring, Normalizrer etc.",
- "homepage": "https://github.com/voku/portable-utf8",
- "keywords": [
- "UTF",
- "clean",
- "php",
- "unicode",
- "utf-8",
- "utf8"
- ],
- "time": "2016-06-29 23:42:06"
- },
- {
- "name": "zeuxisoo/slim-whoops",
- "version": "0.5.2",
- "source": {
- "type": "git",
- "url": "https://github.com/zeuxisoo/php-slim-whoops.git",
- "reference": "888bf2f6403ee9d7fac22fe52a8b4baacea72ef6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/zeuxisoo/php-slim-whoops/zipball/888bf2f6403ee9d7fac22fe52a8b4baacea72ef6",
- "reference": "888bf2f6403ee9d7fac22fe52a8b4baacea72ef6",
- "shasum": ""
- },
- "require": {
- "filp/whoops": "2.1.*",
- "php": ">=5.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "4.8.*",
- "slim/slim": "3.6.*",
- "slim/twig-view": "2.1.*"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "Zeuxisoo\\Whoops\\Provider\\Slim": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-2-Clause"
- ],
- "authors": [
- {
- "name": "Zeuxis Lo",
- "email": "[email protected]",
- "homepage": "http://www.not.im/",
- "role": "Developer"
- }
- ],
- "description": "PHP whoops error on slim framework",
- "homepage": "https://github.com/zeuxisoo/php-slim-whoops/",
- "keywords": [
- "error",
- "exception",
- "slim",
- "whoops"
- ],
- "time": "2017-01-09 05:24:59"
- }
- ],
- "packages-dev": [
- {
- "name": "khanamiryan/qrcode-detector-decoder",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
- "reference": "96d5f80680b04803c4f1b69d6e01735e876b80c7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/96d5f80680b04803c4f1b69d6e01735e876b80c7",
- "reference": "96d5f80680b04803c4f1b69d6e01735e876b80c7",
- "shasum": ""
- },
- "require": {
- "php": "^5.6|^7.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "lib/"
- ],
- "files": [
- "lib/common/customFunctions.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ashot Khanamiryan",
- "email": "[email protected]",
- "homepage": "https://github.com/khanamiryan",
- "role": "Developer"
- }
- ],
- "description": "QR code decoder / reader",
- "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder",
- "keywords": [
- "barcode",
- "qr",
- "zxing"
- ],
- "time": "2017-01-13 09:11:46"
- }
- ],
- "aliases": [],
- "minimum-stability": "dev",
- "stability-flags": [],
- "prefer-stable": false,
- "prefer-lowest": false,
- "platform": [],
- "platform-dev": []
- }
|