summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-06-27 08:42:47 +0200
committerRemi Collet <remi@remirepo.net>2017-06-27 08:42:47 +0200
commit59287ce7c13922b93c124c0f27d5d115e3226fa8 (patch)
tree28878c2294eeff7ac6a5deb41a745788bfc9a218 /composer.json
New package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..87a6119
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,31 @@
+{
+ "name": "myclabs/php-enum",
+ "type": "library",
+ "description": "PHP Enum implementation",
+ "keywords": ["enum"],
+ "homepage": "http://github.com/myclabs/php-enum",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "PHP Enum contributors",
+ "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
+ }
+ ],
+ "autoload": {
+ "psr-4": {
+ "MyCLabs\\Enum\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "MyCLabs\\Tests\\Enum\\": "tests/"
+ }
+ },
+ "require": {
+ "php": ">=5.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.*",
+ "squizlabs/php_codesniffer": "1.*"
+ }
+}