├── public ├── favicon.ico ├── robots.txt ├── assets │ ├── neverland │ │ └── img │ │ │ ├── lock.png │ │ │ ├── search.png │ │ │ ├── info-sign.png │ │ │ ├── no-preview.png │ │ │ └── exclamation-sign.png │ └── bootstrap │ │ ├── img │ │ ├── favicon.png │ │ └── no-preview.png │ │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff ├── nginx.config └── .htaccess ├── app ├── commands │ └── .gitkeep ├── config │ ├── packages │ │ └── .gitkeep │ └── compile.php ├── controllers │ └── .gitkeep ├── database │ ├── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php │ ├── migrations │ │ └── .gitkeep │ ├── production.sqlite │ └── testing.sqlite ├── start │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── views │ │ └── .gitignore │ └── uploads │ │ └── .gitignore ├── views │ ├── templates │ │ ├── email │ │ │ ├── test.blade.php │ │ │ └── forgot.blade.php │ │ └── api │ │ │ ├── json │ │ │ ├── error.blade.php │ │ │ ├── create.blade.php │ │ │ ├── param.blade.php │ │ │ ├── list.blade.php │ │ │ └── show.blade.php │ │ │ └── xml │ │ │ ├── error.blade.php │ │ │ ├── create.blade.php │ │ │ ├── param.blade.php │ │ │ ├── list.blade.php │ │ │ └── show.blade.php │ └── skins │ │ ├── neverland │ │ ├── common │ │ │ ├── icon.blade.php │ │ │ ├── loader.blade.php │ │ │ ├── pagination.blade.php │ │ │ └── error.blade.php │ │ ├── neverland.png │ │ ├── admin │ │ │ ├── version.blade.php │ │ │ └── layout.blade.php │ │ ├── neverland.info │ │ └── setup │ │ │ └── error.blade.php │ │ └── bootstrap │ │ ├── common │ │ ├── icon.blade.php │ │ ├── loader.blade.php │ │ ├── pagination.blade.php │ │ └── error.blade.php │ │ ├── bootstrap.png │ │ ├── admin │ │ ├── version.blade.php │ │ └── layout.blade.php │ │ ├── setup │ │ └── error.blade.php │ │ └── bootstrap.info └── lang │ ├── zh_cn │ ├── pagination.php │ ├── ajax.php │ ├── reminders.php │ ├── errors.php │ ├── list.php │ ├── antispam.php │ ├── mail.php │ ├── create.php │ └── show.php │ └── en │ └── ajax.php ├── .gitignore ├── vendor ├── psr │ └── log │ │ ├── .gitignore │ │ └── Psr │ │ └── Log │ │ ├── InvalidArgumentException.php │ │ ├── LoggerAwareInterface.php │ │ ├── LogLevel.php │ │ └── LoggerAwareTrait.php ├── sayakb │ ├── akismet │ │ ├── tests │ │ │ └── .gitkeep │ │ ├── .gitignore │ │ ├── vendor │ │ │ ├── autoload.php │ │ │ └── composer │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_files.php │ │ │ │ └── autoload_namespaces.php │ │ └── .travis.yml │ └── captcha │ │ ├── public │ │ ├── .gitkeep │ │ └── assets │ │ │ ├── fonts │ │ │ ├── luxisr.ttf │ │ │ ├── Aller_Rg.ttf │ │ │ ├── ColabBol.otf │ │ │ ├── Philosopher-Bold.ttf │ │ │ ├── Sansation_Bold.ttf │ │ │ └── Sansation_Regular.ttf │ │ │ └── backgrounds │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ └── 12.png │ │ ├── src │ │ ├── config │ │ │ ├── .gitkeep │ │ │ └── config.php │ │ ├── routes.php │ │ ├── validation.php │ │ └── Sayakb │ │ │ └── Captcha │ │ │ └── Facades │ │ │ └── Captcha.php │ │ ├── LICENCE.md │ │ └── vendor │ │ ├── composer │ │ ├── autoload_classmap.php │ │ └── autoload_namespaces.php │ │ └── autoload.php ├── bin │ ├── boris │ └── classpreloader.php ├── predis │ └── predis │ │ ├── VERSION │ │ ├── .gitignore │ │ ├── bin │ │ └── create-single-file │ │ ├── autoload.php │ │ ├── .travis.yml │ │ └── lib │ │ └── Predis │ │ ├── ResponseObjectInterface.php │ │ ├── ClientException.php │ │ └── PredisException.php ├── stack │ └── builder │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ └── .travis.yml ├── phpseclib │ └── phpseclib │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── travis │ │ ├── setup-composer.sh │ │ ├── upload-code-coverage-scrutinizer.sh │ │ └── setup-secure-shell.sh │ │ ├── .scrutinizer.yml │ │ ├── phpseclib │ │ └── openssl.cnf │ │ └── AUTHORS ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ └── textfile.zip │ │ │ ├── smime │ │ │ │ └── CA.srl │ │ │ └── dkim │ │ │ │ └── dkim.test.pub │ │ ├── StreamCollector.php │ │ ├── fixtures │ │ │ └── EsmtpTransportFixture.php │ │ ├── acceptance │ │ │ └── Swift │ │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ │ └── MimePartAcceptanceTest.php │ │ └── unit │ │ │ └── Swift │ │ │ └── Mime │ │ │ ├── SimpleMimeEntityTest.php │ │ │ └── HeaderEncoder │ │ │ └── Base64HeaderEncoderTest.php │ │ ├── .gitignore │ │ ├── .gitattributes │ │ ├── doc │ │ ├── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── index.rst │ │ ├── lib │ │ ├── dependency_maps │ │ │ └── message_deps.php │ │ └── classes │ │ │ └── Swift │ │ │ ├── Events │ │ │ └── EventListener.php │ │ │ └── Signer.php │ │ └── notes │ │ └── APPS ├── monolog │ └── monolog │ │ ├── tests │ │ ├── Monolog │ │ │ └── Handler │ │ │ │ └── Fixtures │ │ │ │ └── .gitkeep │ │ └── bootstrap.php │ │ └── phpunit.xml.dist ├── d11wtq │ └── boris │ │ ├── .gitignore │ │ ├── composer.json │ │ ├── box.json │ │ ├── bin │ │ └── boris │ │ └── lib │ │ ├── Boris │ │ ├── ExportInspector.php │ │ ├── DumpInspector.php │ │ └── Inspector.php │ │ └── autoload.php ├── symfony │ ├── finder │ │ └── Symfony │ │ │ └── Component │ │ │ └── Finder │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat │ │ │ │ └── a.dat │ │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat.copy │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ │ └── .gitignore │ ├── routing │ │ └── Symfony │ │ │ └── Component │ │ │ └── Routing │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── empty.yml │ │ │ │ ├── foo.xml │ │ │ │ ├── foo1.xml │ │ │ │ ├── annotated.php │ │ │ │ ├── nonvalid.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── special_route_name.yml │ │ │ │ ├── withdoctype.xml │ │ │ │ ├── incomplete.yml │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ ├── dumper │ │ │ │ └── url_matcher2.apache │ │ │ │ ├── validresource.yml │ │ │ │ ├── nonvalidnode.xml │ │ │ │ ├── missing_id.xml │ │ │ │ ├── missing_path.xml │ │ │ │ └── AnnotatedClasses │ │ │ │ ├── FooClass.php │ │ │ │ └── AbstractClass.php │ │ │ └── .gitignore │ ├── translation │ │ └── Symfony │ │ │ └── Component │ │ │ └── Translation │ │ │ ├── Tests │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.json │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── non-valid.yml │ │ │ │ ├── resources.yml │ │ │ │ ├── resources.ini │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ ├── dat │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ ├── en.txt │ │ │ │ │ ├── fr.txt │ │ │ │ │ ├── en.res │ │ │ │ │ ├── fr.res │ │ │ │ │ └── resources.dat │ │ │ │ └── res │ │ │ │ │ └── en.res │ │ │ │ ├── malformed.json │ │ │ │ ├── resources.json │ │ │ │ ├── empty-translation.po │ │ │ │ ├── valid.csv │ │ │ │ ├── resources.php │ │ │ │ ├── plurals.po │ │ │ │ ├── resources.csv │ │ │ │ ├── plurals.mo │ │ │ │ ├── encoding.xlf │ │ │ │ ├── resources.mo │ │ │ │ ├── resources.po │ │ │ │ ├── escaped-id.po │ │ │ │ ├── resources.ts │ │ │ │ ├── escaped-id-plurals.po │ │ │ │ ├── non-valid.xlf │ │ │ │ └── withdoctype.xlf │ │ │ └── .gitignore │ ├── console │ │ └── Symfony │ │ │ └── Component │ │ │ └── Console │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── input_definition_1.md │ │ │ │ ├── input_definition_1.txt │ │ │ │ ├── application_run4.txt │ │ │ │ ├── input_argument_1.txt │ │ │ │ ├── input_definition_1.json │ │ │ │ ├── input_option_1.txt │ │ │ │ ├── input_argument_2.txt │ │ │ │ ├── input_option_3.txt │ │ │ │ ├── input_definition_2.txt │ │ │ │ ├── input_definition_3.txt │ │ │ │ ├── input_argument_1.json │ │ │ │ ├── input_argument_3.txt │ │ │ │ ├── input_option_4.txt │ │ │ │ ├── input_option_2.txt │ │ │ │ ├── input_argument_2.json │ │ │ │ ├── input_definition_1.xml │ │ │ │ ├── input_argument_3.json │ │ │ │ ├── input_argument_1.md │ │ │ │ ├── input_option_1.json │ │ │ │ ├── input_definition_2.json │ │ │ │ ├── input_definition_4.txt │ │ │ │ ├── input_option_3.json │ │ │ │ ├── input_option_4.json │ │ │ │ ├── input_argument_2.md │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ ├── command_1.txt │ │ │ │ ├── input_argument_3.md │ │ │ │ ├── input_option_2.json │ │ │ │ ├── command_1.md │ │ │ │ ├── input_argument_1.xml │ │ │ │ ├── input_definition_2.md │ │ │ │ ├── application_renderexception1.txt │ │ │ │ ├── Foo5Command.php │ │ │ │ ├── command_1.json │ │ │ │ ├── input_definition_3.json │ │ │ │ ├── input_option_1.xml │ │ │ │ ├── input_argument_2.xml │ │ │ │ ├── input_option_1.md │ │ │ │ ├── input_option_3.md │ │ │ │ ├── application_renderexception4.txt │ │ │ │ ├── input_option_4.md │ │ │ │ ├── input_option_2.md │ │ │ │ ├── input_option_3.xml │ │ │ │ ├── input_option_4.xml │ │ │ │ ├── BarBucCommand.php │ │ │ │ ├── Foo4Command.php │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ ├── input_definition_3.md │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ ├── input_argument_3.xml │ │ │ │ ├── application_renderexception2.txt │ │ │ │ ├── input_option_2.xml │ │ │ │ ├── input_definition_2.xml │ │ │ │ ├── command_2.txt │ │ │ │ ├── input_definition_4.json │ │ │ │ ├── input_definition_3.xml │ │ │ │ ├── command_1.xml │ │ │ │ ├── input_definition_4.md │ │ │ │ ├── command_2.json │ │ │ │ ├── input_definition_4.xml │ │ │ │ └── DescriptorApplication1.php │ │ │ ├── .gitignore │ │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── dom-crawler │ │ └── Symfony │ │ │ └── Component │ │ │ └── DomCrawler │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── no-extension │ │ │ │ └── windows-1250.html │ │ │ └── .gitignore │ ├── http-kernel │ │ └── Symfony │ │ │ └── Component │ │ │ └── HttpKernel │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── Bundle1Bundle │ │ │ │ ├── bar.txt │ │ │ │ ├── foo.txt │ │ │ │ └── Resources │ │ │ │ │ └── foo.txt │ │ │ │ ├── Bundle2Bundle │ │ │ │ └── foo.txt │ │ │ │ ├── Resources │ │ │ │ ├── FooBundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── BaseBundle │ │ │ │ │ └── hide.txt │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ └── foo.txt │ │ │ │ └── ChildBundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── BaseBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ └── ChildBundle │ │ │ │ └── Resources │ │ │ │ ├── foo.txt │ │ │ │ └── hide.txt │ │ │ └── .gitignore │ ├── debug │ │ └── Symfony │ │ │ └── Component │ │ │ └── Debug │ │ │ ├── .gitignore │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── PEARClass.php │ │ │ │ ├── notPsr0Bis.php │ │ │ │ ├── reallyNotPsr0.php │ │ │ │ ├── RequiredTwice.php │ │ │ │ ├── casemismatch.php │ │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ └── ClassAlias.php │ │ │ └── CHANGELOG.md │ ├── http-foundation │ │ └── Symfony │ │ │ └── Component │ │ │ └── HttpFoundation │ │ │ ├── Tests │ │ │ └── File │ │ │ │ └── Fixtures │ │ │ │ ├── .unknownextension │ │ │ │ ├── directory │ │ │ │ └── .empty │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ │ └── .gitignore │ ├── process │ │ └── Symfony │ │ │ └── Component │ │ │ └── Process │ │ │ ├── .gitignore │ │ │ └── Tests │ │ │ └── SignalListener.php │ ├── browser-kit │ │ └── Symfony │ │ │ └── Component │ │ │ └── BrowserKit │ │ │ └── .gitignore │ ├── filesystem │ │ └── Symfony │ │ │ └── Component │ │ │ └── Filesystem │ │ │ ├── .gitignore │ │ │ └── CHANGELOG.md │ ├── css-selector │ │ └── Symfony │ │ │ └── Component │ │ │ └── CssSelector │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ └── Tests │ │ │ └── XPath │ │ │ └── Fixtures │ │ │ └── lang.xml │ ├── security-core │ │ └── Symfony │ │ │ └── Component │ │ │ └── Security │ │ │ └── Core │ │ │ └── .gitignore │ └── event-dispatcher │ │ └── Symfony │ │ └── Component │ │ └── EventDispatcher │ │ └── .gitignore ├── classpreloader │ └── classpreloader │ │ ├── .gitignore │ │ ├── classpreloader.php │ │ └── src │ │ └── ClassPreloader │ │ └── Parser │ │ ├── DirVisitor.php │ │ └── FileVisitor.php ├── filp │ └── whoops │ │ ├── .gitignore │ │ ├── tests │ │ ├── fixtures │ │ │ ├── template.php │ │ │ └── frame.lines-test.php │ │ ├── deprecated │ │ │ └── Zend │ │ │ │ └── ModuleTest.php │ │ ├── bootstrap.php │ │ └── Whoops │ │ │ └── TestCase.php │ │ ├── .scrutinizer.yml │ │ └── src │ │ └── Whoops │ │ └── Exception │ │ └── ErrorException.php ├── laravel │ └── framework │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── src │ │ └── Illuminate │ │ │ ├── Workbench │ │ │ └── stubs │ │ │ │ ├── gitignore.txt │ │ │ │ ├── .travis.yml │ │ │ │ └── plain.composer.json │ │ │ ├── Session │ │ │ ├── TokenMismatchException.php │ │ │ └── ExistenceAwareInterface.php │ │ │ ├── Routing │ │ │ ├── Generators │ │ │ │ └── stubs │ │ │ │ │ ├── controller.stub │ │ │ │ │ ├── index.stub │ │ │ │ │ ├── create.stub │ │ │ │ │ ├── store.stub │ │ │ │ │ ├── show.stub │ │ │ │ │ ├── destroy.stub │ │ │ │ │ ├── edit.stub │ │ │ │ │ └── update.stub │ │ │ └── Matching │ │ │ │ └── ValidatorInterface.php │ │ │ ├── Database │ │ │ ├── Eloquent │ │ │ │ └── MassAssignmentException.php │ │ │ ├── Connectors │ │ │ │ └── ConnectorInterface.php │ │ │ ├── Query │ │ │ │ └── Processors │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ └── SQLiteProcessor.php │ │ │ └── Migrations │ │ │ │ ├── Migration.php │ │ │ │ └── stubs │ │ │ │ └── blank.stub │ │ │ ├── Support │ │ │ ├── Contracts │ │ │ │ ├── ArrayableInterface.php │ │ │ │ ├── RenderableInterface.php │ │ │ │ ├── JsonableInterface.php │ │ │ │ └── MessageProviderInterface.php │ │ │ └── Facades │ │ │ │ ├── Form.php │ │ │ │ ├── HTML.php │ │ │ │ ├── Log.php │ │ │ │ ├── View.php │ │ │ │ ├── Mail.php │ │ │ │ ├── Redis.php │ │ │ │ ├── URL.php │ │ │ │ ├── App.php │ │ │ │ ├── Event.php │ │ │ │ ├── File.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Request.php │ │ │ │ ├── Route.php │ │ │ │ ├── Artisan.php │ │ │ │ ├── Config.php │ │ │ │ ├── Crypt.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── Paginator.php │ │ │ │ ├── Validator.php │ │ │ │ ├── Queue.php │ │ │ │ ├── SSH.php │ │ │ │ ├── Auth.php │ │ │ │ ├── Cache.php │ │ │ │ ├── DB.php │ │ │ │ ├── Session.php │ │ │ │ └── Blade.php │ │ │ ├── Pagination │ │ │ └── views │ │ │ │ ├── slider-3.php │ │ │ │ ├── slider.php │ │ │ │ └── simple.php │ │ │ ├── Auth │ │ │ └── Reminders │ │ │ │ ├── RemindableInterface.php │ │ │ │ └── RemindableTrait.php │ │ │ ├── Exception │ │ │ └── ExceptionDisplayerInterface.php │ │ │ ├── View │ │ │ └── Engines │ │ │ │ ├── EngineInterface.php │ │ │ │ └── Engine.php │ │ │ ├── Queue │ │ │ └── Connectors │ │ │ │ ├── ConnectorInterface.php │ │ │ │ ├── SyncConnector.php │ │ │ │ └── SqsConnector.php │ │ │ ├── Config │ │ │ └── EnvironmentVariablesLoaderInterface.php │ │ │ ├── Filesystem │ │ │ └── FilesystemServiceProvider.php │ │ │ └── Events │ │ │ ├── EventServiceProvider.php │ │ │ └── Subscriber.php │ │ └── .travis.yml ├── geshi │ └── geshi │ │ └── xbasic.php ├── nikic │ └── php-parser │ │ ├── lib │ │ ├── PHPParser │ │ │ ├── Comment │ │ │ │ └── Doc.php │ │ │ ├── Node │ │ │ │ ├── Expr.php │ │ │ │ ├── Stmt.php │ │ │ │ ├── Scalar.php │ │ │ │ ├── Expr │ │ │ │ │ └── Cast │ │ │ │ │ │ ├── Array.php │ │ │ │ │ │ ├── Bool.php │ │ │ │ │ │ ├── Int.php │ │ │ │ │ │ ├── Unset.php │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ ├── Object.php │ │ │ │ │ │ └── String.php │ │ │ │ ├── Stmt │ │ │ │ │ └── TraitUseAdaptation.php │ │ │ │ └── Scalar │ │ │ │ │ ├── DirConst.php │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ ├── FileConst.php │ │ │ │ │ ├── FuncConst.php │ │ │ │ │ ├── LineConst.php │ │ │ │ │ ├── NSConst.php │ │ │ │ │ ├── TraitConst.php │ │ │ │ │ └── MethodConst.php │ │ │ ├── Builder.php │ │ │ ├── PrettyPrinter │ │ │ │ └── Zend.php │ │ │ ├── Serializer.php │ │ │ ├── Unserializer.php │ │ │ └── NodeVisitorAbstract.php │ │ └── bootstrap.php │ │ ├── test │ │ └── code │ │ │ ├── prettyPrinter │ │ │ ├── include.test │ │ │ ├── onlyPHP.file-test │ │ │ ├── onlyInlineHTML.file-test │ │ │ └── closure.test │ │ │ └── parser │ │ │ ├── stmt │ │ │ ├── tryCatch.test-fail │ │ │ ├── haltCompilerInvalidSyntax.test-fail │ │ │ ├── namespace │ │ │ │ ├── nested.test-fail │ │ │ │ ├── outsideStmt.test-fail │ │ │ │ └── mix.test-fail │ │ │ ├── haltCompilerOutermostScope.test-fail │ │ │ ├── loop │ │ │ │ ├── do.test │ │ │ │ └── while.test │ │ │ ├── class │ │ │ │ └── final.test │ │ │ ├── inlineHTML.test │ │ │ └── unset.test │ │ │ └── expr │ │ │ ├── print.test │ │ │ ├── clone.test │ │ │ └── errorSuppress.test │ │ └── .travis.yml ├── rmccue │ └── requests │ │ ├── .coveralls.yml │ │ ├── tests │ │ └── Transport │ │ │ ├── cURL.php │ │ │ └── fsockopen.php │ │ ├── examples │ │ ├── get.php │ │ ├── post.php │ │ └── basic-auth.php │ │ └── library │ │ └── Requests │ │ └── Exception │ │ └── HTTP │ │ ├── 410.php │ │ ├── 409.php │ │ ├── 403.php │ │ ├── 404.php │ │ ├── 400.php │ │ ├── 401.php │ │ └── 502.php ├── ircmaxell │ └── password-compat │ │ ├── .travis.yml │ │ └── version-test.php ├── jeremeamia │ └── SuperClosure │ │ ├── .gitignore │ │ ├── tests │ │ └── bootstrap.php │ │ └── .travis.yml ├── patchwork │ └── utf8 │ │ ├── class │ │ └── Patchwork │ │ │ └── PHP │ │ │ └── Shim │ │ │ └── charset │ │ │ ├── from.big5.ser │ │ │ ├── from.cp037.ser │ │ │ ├── from.cp424.ser │ │ │ ├── from.cp437.ser │ │ │ ├── from.cp500.ser │ │ │ ├── from.cp737.ser │ │ │ ├── from.cp775.ser │ │ │ ├── from.cp850.ser │ │ │ ├── from.cp852.ser │ │ │ ├── from.cp855.ser │ │ │ ├── from.cp856.ser │ │ │ ├── from.cp857.ser │ │ │ ├── from.cp860.ser │ │ │ ├── from.cp861.ser │ │ │ ├── from.cp862.ser │ │ │ ├── from.cp863.ser │ │ │ ├── from.cp864.ser │ │ │ ├── from.cp865.ser │ │ │ ├── from.cp866.ser │ │ │ ├── from.cp869.ser │ │ │ ├── from.cp874.ser │ │ │ ├── from.cp875.ser │ │ │ ├── from.cp932.ser │ │ │ ├── from.cp936.ser │ │ │ ├── from.cp949.ser │ │ │ ├── from.cp950.ser │ │ │ ├── to.mazovia.ser │ │ │ ├── to.stdenc.ser │ │ │ ├── to.symbol.ser │ │ │ ├── from.cp1006.ser │ │ │ ├── from.cp1026.ser │ │ │ ├── from.koi8-r.ser │ │ │ ├── from.koi8-u.ser │ │ │ ├── from.mazovia.ser │ │ │ ├── from.nextstep.ser │ │ │ ├── from.stdenc.ser │ │ │ ├── from.symbol.ser │ │ │ ├── from.turkish.ser │ │ │ ├── from.x-mac-ce.ser │ │ │ ├── from.zdingbat.ser │ │ │ ├── to.zdingbat.ser │ │ │ ├── from.iso-8859-1.ser │ │ │ ├── from.iso-8859-2.ser │ │ │ ├── from.iso-8859-3.ser │ │ │ ├── from.iso-8859-4.ser │ │ │ ├── from.iso-8859-5.ser │ │ │ ├── from.iso-8859-6.ser │ │ │ ├── from.iso-8859-7.ser │ │ │ ├── from.iso-8859-8.ser │ │ │ ├── from.iso-8859-9.ser │ │ │ ├── from.iso-8859-10.ser │ │ │ ├── from.iso-8859-11.ser │ │ │ ├── from.iso-8859-13.ser │ │ │ ├── from.iso-8859-14.ser │ │ │ ├── from.iso-8859-15.ser │ │ │ ├── from.iso-8859-16.ser │ │ │ ├── from.windows-1250.ser │ │ │ ├── from.windows-1251.ser │ │ │ ├── from.windows-1252.ser │ │ │ ├── from.windows-1253.ser │ │ │ ├── from.windows-1254.ser │ │ │ ├── from.windows-1255.ser │ │ │ ├── from.windows-1256.ser │ │ │ ├── from.windows-1257.ser │ │ │ ├── from.windows-1258.ser │ │ │ ├── from.x-mac-greek.ser │ │ │ ├── from.x-mac-roman.ser │ │ │ ├── from.x-mac-cyrillic.ser │ │ │ └── from.x-mac-icelandic.ser │ │ └── .travis.yml ├── autoload.php ├── lusitanian │ └── OAuth │ │ ├── Common │ │ ├── Exception │ │ │ └── Exception.php │ │ ├── Storage │ │ │ └── Exception │ │ │ │ ├── StorageException.php │ │ │ │ └── TokenNotFoundException.php │ │ ├── Http │ │ │ └── Exception │ │ │ │ └── TokenResponseException.php │ │ ├── Token │ │ │ └── Exception │ │ │ │ └── ExpiredTokenException.php │ │ └── Consumer │ │ │ └── CredentialsInterface.php │ │ ├── OAuth2 │ │ ├── Token │ │ │ ├── TokenInterface.php │ │ │ └── StdOAuth2Token.php │ │ └── Service │ │ │ └── Exception │ │ │ ├── InvalidScopeException.php │ │ │ └── MissingRefreshTokenException.php │ │ ├── bootstrap.php │ │ └── OAuth1 │ │ └── Signature │ │ └── Exception │ │ └── UnsupportedHashAlgorithmException.php ├── composer │ ├── include_paths.php │ ├── autoload_psr4.php │ └── autoload_files.php └── googleanalytics │ └── autoload.php ├── .travis.yml └── PRIVACY.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | app/config/database.php 2 | -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/classpreloader/classpreloader/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/classpreloader.php: -------------------------------------------------------------------------------- 1 | ../classpreloader/classpreloader/classpreloader.php -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/skins/neverland/common/icon.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/filp/whoops/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | report/* 3 | phpunit.xml 4 | composer.lock 5 | -------------------------------------------------------------------------------- /vendor/laravel/framework/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | /tests export-ignore 3 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Symfony/Component/DomCrawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle2Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/FooBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | route: string 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/BaseBundle/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/ChildBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /app/views/skins/bootstrap/common/icon.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/process/Symfony/Component/Process/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /app/database/testing.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/app/database/testing.sqlite -------------------------------------------------------------------------------- /app/views/templates/api/json/error.blade.php: -------------------------------------------------------------------------------- 1 | { 2 | "result": 3 | { 4 | "error": {{ $error }} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /vendor/symfony/browser-kit/Symfony/Component/BrowserKit/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Symfony/Component/DomCrawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/Symfony/Component/Filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /vendor/geshi/geshi/xbasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/vendor/geshi/geshi/xbasic.php -------------------------------------------------------------------------------- /vendor/laravel/framework/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.phar 3 | composer.lock 4 | .DS_Store 5 | Thumbs.db 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/css-selector/Symfony/Component/CssSelector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/security-core/Symfony/Component/Security/Core/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" " 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.json: -------------------------------------------------------------------------------- 1 | {"arguments":[],"options":[]} 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- 1 | --option_name (-o) 2 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/special_route_name.yml: -------------------------------------------------------------------------------- 1 | "#$péß^a|": 2 | path: "true" 3 | -------------------------------------------------------------------------------- /app/lang/zh_cn/pagination.php: -------------------------------------------------------------------------------- 1 | '« 上一页', 5 | 'next' => '下一页 »', 6 | ); 7 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/acceptance.conf.php 2 | /tests/smoke.conf.php 3 | /build/* 4 | /vendor/ 5 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty-translation.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgstr "" 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/packagelist.txt: -------------------------------------------------------------------------------- 1 | en.res 2 | fr.res 3 | -------------------------------------------------------------------------------- /public/assets/neverland/img/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/public/assets/neverland/img/lock.png -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Workbench/stubs/gitignore.txt: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.phar 3 | composer.lock 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Comment/Doc.php: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | --option_name (-o) option description 2 | -------------------------------------------------------------------------------- /app/views/templates/api/json/create.blade.php: -------------------------------------------------------------------------------- 1 | { 2 | "result": 3 | { 4 | "id": {{ $urlkey }}, 5 | "hash": {{ $hash }} 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /public/assets/bootstrap/img/no-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/public/assets/bootstrap/img/no-preview.png -------------------------------------------------------------------------------- /public/assets/neverland/img/info-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/public/assets/neverland/img/info-sign.png -------------------------------------------------------------------------------- /public/assets/neverland/img/no-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/public/assets/neverland/img/no-preview.png -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Node/Expr.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - "5.4" 5 | - "5.5" 6 | - "5.6" 7 | 8 | branches: 9 | only: 10 | - "master" 11 | -------------------------------------------------------------------------------- /vendor/filp/whoops/tests/fixtures/template.php: -------------------------------------------------------------------------------- 1 | slug("hello world!"); ?> 2 | 3 | My name is escape($name) ?> 4 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Node/Scalar.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.txt: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/incomplete.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | defaults: { _controller: MyBlogBundle:Blog:show } 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalidkeys.yml: -------------------------------------------------------------------------------- 1 | someroute: 2 | resource: path/to/some.yml 3 | name_prefix: test_ 4 | -------------------------------------------------------------------------------- /public/assets/neverland/img/exclamation-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/public/assets/neverland/img/exclamation-sign.png -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Array.php: -------------------------------------------------------------------------------- 1 | Options: 2 | --option_name (-o) 3 | -------------------------------------------------------------------------------- /app/views/templates/api/xml/error.blade.php: -------------------------------------------------------------------------------- 1 | {{ '' }} 2 | 3 | 4 | {{ $error }} 5 | 6 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Double.php: -------------------------------------------------------------------------------- 1 | argument_name argument description (default: "default_value") 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | --option_name (-o) option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/Tests/Fixtures/notPsr0Bis.php: -------------------------------------------------------------------------------- 1 | '您正在使用最新版本的Sticky Notes', 5 | 'version_old' => '有一个更新的Sticky Notes版本可用', 6 | 'error' => '错误', 7 | ); 8 | -------------------------------------------------------------------------------- /app/views/templates/api/xml/create.blade.php: -------------------------------------------------------------------------------- 1 | {{ '' }} 2 | 3 | 4 | {{ $urlkey }} 5 | {{ $hash }} 6 | 7 | -------------------------------------------------------------------------------- /public/assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/public/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/controller.stub: -------------------------------------------------------------------------------- 1 | --option_name (-o) option description (default: "default_value") 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/Tests/Fixtures/RequiredTwice.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ Lang::get('global.loading') }} 4 | 5 | -------------------------------------------------------------------------------- /vendor/filp/whoops/tests/fixtures/frame.lines-test.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/lang/zh_cn/reminders.php: -------------------------------------------------------------------------------- 1 | '密码不能少于六个字符且必须与确认密码相同。', 5 | 'user' => '不能找到使用此邮箱的用户。', 6 | 'token' => '此密码重置令牌非法。', 7 | 'sent' => '密码提醒已发送!', 8 | ); 9 | -------------------------------------------------------------------------------- /app/views/skins/bootstrap/common/loader.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ Lang::get('global.loading') }} 4 | 5 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/tryCatch.test-fail: -------------------------------------------------------------------------------- 1 | Cannot use try without catch or finally 2 | ----- 3 | 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.json: -------------------------------------------------------------------------------- 1 | {"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false} 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/encoding.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/encoding.xlf -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.mo -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | --option_name (-o) 6 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/expr/print.test: -------------------------------------------------------------------------------- 1 | Print 2 | ----- 3 | ' }} 2 | 3 | 4 | 5 | @foreach ($values as $value) 6 | {{ $value }} 7 | @endforeach 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/sayakb/akismet/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | 4 | Aliases: alias1, alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.md: -------------------------------------------------------------------------------- 1 | **argument_name:** 2 | 3 | * Name: argument_name 4 | * Is required: no 5 | * Is array: no 6 | * Description: argument description 7 | * Default: `'default_value'` 8 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/en.res -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/fr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/fr.res -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/res/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdtianyu/sticky-notes/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/res/en.res -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Content-Transfer-Encoding: 8bit\n" 5 | "Language: en\n" 6 | 7 | msgid "foo" 8 | msgstr "bar" -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/show.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Display the specified resource. 3 | * 4 | * @param int $id 5 | * @return Response 6 | */ 7 | public function show($id) 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /vendor/lusitanian/OAuth/OAuth2/Token/TokenInterface.php: -------------------------------------------------------------------------------- 1 | content .= $arg; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.json: -------------------------------------------------------------------------------- 1 | {"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"option description","default":"default_value"} 2 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/expr/errorSuppress.test: -------------------------------------------------------------------------------- 1 | Error suppression 2 | ----- 3 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments: 2 | 3 | **argument_name:** 4 | 5 | * Name: argument_name 6 | * Is required: yes 7 | * Is array: no 8 | * Description: 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Builder.php: -------------------------------------------------------------------------------- 1 | '你未被授权访问该资源。', 5 | 403 => '该资源被禁止访问。', 6 | 404 => '页面不存在。', 7 | 405 => '不允许此HTTP请求。', 8 | 418 => '列表不包含任何条目。', 9 | 503 => '站点正在维护,请稍候。', 10 | 'default' => '出现错误,请稍候重试。', 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/destroy.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Remove the specified resource from storage. 3 | * 4 | * @param int $id 5 | * @return Response 6 | */ 7 | public function destroy($id) 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/edit.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Show the form for editing the specified resource. 3 | * 4 | * @param int $id 5 | * @return Response 6 | */ 7 | public function edit($id) 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/update.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Update the specified resource in storage. 3 | * 4 | * @param int $id 5 | * @return Response 6 | */ 7 | public function update($id) 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/AUTHORS: -------------------------------------------------------------------------------- 1 | phpseclib Lead Developer: TerraFrost (Jim Wigginton) 2 | 3 | phpseclib Developers: monnerat (Patrick Monnerat) 4 | bantu (Andreas Fischer) 5 | petrich (Hans-Jürgen Petrich) 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo5Command.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /public/nginx.config: -------------------------------------------------------------------------------- 1 | # Redirect Trailing Slashes... 2 | if (!-d $request_filename) { 3 | rewrite ^/(.+)/$ /$1 permanent; 4 | } 5 | 6 | # Handle Front Controller... 7 | if (!-e $request_filename) { 8 | rewrite ^/(.*)$ /index.php?/$1 last; 9 | break; 10 | } 11 | -------------------------------------------------------------------------------- /vendor/filp/whoops/tests/deprecated/Zend/ModuleTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(class_exists('\Whoops\Module')); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/escaped-id.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Content-Transfer-Encoding: 8bit\n" 5 | "Language: en\n" 6 | 7 | msgid "escaped \"foo\"" 8 | msgstr "escaped \"bar\"" 9 | -------------------------------------------------------------------------------- /vendor/patchwork/utf8/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - hhvm-nightly 9 | 10 | script: 11 | - phpunit --coverage-text 12 | - phpunit --group unicode --coverage-text 13 | 14 | matrix: 15 | fast_finish: true 16 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: no 6 | * Is value required: no 7 | * Is multiple: no 8 | * Description: 9 | * Default: `false` 10 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerOutermostScope.test-fail: -------------------------------------------------------------------------------- 1 | __halt_compiler can only be used from outermost scope 2 | ----- 3 | $baseDir . '/src/', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/stack/builder/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | * 1.0.2 (2014-05-18) 5 | 6 | * Validate missing arguments (@bajbnet). 7 | 8 | * 1.0.1 (2013-10-25) 9 | 10 | * Lower PHP requirement to 5.3. 11 | 12 | * 1.0.0 (2013-08-02) 13 | 14 | * Initial release. 15 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/monolog/monolog/src/Monolog'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/lusitanian/OAuth/Common/Storage/Exception/StorageException.php: -------------------------------------------------------------------------------- 1 | '显示便签', 5 | 'filter' => '过滤', 6 | 'filter_now' => '当前', 7 | 'filter_week' => '最近7天', 8 | 'filter_month' => '最近30天', 9 | 'filter_year' => '最近365天', 10 | 'filter_all' => '全部', 11 | 'search' => '搜索', 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/ircmaxell/password-compat/version-test.php: -------------------------------------------------------------------------------- 1 | register(); 14 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/loop/do.test: -------------------------------------------------------------------------------- 1 | Do loop 2 | ----- 3 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `'default_value'` 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call('UserTableSeeder'); 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /app/views/skins/neverland/admin/version.blade.php: -------------------------------------------------------------------------------- 1 | @if ($updated) 2 | 3 | @else 4 | 5 | @endif 6 | -------------------------------------------------------------------------------- /app/views/templates/api/json/list.blade.php: -------------------------------------------------------------------------------- 1 | { 2 | "result": 3 | { 4 | "pastes": [ 5 | @foreach ($pastes as $paste) 6 | {{ $paste['urlkey'] }}{{ $iterator++ < count($pastes) - 1 ? ',' : NULL }} 7 | @endforeach 8 | ], 9 | "count": {{ $count }}, 10 | "pages": {{ $pages }} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Contracts/ArrayableInterface.php: -------------------------------------------------------------------------------- 1 | setName('bar:buc'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo4Command.php: -------------------------------------------------------------------------------- 1 | setName('foo3:bar:toh'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [Exception] 5 | コマンドの実行中にエラーが 6 | 発生しました。 7 | 8 | 9 | 10 | foo 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.md: -------------------------------------------------------------------------------- 1 | ### Options: 2 | 3 | **option_name:** 4 | 5 | * Name: `--option_name` 6 | * Shortcut: `-o` 7 | * Accept value: no 8 | * Is value required: no 9 | * Is multiple: no 10 | * Description: 11 | * Default: `false` 12 | -------------------------------------------------------------------------------- /vendor/laravel/framework/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.4 5 | - 5.5 6 | - 5.6 7 | - hhvm 8 | 9 | before_script: 10 | - travis_retry composer self-update 11 | - travis_retry composer install --prefer-source --no-interaction --dev 12 | 13 | script: vendor/bin/phpunit --verbose 14 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/PrettyPrinter/Zend.php: -------------------------------------------------------------------------------- 1 | ' }} 2 | 3 | 4 | 5 | @foreach ($pastes as $paste) 6 | {{ $paste['urlkey'] }} 7 | @endforeach 8 | 9 | {{ $count }} 10 | {{ $pages }} 11 | 12 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Pagination/views/slider-3.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | getLastPage() > 1): ?> 6 |
    7 | render(); ?> 8 |
