forked from ibexa/documentation-developer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
23 lines (23 loc) · 792 Bytes
/
composer.json
File metadata and controls
23 lines (23 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "ezsystems/developer-documentation",
"description": "This repository is the source for the developer documentation for eZ Platform, an open source CMS based on the Symfony Full Stack Framework in PHP.",
"type": "library",
"license": "GNU General Public License v2.0",
"autoload": {
"psr-4": {
"EzSystems\\DeveloperDocumentation\\Test\\": "tests/src/"
}
},
"require": {
"behat/behat": "^3.4.3",
"ezsystems/ezplatform-content-forms": "^1.0@dev",
"symfony/property-access": "^5.0"
},
"require-dev": {
"ibexa/code-style": "^1.0"
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run"
}
}