forked from statamic/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "statamic/cms",
"description": "The Statamic CMS Core Package",
"keywords": [
"statamic",
"cms",
"flat file",
"laravel"
],
"license": "proprietary",
"require": {
"composer/composer": "^1.7",
"facade/ignition-contracts": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"laravel/framework": "5.6.* || 5.7.* || 5.8.* || ^6.0",
"laravel/helpers": "^1.1",
"league/commonmark": "^1.3",
"league/csv": "^9.0",
"league/glide": "^1.1",
"pixelfear/composer-dist-plugin": "^0.1.0",
"scrumpy/html-to-prosemirror": "^0.6.0",
"scrumpy/prosemirror-to-html": "^0.8.0",
"spatie/blink": "^1.1.2",
"statamic/stringy": "^3.1",
"symfony/var-exporter": "^4.3",
"symfony/yaml": "^4.1@dev",
"twistor/flysystem-guzzle": "^6.0",
"webuni/commonmark-attributes-extension": "^1.0",
"wilderborn/partyline": "^1.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"google/cloud-translate": "^1.6",
"mockery/mockery": "~1.0",
"nunomaduro/collision": "^3.0",
"orchestra/testbench": "3.8 || 4.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"download-dist": {
"url": "https://github.com/statamic/cms/releases/download/{$version}/dist.tar.gz",
"path": "resources/dist"
},
"laravel": {
"providers": [
"Statamic\\Providers\\StatamicServiceProvider"
],
"aliases": {
"Statamic": "Statamic\\Statamic"
}
}
},
"autoload": {
"psr-4": {
"Statamic\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Foo\\Bar\\": "tests/fixtures/Addon"
}
}
}