-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·40 lines (40 loc) · 1.06 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
{
"name": "usbac/aurora",
"description": "Made for Developers, Designed for Users",
"keywords": [
"cms", "blog", "small", "web", "apps", "fast"
],
"type": "project",
"license": "MIT",
"version": "0.8.0",
"authors": [
{
"name": "Usbac",
"homepage": "https://github.com/Usbac"
}
],
"scripts": {
"post-autoload-dump": [
"cp -a vendor/tinymce/tinymce/. public/assets/js/tinymce",
"mkdir -p public/content"
]
},
"require": {
"php": ">=8.0.0",
"tinymce/tinymce": "^6.7",
"symfony/console": "^5.4"
},
"autoload": {
"psr-4": {
"Aurora\\App\\": "app/controllers",
"Aurora\\App\\Modules\\": "app/controllers/modules",
"Aurora\\Bin\\": "bin",
"Aurora\\Core\\": "core",
"Aurora\\Tests\\Modules\\": "tests/unit/controllers/modules"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"dms/phpunit-arraysubset-asserts": "^0.5.0"
}
}