-
-
Notifications
You must be signed in to change notification settings - Fork 622
Expand file tree
/
Copy pathcomposer.json
More file actions
124 lines (124 loc) · 4.04 KB
/
composer.json
File metadata and controls
124 lines (124 loc) · 4.04 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "statamic/cms",
"description": "The Statamic CMS Core Package",
"keywords": [
"statamic",
"cms",
"flat file",
"laravel"
],
"license": "proprietary",
"require": {
"ext-json": "*",
"ajthinking/archetype": "^1.0.3 || ^2.0",
"bacon/bacon-qr-code": "^3.0",
"composer/semver": "^3.4",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"inertiajs/inertia-laravel": "^2.0",
"james-heinrich/getid3": "^1.9.21",
"laravel/framework": "^12.40.0 || ^13.0",
"laravel/prompts": "^0.3.0",
"league/commonmark": "^2.2",
"league/csv": "^9.0",
"league/glide": "^3.0",
"maennchen/zipstream-php": "^3.1",
"michelf/php-smartypants": "^1.8.1",
"nesbot/carbon": "^3.0",
"pixelfear/composer-dist-plugin": "^0.1.4",
"pragmarx/google2fa": "^8.0 || ^9.0",
"rebing/graphql-laravel": "^9.15",
"rhukster/dom-sanitizer": "^1.0.10",
"spatie/blink": "^1.3",
"spatie/error-solutions": "^1.0 || ^2.0",
"statamic/stringy": "^3.1.2",
"stillat/blade-parser": "^2.1",
"symfony/http-foundation": "^7.3.7 || ^8.0",
"symfony/lock": "^7.0.3 || ^8.0",
"symfony/var-exporter": "^7.0.3 || ^8.0",
"symfony/yaml": "^7.0.3 || ^8.0",
"ueberdosis/tiptap-php": "^2.0",
"voku/portable-ascii": "^2.0.2",
"web-auth/webauthn-lib": "~5.2.0",
"wilderborn/partyline": "^1.0"
},
"require-dev": {
"algolia/algoliasearch-client-php": "^4.32",
"doctrine/dbal": "^3.6",
"fakerphp/faker": "~1.10",
"google/cloud-translate": "^1.6",
"laravel/pint": "1.16.0",
"mockery/mockery": "^1.6.10",
"orchestra/testbench": "^10.8 || ^11.0",
"phpunit/phpunit": "^11.5.3",
"spatie/laravel-ray": "^1.43.6"
},
"conflict": {
"algolia/algoliasearch-client-php": "<4.32"
},
"suggest": {
"algolia/algoliasearch-client-php": "Required to use Algolia search driver (^4.32)"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pixelfear/composer-dist-plugin": true
}
},
"extra": {
"download-dist": [
{
"url": "https://github.com/statamic/cms/releases/download/{$version}/dist.tar.gz",
"path": "resources/dist"
},
{
"url": "https://github.com/statamic/cms/releases/download/{$version}/dist-dev.tar.gz",
"path": "resources/dist-dev"
},
{
"url": "https://github.com/statamic/cms/releases/download/{$version}/dist-frontend.tar.gz",
"path": "resources/dist-frontend"
},
{
"url": "https://github.com/statamic/cms/releases/download/{$version}/dist-package.tar.gz",
"path": "resources/dist-package"
}
],
"laravel": {
"providers": [
"Statamic\\Providers\\StatamicServiceProvider"
],
"aliases": {
"Statamic": "Statamic\\Statamic"
}
}
},
"autoload": {
"psr-4": {
"Statamic\\": "src/"
},
"files": [
"src/helpers.php",
"src/namespaced_helpers.php",
"src/View/Blade/helpers.php"
],
"exclude-from-classmap": [
"tests/Auth/Eloquent/__migrations__/**",
"tests/StarterKits/__fixtures__/**",
"tests/Translator/__fixtures__/**",
"tests/Console/Kernel.php",
"src/Console/Please/app-kernel.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Foo\\Bar\\": "tests/Fixtures/Addon",
"App\\": "tests/Fixtures/App/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}