├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Robots.php └── tests └── League └── StackRobots └── RobotsTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/stack-robots/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/stack-robots/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/stack-robots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/stack-robots/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/stack-robots/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/stack-robots/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/stack-robots/HEAD/src/Robots.php -------------------------------------------------------------------------------- /tests/League/StackRobots/RobotsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/stack-robots/HEAD/tests/League/StackRobots/RobotsTest.php --------------------------------------------------------------------------------