├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── README.md ├── cli └── generate-passwd.php ├── composer.json ├── composer.lock ├── config.sample.php ├── index.php ├── phpunit.xml.dist ├── public-routes.php ├── public ├── .htaccess.dist ├── favicon.ico ├── index.php ├── js │ └── main.js ├── resources │ ├── favico_source.png │ └── favicon.psd └── style │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── main.css │ └── oldmain.css ├── routes.php ├── src └── OpCacheGUI │ ├── Auth │ ├── Ip.php │ ├── User.php │ └── Whitelist.php │ ├── Core │ └── Autoloader.php │ ├── Format │ ├── Byte.php │ ├── Prefix.php │ └── Trimmer.php │ ├── I18n │ ├── FileTranslator.php │ └── Translator.php │ ├── Network │ ├── Ip │ │ ├── Any.php │ │ ├── Cidr.php │ │ ├── Converter.php │ │ ├── Localhost.php │ │ ├── Range.php │ │ ├── Single.php │ │ └── Wildcard.php │ ├── Request.php │ ├── RequestData.php │ ├── Route.php │ ├── RouteBuilder.php │ ├── RouteFactory.php │ └── Router.php │ ├── OpCache │ ├── Configuration.php │ └── Status.php │ ├── Presentation │ ├── Html.php │ ├── Json.php │ ├── Renderer.php │ ├── Template.php │ ├── Url.php │ └── UrlRenderer.php │ ├── Security │ ├── CsrfToken.php │ ├── Generator.php │ └── InsufficientRandomData.php │ ├── Storage │ ├── InvalidKeyException.php │ ├── KeyValuePair.php │ ├── Regeneratable.php │ └── Session.php │ └── bootstrap.php ├── support ├── htpasswd.example └── nginx_vhost.example ├── template ├── cached.phtml ├── configuration.phtml ├── error.phtml ├── graphs.phtml ├── invalidate.pjson ├── login.phtml ├── page.phtml ├── reset.pjson └── status.phtml ├── test ├── Data │ ├── templates │ │ ├── example.phtml │ │ ├── example.pjson │ │ └── skeleton.phtml │ └── texts │ │ ├── en.php │ │ └── invalid.php ├── Mocks │ ├── Core │ │ └── FakeProject │ │ │ └── NS │ │ │ └── SomeClass.php │ ├── Presentation │ │ └── TemplateMock.php │ └── Security │ │ └── Generator │ │ ├── Fake.php │ │ ├── Invalid.php │ │ └── Unsupported.php ├── Unit │ ├── Auth │ │ ├── IpTest.php │ │ └── UserTest.php │ ├── Core │ │ └── AutoloaderTest.php │ ├── Format │ │ ├── ByteTest.php │ │ └── PrefixTest.php │ ├── I18n │ │ └── FileTranslatorTest.php │ ├── Network │ │ ├── Ip │ │ │ ├── AnyTest.php │ │ │ ├── CidrTest.php │ │ │ ├── LocalhostTest.php │ │ │ ├── RangeTest.php │ │ │ ├── SingleTest.php │ │ │ └── WildcardTest.php │ │ ├── RequestTest.php │ │ ├── RouteFactoryTest.php │ │ ├── RouteTest.php │ │ └── RouterTest.php │ ├── OpCache │ │ ├── ConfigurationTest.php │ │ └── StatusTest.php │ ├── Presentation │ │ ├── HtmlTest.php │ │ ├── JsonTest.php │ │ ├── TemplateTest.php │ │ └── UrlTest.php │ ├── Security │ │ └── CsrfTokenTest.php │ └── Storage │ │ └── SessionTest.php └── bootstrap.php └── texts ├── ca.php ├── da.php ├── de.php ├── en.php ├── es.php ├── fr.php ├── it.php ├── nl.php └── ru.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /public/.htaccess 3 | config.php 4 | vendor 5 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/README.md -------------------------------------------------------------------------------- /cli/generate-passwd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/cli/generate-passwd.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/composer.lock -------------------------------------------------------------------------------- /config.sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/config.sample.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/index.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public-routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/public-routes.php -------------------------------------------------------------------------------- /public/.htaccess.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/public/.htaccess.dist -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ]; 6 | -------------------------------------------------------------------------------- /test/Data/texts/invalid.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Mocks/Core/FakeProject/NS/SomeClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/test/Mocks/Core/FakeProject/NS/SomeClass.php -------------------------------------------------------------------------------- /test/Mocks/Presentation/TemplateMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/test/Mocks/Presentation/TemplateMock.php -------------------------------------------------------------------------------- /test/Mocks/Security/Generator/Fake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeeHaa/OpCacheGUI/HEAD/test/Mocks/Security/Generator/Fake.php -------------------------------------------------------------------------------- /test/Mocks/Security/Generator/Invalid.php: -------------------------------------------------------------------------------- 1 |