-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·42 lines (42 loc) · 924 Bytes
/
composer.json
File metadata and controls
executable file
·42 lines (42 loc) · 924 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "friendsofakeneo/cron-bundle",
"type": "symfony-bundle",
"description": "CRON manager for Akeneo PIM",
"keywords": [
"cron",
"Symfony2",
"Akeneo",
"PIM"
],
"homepage": "https://github.com/FriendsOfAkeneo/FOACronBundle",
"license": "MIT",
"authors": [
{
"name": "Novikov Viktor"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/akeneo/pim-community-dev.git"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"akeneo/pim-community-dev": "~1.6",
"friendsofphp/php-cs-fixer": "@stable",
"phpunit/phpunit": "@stable"
},
"autoload": {
"psr-4": {
"FOA\\CronBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.0-dev"
}
}
}