This repository has been archived by the owner on Aug 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
executable file
·83 lines (70 loc) · 3.33 KB
/
about.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Spiral - About</title>
<link rel="stylesheet" href="styles/about.css" type="text/css" media="screen" charset="utf-8" />
<link rel="icon" href="http://www.spiral-project.org/images/favicon.png" type="image/png" />
</head>
<body>
<div id="layout">
<div id="logo"><span>Spiral</span></div>
<div id="main_menu">
<ul>
<li class="home">
<a href="http://www.spiral-project.org"><span>Home</span>
<span class="description"></span></a></li>
<li class="about">
<a class="selected" href="http://www.spiral-project.org/about.html"><span>About</span>
<span class="description"></span></a></li>
<li class="downloads">
<a href="http://www.spiral-project.org/downloads.html"><span>Downloads</span>
<span class="description"></span></a></li>
<li class="documentation">
<a href="http://doc.spiral-project.org"><span>Documentation</span>
<span class="description"></span></a></li>
<li class="planet">
<a href="http://www.spiral-project.org/planet.html"><span>Planet</span>
<span class="description"></span></a></li>
<li class="community">
<a href="http://www.spiral-project.org/community.html"><span>Community</span>
<span class="description"></span></a></li>
</ul>
<div class="clear"></div>
</div>
<div id="header">
<div class="slide">
<h1><span>About Spiral</span></h1>
<p>Spiral is a new framework for PHP developpers. The aim is to bring nice object-oriented stuff to the PHP world
based on the new features of PHP 5.3. As Spring for Java, Spiral does not aim to be a complete solution, but a way to
mix the great diversity of existing PHP libraries in one architecture.</p>
<a href="downloads.html" class="downloads_link">Download Spiral</a>
<div class="clear"></div>
</div>
</div>
<div id="body">
<div id="content">
<div class="slide reuse_your_code">
<h2><span>Reuse your code</span></h2>
<img src="images/illustrations/documentation/user_manual.png" />
<p>Thanks to the dependency injection container, Spiral is able to incorporate object-oriented coded in many way.
Moreover, Spiral is very incitative on good reusable code, so coding over Spiral will let you reuse your code in the future.
And if you can reuse your existing code, you also can reuse code from other frameworks so that you can bring all features
that exist in other frameworks or libraries in Spiral. Bycicly, Spiral provides some facilities to incorporate other
well known frameworks.</p>
</div>
<div class="slide focus_on_the_model">
<h2><span>Focus on the model</span></h2>
<img src="images/illustrations/documentation/user_manual.png" />
<p>Spiral is designed to make your work easy. It is especially easy to bind the whole framework over your model. Then, you
only have to design the specific model of your domain and technical stuff are abstracted so that you don't matter about it.
Designing an application becomes really simple, you only have to think about the domain model.</p>
</div>
</div>
</div>
<div id="footer">
Spiral is free software under GNU/GPL license. Thanks for your contributions.
</div>
</div>
</body>
</html>