9 | 10 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Contracts/RenderableInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | resources 5 | 6 | foo 7 | bar 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | default_value 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/views/templates/api/json/show.blade.php: -------------------------------------------------------------------------------- 1 | { 2 | "result": 3 | { 4 | "id": {{ $urlkey }}, 5 | "author": {{ $author }}, 6 | "timestamp": {{ $timestamp }}, 7 | "language": {{ $language }}, 8 | "title": {{ $title }}, 9 | "data": {{ $data }}, 10 | "project": {{ $project }}, 11 | "hits": {{ $hits }} 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/lang/zh_cn/antispam.php: -------------------------------------------------------------------------------- 1 | '您必须为这条便签选择一个语言而不是\'text\'。', 5 | 'php' => '您的IP地址在恶意IP列表中。', 6 | 'ipban' => '您的IP已被禁止。', 7 | 'noflood' => '请再次发布便签时保持5秒间隔。', 8 | 'censor' => '您发布的内容包含敏感词。', 9 | 'token' => '无效的令牌,请重新发布。', 10 | 'akismet' => '您发布的内容出发了我们的垃圾信息过滤器,便签已被丢弃。', 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/lusitanian/OAuth/Common/Token/Exception/ExpiredTokenException.php: -------------------------------------------------------------------------------- 1 | '密码重置通知', 5 | 'hello_user' => '您好 %s,', 6 | 'password_reset' => '您的帐户 %s 密码已被重置。', 7 | 'new_password' => '您的新密码是: %s', 8 | 'click_login' => '点击此处登录: %s', 9 | 'autogen_mail' => '这是自动生成的邮件。请不要回复此邮件。', 10 | 'share_subject' => '%s: %s', 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Auth/Reminders/RemindableInterface.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | getLastPage() > 1): ?> 6 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/validresource.yml: -------------------------------------------------------------------------------- 1 | _blog: 2 | resource: validpattern.yml 3 | prefix: /{foo} 4 | defaults: { 'foo': '123' } 5 | requirements: { 'foo': '\d+' } 6 | options: { 'foo': 'bar' } 7 | host: "" 8 | condition: 'context.getMethod() == "POST"' 9 | -------------------------------------------------------------------------------- /vendor/filp/whoops/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 5 | * 6 | * Bootstraper for PHPUnit tests. 7 | */ 8 | error_reporting(E_ALL | E_STRICT); 9 | $loader = require_once __DIR__ . '/../vendor/autoload.php'; 10 | $loader->add('Whoops\\', __DIR__); 11 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Serializer.php: -------------------------------------------------------------------------------- 1 | run(); 11 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectorInterface.php: -------------------------------------------------------------------------------- 1 | 3 | @else 4 | 5 | @endif 6 | 7 | -------------------------------------------------------------------------------- /app/views/skins/bootstrap/common/pagination.blade.php: -------------------------------------------------------------------------------- 1 | {? $presenter = new Illuminate\Pagination\BootstrapPresenter($paginator) ?} 2 | 3 | @if ($paginator->getLastPage() > 1) 4 |
5 |
6 |
    7 | {{ $presenter->render() }} 8 |
9 |
10 |
11 | @endif 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /vendor/d11wtq/boris/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "d11wtq/boris", 3 | "require": { 4 | "php": ">=5.3.0" 5 | }, 6 | "suggest": { 7 | "ext-readline": "*", 8 | "ext-pcntl": "*", 9 | "ext-posix": "*" 10 | }, 11 | "autoload": { 12 | "psr-0": {"Boris": "lib"} 13 | }, 14 | "bin": ["bin/boris"] 15 | } 16 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Session/ExistenceAwareInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/escaped-id-plurals.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Content-Transfer-Encoding: 8bit\n" 5 | "Language: en\n" 6 | 7 | msgid "escaped \"foo\"" 8 | msgid_plural "escaped \"foos\"" 9 | msgstr[0] "escaped \"bar\"" 10 | msgstr[1] "escaped \"bars\"" 11 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Auth/Reminders/RemindableTrait.php: -------------------------------------------------------------------------------- 1 | email; 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /vendor/stack/builder/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - hhvm 9 | 10 | before_script: 11 | - composer self-update 12 | - composer install --no-interaction --prefer-source 13 | 14 | script: phpunit --coverage-text 15 | 16 | matrix: 17 | allow_failures: 18 | - php: hhvm 19 | fast_finish: true 20 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.txt: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command2 [-o|--option_name] argument_name 3 | 4 | Arguments: 5 | argument_name 6 | 7 | Options: 8 | --option_name (-o) 9 | 10 | Help: 11 | command 2 help 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.json: -------------------------------------------------------------------------------- 1 | {"arguments":{"argument_name":{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null}},"options":{"option_name":{"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false}}} 2 | -------------------------------------------------------------------------------- /vendor/lusitanian/OAuth/OAuth1/Signature/Exception/UnsupportedHashAlgorithmException.php: -------------------------------------------------------------------------------- 1 | array($baseDir . '/src'), 10 | 'Illuminate\\Support' => array($vendorDir . '/illuminate/support'), 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/notes/APPS: -------------------------------------------------------------------------------- 1 | Applications I need to test with 2 | --------------------------------- 3 | 4 | Standalone (can read .eml files): 5 | --------------------------------- 6 | Microsoft Entourage (can assume same as outlook) 7 | Mozilla Thunderbird 8 | Apple Mail 9 | 10 | Web-based: 11 | ---------- 12 | Hotmail 13 | Gmail 14 | Yahoo! 15 | Mail2Web 16 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Exception/ExceptionDisplayerInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/View/Engines/EngineInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | bar 8 | 9 | -------------------------------------------------------------------------------- /app/views/skins/neverland/common/pagination.blade.php: -------------------------------------------------------------------------------- 1 | {? $presenter = new Illuminate\Pagination\BootstrapPresenter($paginator) ?} 2 | 3 | @if ($paginator->getLastPage() > 1) 4 |
5 |
6 | 11 |
12 |
13 | @endif 14 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Form.php: -------------------------------------------------------------------------------- 1 | apply($boris); 12 | 13 | $options = new \Boris\CLIOptionsHandler(); 14 | $options->handle($boris); 15 | 16 | $boris->start(); 17 | -------------------------------------------------------------------------------- /vendor/d11wtq/boris/lib/Boris/ExportInspector.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/View.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/views/skins/neverland/neverland.info: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Neverland", 3 | "themeVersion" : "1.1", 4 | "minCoreVersion" : "1.0", 5 | "description" : "Neverland is a theme built on Bootstrap 2.x for KDE websites. It is a clean and crisp responsive theme and is used across all major kde.org websites.", 6 | "author" : "Sayak Banerjee", 7 | "authorWebsite" : "http://sayakbanerjee.com" 8 | } 9 | -------------------------------------------------------------------------------- /app/views/templates/api/xml/show.blade.php: -------------------------------------------------------------------------------- 1 | {{ '' }} 2 | 3 | 4 | {{ $urlkey }} 5 | {{ $author }} 6 | {{ $timestamp }} 7 | {{ $language }} 8 | {{ $title }} 9 | {{ $data }} 10 | {{ $project }} 11 | {{ $hits }} 12 | 13 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Mail.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | require __DIR__.'/lib/Predis/Autoloader.php'; 13 | 14 | Predis\Autoloader::register(); 15 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerAwareInterface.php: -------------------------------------------------------------------------------- 1 | '设为私有', 5 | 'expire_30mins' => '保留30分钟', 6 | 'expire_6hrs' => '保留6小时', 7 | 'expire_1day' => '保留1天', 8 | 'expire_1week' => '保留1周', 9 | 'expire_1month' => '保留1月', 10 | 'expire_1year' => '保留1年', 11 | 'expire_forever' => '永久', 12 | 'click_for_paste' => '点击此处查看您的便签: %s', 13 | 'revise_private' => '您不能修改私有便签', 14 | ); 15 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/App.php: -------------------------------------------------------------------------------- 1 | 'application/json')); 11 | 12 | // Check what we received 13 | var_dump($request); -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Artisan.php: -------------------------------------------------------------------------------- 1 | 'something')); 11 | 12 | // Check what we received 13 | var_dump($request); -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Lang.php: -------------------------------------------------------------------------------- 1 | 5 |
6 | 9 |
10 | 11 |
12 | @include('skins.bootstrap.common.alerts') 13 | @yield('module') 14 |
15 | 16 | @stop 17 | -------------------------------------------------------------------------------- /app/views/skins/bootstrap/setup/error.blade.php: -------------------------------------------------------------------------------- 1 | @extends('skins.bootstrap.setup.page') 2 | 3 | @section('body') 4 |
5 |
6 | {{ Lang::get('setup.error_title') }} 7 | 8 |

{{ Lang::get('setup.error_exp') }}

9 | 10 |
11 | {{ Session::get('setup.error') }} 12 |
13 |
14 |
15 | @stop 16 | -------------------------------------------------------------------------------- /app/views/skins/neverland/admin/layout.blade.php: -------------------------------------------------------------------------------- 1 | @extends("skins.neverland.common.{$container}") 2 | 3 | @section('body') 4 |
5 |
6 | 9 |
10 | 11 |
12 | @include('skins.neverland.common.alerts') 13 | @yield('module') 14 |
15 |
16 | @stop 17 | -------------------------------------------------------------------------------- /app/views/templates/email/forgot.blade.php: -------------------------------------------------------------------------------- 1 |

{{ sprintf(Lang::get('mail.hello_user'), $name) }}

2 | 3 |

4 | {{ sprintf(Lang::get('mail.password_reset'), $site['general']['fqdn']) }} 5 |
6 | {{ sprintf(Lang::get('mail.new_password'), $password) }} 7 |

8 | 9 |

{{ sprintf(Lang::get('mail.click_login'), link_to('user/login')) }}

10 |
11 | 12 | {{ Lang::get('mail.autogen_mail') }} 13 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Paginator.php: -------------------------------------------------------------------------------- 1 | 6 | B 7 | 10 | 5 |
6 | {{ Lang::get('setup.error_title') }} 7 | 8 |

{{ Lang::get('setup.error_exp') }}

9 | 10 |
11 | {{ Session::get('setup.error') }} 12 |
13 |
14 | 15 | @stop 16 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Redirect Trailing Slashes... 9 | RewriteRule ^(.*)/$ /$1 [L,R=301] 10 | 11 | # Handle Front Controller... 12 | RewriteCond %{REQUEST_FILENAME} !-d 13 | RewriteCond %{REQUEST_FILENAME} !-f 14 | RewriteRule ^ index.php [L] 15 | 16 | -------------------------------------------------------------------------------- /vendor/d11wtq/boris/lib/Boris/DumpInspector.php: -------------------------------------------------------------------------------- 1 | 5 |
6 |
7 |
8 | {{ HTML::image(View::asset('img/exclamation-sign.png')) }} 9 |

{{ Lang::get('errors.'.$errCode) }}

10 |
11 |
12 |
13 | 14 | @stop 15 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Auth.php: -------------------------------------------------------------------------------- 1 | 2 | a 3 | b 4 | c 5 | d 6 | e 7 | f 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/lusitanian/OAuth/OAuth2/Service/Exception/InvalidScopeException.php: -------------------------------------------------------------------------------- 1 | 5 | * Released under the MIT license. 6 | */ 7 | 8 | namespace OAuth\OAuth2\Service\Exception; 9 | 10 | use OAuth\Common\Exception\Exception; 11 | 12 | /** 13 | * Exception thrown when a scope provided to a service is invalid. 14 | */ 15 | class InvalidScopeException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Cache.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | descriptor:command1 4 | command 1 description 5 | command 1 help 6 | 7 | alias1 8 | alias2 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/views/skins/bootstrap/common/error.blade.php: -------------------------------------------------------------------------------- 1 | @extends("skins.bootstrap.common.{$container}") 2 | 3 | @section('body') 4 |
5 |
6 |
7 |
8 |

9 |

{{ Lang::get('errors.'.$errCode) }}

10 |
11 |
12 |
13 |
14 | @stop 15 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Session.php: -------------------------------------------------------------------------------- 1 | 'captcha', 6 | 'fontsizes' => array(14, 15, 16, 17, 18), 7 | 'length' => 5, 8 | 'width' => 120, 9 | 'height' => 30, 10 | 'space' => 20, 11 | 'type' => 'alnum', 12 | 'colors' => array('128,23,23', '128,23,22', '33,67,87', '67,70,83', '31,56,163', '48,109,22', '165,42,166', '18,95,98', '213,99,8'), 13 | 'sensitive' => FALSE 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Exception/ErrorException.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | 7 | namespace Whoops\Exception; 8 | use ErrorException as BaseErrorException; 9 | 10 | /** 11 | * Wraps ErrorException; mostly used for typing (at least now) 12 | * to easily cleanup the stack trace of redundant info. 13 | */ 14 | class ErrorException extends BaseErrorException {} 15 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/non-valid.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | foo 7 | bar 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/d11wtq/boris/lib/autoload.php: -------------------------------------------------------------------------------- 1 | lastRendered; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/loop/while.test: -------------------------------------------------------------------------------- 1 | While loop 2 | ----- 3 | '原始数据', 5 | 'wrap' => '刷新', 6 | 'revise' => '修改', 7 | 'version_history' => '版本历史', 8 | 'revision_id' => '修订 #', 9 | 'created_at' => '创建于', 10 | 'diff' => '比较差异', 11 | 'short_url' => '获取短链接', 12 | 'old_rev' => '旧版本 %s', 13 | 'new_rev' => '新版本 %s', 14 | 'revision_diff' => '修改版本差异', 15 | 'return_paste' => '回到便签', 16 | 'download_attachment' => '下载附件(%s)', 17 | 'unknown' => '未知', 18 | ); 19 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | $loader = require __DIR__ . "/../vendor/autoload.php"; 13 | $loader->addPsr4('Monolog\\', __DIR__.'/Monolog'); 14 | 15 | date_default_timezone_set('UTC'); 16 | -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/travis/upload-code-coverage-scrutinizer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # This file is part of the phpseclib project. 4 | # 5 | # (c) Andreas Fischer 6 | # 7 | # For the full copyright and license information, please view the LICENSE 8 | # file that was distributed with this source code. 9 | # 10 | set -e 11 | 12 | wget https://scrutinizer-ci.com/ocular.phar 13 | php ocular.phar code-coverage:upload --format=php-clover code_coverage/clover.xml 14 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 2.5.0 5 | ----- 6 | 7 | * added ExceptionHandler::setHandler() 8 | * added UndefinedMethodFatalErrorHandler 9 | * deprecated DummyException 10 | 11 | 2.4.0 12 | ----- 13 | 14 | * added a DebugClassLoader able to wrap any autoloader providing a findFile method 15 | * improved error messages for not found classes and functions 16 | 17 | 2.3.0 18 | ----- 19 | 20 | * added the component 21 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Database/Query/Processors/MySqlProcessor.php: -------------------------------------------------------------------------------- 1 | column_name; }, $results); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemServiceProvider.php: -------------------------------------------------------------------------------- 1 | app->bindShared('files', function() { return new Filesystem; }); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Pagination/views/simple.php: -------------------------------------------------------------------------------- 1 | getTranslator(); 5 | ?> 6 | 7 | getLastPage() > 1): ?> 8 |
    9 | getPrevious($trans->trans('pagination.previous')); 11 | 12 | echo $presenter->getNext($trans->trans('pagination.next')); 13 | ?> 14 |
15 | 16 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.md: -------------------------------------------------------------------------------- 1 | ### Arguments: 2 | 3 | **argument_name:** 4 | 5 | * Name: argument_name 6 | * Is required: yes 7 | * Is array: no 8 | * Description: 9 | * Default: `NULL` 10 | 11 | ### Options: 12 | 13 | **option_name:** 14 | 15 | * Name: `--option_name` 16 | * Shortcut: `-o` 17 | * Accept value: no 18 | * Is value required: no 19 | * Is multiple: no 20 | * Description: 21 | * Default: `false` 22 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/AnnotatedClasses/FooClass.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Routing\Tests\Fixtures\AnnotatedClasses; 13 | 14 | class FooClass 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/d11wtq/boris/lib/Boris/Inspector.php: -------------------------------------------------------------------------------- 1 | connection; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Queue/Connectors/SyncConnector.php: -------------------------------------------------------------------------------- 1 | getEngineResolver()->resolve('blade')->getCompiler(); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | tests/Monolog/ 7 | 8 | 9 | 10 | 11 | 12 | src/Monolog/ 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerAwareTrait.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Database/Query/Processors/SQLiteProcessor.php: -------------------------------------------------------------------------------- 1 | name; }, $results)); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/withdoctype.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | foo 8 | bar 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | 7 | namespace Whoops; 8 | use Whoops\Run; 9 | 10 | class TestCase extends \PHPUnit_Framework_TestCase 11 | { 12 | /** 13 | * @return Run 14 | */ 15 | protected function getRunInstance() 16 | { 17 | $run = new Run; 18 | $run->allowQuit(false); 19 | 20 | return $run; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/basic-auth.php: -------------------------------------------------------------------------------- 1 | array('someuser', 'password') 12 | ); 13 | $request = Requests::get('http://httpbin.org/basic-auth/someuser/password', array(), $options); 14 | 15 | // Check what we received 16 | var_dump($request); -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventListener.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Routing\Tests\Fixtures\AnnotatedClasses; 13 | 14 | abstract class AbstractClass 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Events/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | app['events'] = $this->app->share(function($app) 15 | { 16 | return new Dispatcher($app); 17 | }); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /vendor/lusitanian/OAuth/OAuth2/Service/Exception/MissingRefreshTokenException.php: -------------------------------------------------------------------------------- 1 | 5 | * Released under the MIT license. 6 | */ 7 | 8 | namespace OAuth\OAuth2\Service\Exception; 9 | 10 | use OAuth\Common\Exception\Exception; 11 | 12 | /** 13 | * Exception thrown when service is requested to refresh the access token but no refresh token can be found. 14 | */ 15 | class MissingRefreshTokenException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/predis/predis/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 5.3 4 | - 5.4 5 | - 5.5 6 | - 5.6 7 | - hhvm 8 | branches: 9 | except: 10 | - v0.5 11 | - v0.6 12 | - php5.2_backport 13 | - documentation 14 | services: redis-server 15 | before_script: 16 | - composer self-update 17 | - composer install --no-interaction --prefer-source --dev 18 | script: 19 | - vendor/bin/phpunit -c phpunit.xml.travisci 20 | matrix: 21 | allow_failures: 22 | - php: hhvm 23 | fast_finish: true 24 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signer.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | interface Swift_Signer 18 | { 19 | public function reset(); 20 | } 21 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Database/Migrations/stubs/blank.stub: -------------------------------------------------------------------------------- 1 | 6 | # 7 | # For the full copyright and license information, please view the LICENSE 8 | # file that was distributed with this source code. 9 | # 10 | set -e 11 | set -x 12 | 13 | USERNAME='phpseclib' 14 | PASSWORD='EePoov8po1aethu2kied1ne0' 15 | 16 | sudo useradd --create-home --base-dir /home "$USERNAME" 17 | echo "$USERNAME:$PASSWORD" | sudo chpasswd 18 | -------------------------------------------------------------------------------- /vendor/classpreloader/classpreloader/src/ClassPreloader/Parser/DirVisitor.php: -------------------------------------------------------------------------------- 1 | getDir()); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- 1 | register('properties.charset')->asValue(null); 12 | 13 | return Swift_MimePart::newInstance(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/Base64HeaderEncoderTest.php: -------------------------------------------------------------------------------- 1 | assertEquals('B', $encoder->getName()); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/classpreloader/classpreloader/src/ClassPreloader/Parser/FileVisitor.php: -------------------------------------------------------------------------------- 1 | getFilename()); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/unset.test: -------------------------------------------------------------------------------- 1 | Unset 2 | ----- 3 | "You have the latest version of Sticky Notes", 15 | "version_old" => "A newer version of Sticky Notes is available", 16 | "error" => "Error", 17 | 18 | ); 19 | -------------------------------------------------------------------------------- /vendor/googleanalytics/autoload.php: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Matching/ValidatorInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/409.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Tests\Fixtures; 13 | 14 | use Symfony\Component\Console\Application; 15 | 16 | class DescriptorApplication1 extends Application 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- 1 | # Sticky Notes Privacy Notice 2 | 3 | Sticky Notes sends out statistical information to an external server that 4 | includes **only** the following data: 5 | 6 | * Your site's URL 7 | * Sticky Notes version 8 | * Action type: install / update 9 | 10 | You can choose to not send your site's URL by setting the fullStats option 11 | to FALSE in `app/config/app.php`. 12 | 13 | Please note that your site's URL will never be published and is purely used 14 | for statistical purposes. It is stored securely and is encrypted with a 15 | strong hash. 16 | -------------------------------------------------------------------------------- /vendor/predis/predis/lib/Predis/ResponseObjectInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Predis; 13 | 14 | /** 15 | * Represents a complex reply object from Redis. 16 | * 17 | * @author Daniele Alessandri 18 | */ 19 | interface ResponseObjectInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/403.php: -------------------------------------------------------------------------------- 1 | =5.4.0", 12 | "illuminate/support": "4.2.*" 13 | }, 14 | "autoload": { 15 | "psr-0": { 16 | "{{vendor}}\\{{name}}": "src/" 17 | } 18 | }, 19 | "minimum-stability": "stable" 20 | } 21 | -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/400.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Predis; 13 | 14 | /** 15 | * Exception class that identifies client-side errors. 16 | * 17 | * @author Daniele Alessandri 18 | */ 19 | class ClientException extends PredisException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/predis/predis/lib/Predis/PredisException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Predis; 13 | 14 | /** 15 | * Base exception class for Predis-related errors. 16 | * 17 | * @author Daniele Alessandri 18 | */ 19 | abstract class PredisException extends \Exception 20 | { 21 | } 22 | --------------------------------------------------------------------------------