-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1.01 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
{
"name": "friendsofsymfony1/symfony1",
"description": "Fork of symfony 1.4 with dic, form enhancements, latest swiftmailer and better performance",
"type": "library",
"license": "MIT",
"require": {
"php" : "^7.4 || ^8.1",
"swiftmailer/swiftmailer": "^5.2 || ^6.0"
},
"require-dev": {
"psr/log": "*",
"symfony/phpunit-bridge": "^7.0"
},
"autoload": {
"files": ["autoload.php"]
},
"suggest": {
"friendsofsymfony1/doctrine1": "Doctrine plugin",
"propel/sf-propel-o-r-m-plugin": "Propel plugin",
"psr/log": "Psr logger"
},
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
}
},
"replace": {
"lexpress/symfony1": "^1.5"
},
"scripts": {
"test": [
"@test:lime",
"@test:phpunit"
],
"test:lime": "php data/bin/symfony symfony:test --trace",
"test:phpunit": "./bin/phpunit"
},
"bin": ["data/bin/symfony"]
}