3
3
4
4
<p align =" center " >
5
5
<a href =" https://github.com/apphp/php-mvc-framework " ><img src =" https://github.com/apphp/php-mvc-framework/workflows/build/badge.svg " alt =" Build Status " ></a >
6
- <a href =" http://apphpframework.com/license/ " ><img src =" http://apphpframework.com/license/license.svg " alt =" License " ></a >
6
+ <a href =" https://opensource.org/licenses/lgpl-3.0.html " ><img src =" http://apphpframework.com/images/badges/license.svg " alt =" License LGPL " ></a >
7
+ <a href =" http://apphpframework.com/ " ><img src =" http://apphpframework.com/images/badges/stable.svg " alt =" Stable Version " ></a >
7
8
</p >
8
9
9
10
## About ApPHP Framework
@@ -16,17 +17,26 @@ It implements the the Model-View-Controller (MVC) design pattern and principles,
16
17
and data layers. It provides an architecture, components and tools for developers to build a complex web applications
17
18
faster and safer.
18
19
19
- ## Installing ApPHP Framework via Composer
20
+ ## Installing ApPHP Framework
21
+
22
+ #### via Git
23
+
24
+ ``` bash
25
+ git clone https://github.com/apphp/php-mvc-framework.git
26
+ ```
27
+
28
+ #### via Composer
29
+
30
+ You can install ApPHP into your project using [ Composer] ( https://getcomposer.org ) .
20
31
21
- You can install ApPHP into your project using [ Composer] ( https://getcomposer.org ) .
22
32
If you're starting a new project, we recommend using the [ Directy CMF] ( https://github.com/apphp/directy-cmf ) as
23
33
a starting point. For installing new version in existing applications you can run the following:
24
34
25
35
``` bash
26
- composer require phpunit/phpunit --dev
36
+ composer require apphp/php-mvc-framework
27
37
```
28
38
29
- ## Manual installation of ApPHP Framework
39
+ #### Manual installation
30
40
31
41
Please make sure the release file is unpacked under a web-accessible directory.
32
42
You will see the following files and directories:
@@ -53,8 +63,7 @@ tests for ApPHP Framework by doing the following:
53
63
1 . Install composer on your server.
54
64
2 . After Composer is installed, install PHPUnit by
55
65
``` bash
56
- composer remove phpunit/phpunit --dev
57
- composer update
66
+ composer require phpunit/phpunit --dev
58
67
```
59
68
2 . Make sure you added following to <strong >composer.json</strong > file:
60
69
``` bash
@@ -75,6 +84,10 @@ The minimum requirement by ApPHP is that your Web server supports PHP 5.4.0 or
75
84
above. ApPHP has been tested with Apache HTTP server on Windows and Linux
76
85
operating systems.
77
86
87
+ ## License
88
+
89
+ The Laravel framework is open-sourced software licensed under the [ LGPL3 license] ( https://opensource.org/licenses/lgpl-3.0.html ) .
90
+
78
91
## What's next
79
92
80
93
Please visit the project website for tutorials, class reference and join discussions with other ApPHP users.
0 commit comments