diff options
| -rw-r--r-- | .gitignore | 7 | ||||
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | composer.json | 38 | ||||
| -rw-r--r-- | php-dflydev-dot-access-data.spec | 1 | 
4 files changed, 50 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1ab5c4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91b0fd5 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../common/Makefile + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b200c9f --- /dev/null +++ b/composer.json @@ -0,0 +1,38 @@ +{ +    "name": "dflydev/dot-access-data", +    "type": "library", +    "description": "Given a deep data structure, access data by dot notation.", +    "homepage": "https://github.com/dflydev/dflydev-dot-access-data", +    "keywords": ["dot", "access", "data", "notation"], +    "license": "MIT", +    "authors": [ +        { +            "name": "Dragonfly Development Inc.", +            "email": "info@dflydev.com", +            "homepage": "http://dflydev.com" +        }, +        { +            "name": "Beau Simensen", +            "email": "beau@dflydev.com", +            "homepage": "http://beausimensen.com" +        }, +        { +            "name": "Carlos Frutos", +            "email": "carlos@kiwing.it", +            "homepage": "https://github.com/cfrutos" +        } +    ], +    "require": { +        "php": ">=5.3.2" +    }, +    "autoload": { +        "psr-0": { +            "Dflydev\\DotAccessData": "src" +        } +    }, +    "extra": { +        "branch-alias": { +            "dev-master": "1.0-dev" +        } +    } +} diff --git a/php-dflydev-dot-access-data.spec b/php-dflydev-dot-access-data.spec index 05ce001..2f68a42 100644 --- a/php-dflydev-dot-access-data.spec +++ b/php-dflydev-dot-access-data.spec @@ -1,3 +1,4 @@ +# remirepo spec file for php-dflydev-dot-access-data  #  # Fedora spec file for php-dflydev-dot-access-data  #  | 
