-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 1.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "multidimensional/cakephpify",
"description": "A CakePHP Plugin for Shopify API Authentication.",
"version": "0.0.1-alpha",
"type": "cakephp-plugin",
"keywords": ["cakephp", "cakephp3", "shopify"],
"homepage": "https://github.com/multidimension-al/cakephpify",
"license": "MIT",
"authors": [{
"name": "multidimension.al",
"homepage": "https://multidimension.al",
"role": "Developer"
}],
"require": {
"php": ">=5.6",
"cakephp/cakephp": ">=3.3.2 <4.0.0",
"cakephp/migrations": ">=1.2.0-stable"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0",
"cakephp/cakephp-codesniffer": "*"
},
"autoload": {
"psr-4": {
"Multidimensional\\Cakephpify\\": "src",
"Multidimensional\\Cakephpify\\Test\\": "tests",
"Multidimensional\\Cakephpify\\Test\\Fixture\\": "tests\\Fixture",
"Multidimensional\\Cakephpify\\Migrations\\": "config\\Migrations"
}
}
}