Skip to content

Commit

Permalink
Use composer 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Oct 5, 2020
1 parent ea8027d commit 7f64fce
Show file tree
Hide file tree
Showing 3 changed files with 1,320 additions and 729 deletions.
40 changes: 31 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"type": "project",
"homepage": "https://www.ec-cube.net/",
"license": [
"GPL-2.0-only",
"proprietary"
"GPL-2.0-only",
"proprietary"
],
"support": {
"issues": "https://github.com/EC-CUBE/ec-cube/issues"
Expand All @@ -16,7 +16,7 @@
"ext-intl": "*",
"ext-mbstring": "*",
"composer/ca-bundle": "^1.1",
"composer/composer": "^1.6",
"composer/composer": "dev-master",
"doctrine/annotations": "^1.6",
"doctrine/cache": "^1.7",
"doctrine/collections": "^1.5",
Expand All @@ -32,9 +32,9 @@
"doctrine/lexer": "^1.0",
"doctrine/migrations": "^1.8",
"doctrine/orm": "^2.6",
"ec-cube/plugin-installer": "~0.0.6",
"ec-cube/bundle": "^1.0",
"ec-cube/plugin-installer": "^2.0",
"egulias/email-validator": "^2.1",
"friendsofphp/php-cs-fixer": "^2.10",
"guzzlehttp/guzzle": "^6.3",
"knplabs/knp-paginator-bundle": "^2.7",
"mobiledetect/mobiledetectlib": "^2.8",
Expand Down Expand Up @@ -129,11 +129,16 @@
"Eccube\\": "src/Eccube",
"Plugin\\": "app/Plugin"
},
"exclude-from-classmap": ["**/Test/**", "**/Tests/**", "**/test/**", "**/tests/**"]
"exclude-from-classmap": [
"**/Test/**",
"**/Tests/**",
"**/test/**",
"**/tests/**"
]
},
"autoload-dev" : {
"autoload-dev": {
"psr-4": {
"Eccube\\Tests\\" : "tests/Eccube/Tests"
"Eccube\\Tests\\": "tests/Eccube/Tests"
}
},
"scripts": {
Expand Down Expand Up @@ -186,6 +191,23 @@
"*": "dist"
},
"optimize-autoloader": true,
"sort-packages": true
"sort-packages": true,
"secure-http": false
},
"repositories": {
"0": {
"type": "path",
"url": "../eccube-plugin-installer",
"package": "ec-cube/plugin-installer"
},
"eccube": {
"type": "composer",
"url": "http://127.0.0.1:9999",
"options": {
"http": {
"header": ["X-ECCUBE-KEY: aaa"]
}
}
}
}
}
Loading

0 comments on commit 7f64fce

Please sign in to comment.