forked from ezsystems/ezpublish-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve EZP-23726: Speed up build / tests by not include optional ext…
…ension in main composer.json A composer.json.dist file is created for those that want full legacy community distribution like before. But for main distribution this is slimming down the size and the time it takes for tests to run as these packages are anyway not covered by tests.
- Loading branch information
Showing
2 changed files
with
70 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"name": "ezsystems/ezpublish-legacy", | ||
"description": "eZ Publish LegacyStack (4.x)", | ||
"homepage": "http://share.ez.no", | ||
"license": "GPL-2.0", | ||
"type": "ezpublish-legacy", | ||
"suggest": { | ||
"php-64bit": "For support of more than 30 languages, a 64bit php installation on all involved prod/dev machines is required", | ||
"ext-curl": "Curl provides better support for interacting with other servers, like downloading packages over SSL", | ||
"ext-gd": "Unless you have ImageMagic installed GD is required for eZ Publish to be able to manipulate images", | ||
"ext-mysqli": "Mysqli is the default database handler used by eZ Publish", | ||
"ext-pcntl": "If you plan to take advantage of eZ Publish Async publishing feature, then pcntl extension is required" | ||
}, | ||
"require": { | ||
"php": ">=5.3.3", | ||
"ext-dom": "*", | ||
"ext-libxml": "*", | ||
"ext-mbstring": "*", | ||
"ext-pcre": "*", | ||
"ext-json": "*", | ||
"ext-iconv": "*", | ||
"ext-reflection": "*", | ||
"ext-session": "*", | ||
"ext-spl": "*", | ||
"ext-simplexml": "*", | ||
"ezsystems/ezpublish-legacy-installer": "*", | ||
"ezsystems/ezautosave-ls": "~5.3", | ||
"ezsystems/ezdemo-ls-extension": "~5.3", | ||
"ezsystems/ezflow-ls-extension": "~5.3", | ||
"ezsystems/ezgmaplocation-ls-extension": "~5.3", | ||
"ezsystems/ezie-ls": "~5.3", | ||
"ezsystems/ezmbpaex-ls": "~5.3", | ||
"ezsystems/ezmultiupload-ls": "~5.3", | ||
"ezsystems/ezodf-ls": "~5.3", | ||
"ezsystems/ezprestapiprovider-ls": "~5.3", | ||
"ezsystems/ezscriptmonitor-ls": "~5.3", | ||
"ezsystems/ezsi-ls": "~5.3", | ||
"ezsystems/ezstarrating-ls-extension": "~5.3", | ||
"ezsystems/ezwt-ls-extension": "~5.3", | ||
"ezsystems/ezfind-ls": "~5.3|>=2014.05", | ||
"ezsystems/eztags-ls": "~1.3", | ||
"zetacomponents/archive": "~1.5", | ||
"zetacomponents/authentication": "~1.4", | ||
"zetacomponents/authentication-database-tiein": "~1.2", | ||
"zetacomponents/cache": "~1.6", | ||
"zetacomponents/configuration": "~1.4", | ||
"zetacomponents/console-tools": "~1.7", | ||
"zetacomponents/database": "~1.5", | ||
"zetacomponents/debug": "~1.3", | ||
"zetacomponents/event-log": "~1.5", | ||
"zetacomponents/feed": "~1.4", | ||
"zetacomponents/image-conversion": "~1.4", | ||
"zetacomponents/mail": "~1.8", | ||
"zetacomponents/mvc-tools": "~1.2", | ||
"zetacomponents/mvc-authentication-tiein": "~1.1", | ||
"zetacomponents/persistent-object": "~1.8", | ||
"zetacomponents/signal-slot": "~1.2", | ||
"zetacomponents/system-information": "~1.1", | ||
"zetacomponents/webdav": "~1.1" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "3.7.*", | ||
"zetacomponents/php-generator": "~1.1" | ||
} | ||
} |