-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.24 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "skimpy/engine",
"description": "Skimpy CMS Engine",
"homepage": "https://github.com/skimpy/engine",
"license": "MIT",
"authors": [
{
"name": "Justin Tallant",
"email": "jtallant07@gmail.com",
"homepage": "http://justintallant.com"
},
{
"name": "Casey McLaughlin",
"homepage": "https://github.com/caseyamcl"
}
],
"require": {
"php": "^8.0.2",
"laravel/lumen-framework": "^9.1",
"symfony/yaml": "^6.3",
"michelf/php-markdown": "^2.0",
"willdurand/negotiation": "^3.1",
"doctrine/orm": "^2.16",
"symfony/filesystem": "^6.3",
"symfony/http-foundation": "^6.3",
"psr/container": "^1.0@dev",
"laravel-doctrine/orm": "^1.8",
"rcrowe/twigbridge": "^0.14",
"twig/twig": "3.8.0"
},
"require-dev": {
"phpspec/phpspec": "^8.0"
},
"autoload": {
"psr-4": {"Skimpy\\": "src/"}
},
"autoload-dev": {
"psr-4": {"spec\\": "spec/"}
},
"scripts": {
"test": "./vendor/bin/phpspec run",
"coverage": "./vendor/bin/phpspec run --config phpspec-html.yml"
},
"minimum-stability": "dev"
}